From 2c0b4e050e67db49299d227ce62ee27f7e4d4cae Mon Sep 17 00:00:00 2001 From: joaoc Date: Fri, 2 Feb 2024 15:45:40 -0300 Subject: [PATCH 01/64] new api --- .env.example | 4 ++ app/api.py | 79 ++++++++++++++++++++++++++++++++++ "app/\360\237\223\243 Home.py" | 24 +++++++++++ pyproject.toml | 2 + 4 files changed, 109 insertions(+) create mode 100644 .env.example create mode 100644 app/api.py diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..02743cb --- /dev/null +++ b/.env.example @@ -0,0 +1,4 @@ +VISION_API_USERNAME= +VISION_API_PASSWORD= +VISION_API_CLIENT_ID= +VISION_API_CLIENT_SECRET= \ No newline at end of file diff --git a/app/api.py b/app/api.py new file mode 100644 index 0000000..4738476 --- /dev/null +++ b/app/api.py @@ -0,0 +1,79 @@ +import time +import requests +from concurrent.futures import ThreadPoolExecutor, as_completed + + +class APIVisionAI: + def __init__(self, username, password, client_id, client_secret): + self.BASE_URL = "https://vision-ai-api-staging-ahcsotxvgq-uc.a.run.app" + self.username = username + self.password = password + self.client_id = client_id + self.client_secret = client_secret + self.headers, self.token_renewal_time = self._get_headers() + + def _get_headers(self): + access_token_response = requests.post( + "https://authentik.dados.rio/application/o/token/", + data={ + "grant_type": "password", + "username": self.username, + "password": self.password, + "client_id": self.client_id, + "client_secret": self.client_secret, + "scope": "profile", + }, + timeout=10, # Add a timeout argument to avoid hanging indefinitely + ).json() + token = access_token_response["access_token"] + return {"Authorization": f"Bearer {token}"}, time.time() + + def _refresh_token_if_needed(self): + if time.time() - self.token_renewal_time >= 600: + self.headers, self.token_renewal_time = self._get_headers() + + def _get(self, path): + self._refresh_token_if_needed() + try: + response = requests.get( + f"{self.BASE_URL}{path}", headers=self.headers, timeout=10 + ) + return response.json() + except requests.exceptions.ReadTimeout as e: + return {"items": []} + + def _get_all_pages(self, path): + # Initial request to determine the number of pages + initial_response = self._get(f"{path}?page=1&size=1") + if not initial_response: + return [] + + # Assuming the initial response contains the total number of items or pages + total_pages = self._calculate_total_pages(initial_response) + + # Function to get a single page + def get_page(page): + # time each execution + start = time.time() + print(f"Getting page {page} of {total_pages}") + response = self._get(f"{path}?page={page}&size=100") + print(f"Page {page} took {time.time() - start} seconds") + return response + + data = [] + with ThreadPoolExecutor(max_workers=total_pages) as executor: + # Create a future for each page + futures = [ + executor.submit(get_page, page) for page in range(1, total_pages + 1) + ] + + for future in as_completed(futures): + response = future.result() + if response: + data.extend(response["items"]) + + return data + + def _calculate_total_pages(self, response): + print(response) + return round(response["total"] / 100) + 1 diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index b3ad9cf..2ca9c08 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -2,12 +2,23 @@ from typing import Union import folium import pandas as pd +import os + import requests import streamlit as st from streamlit_folium import st_folium from st_aggrid import AgGrid, GridOptionsBuilder, ColumnsAutoSizeMode +from api import APIVisionAI + +vision_api = APIVisionAI( + username=os.environ.get("VISION_API_USERNAME"), + password=os.environ.get("VISION_API_PASSWORD"), + client_id=os.environ.get("VISION_API_CLIENT_ID"), + client_secret=os.environ.get("VISION_API_CLIENT_SECRET"), +) + st.set_page_config(layout="wide") st.image("./data/logo/logo.png", width=300) @@ -186,6 +197,19 @@ def get_agrid_table(data_with_image): ) +@st.cache_data(ttl=60, persist=True) +def get_cameras(): + return vision_api._get_all_pages("/cameras") + + +st.json(get_cameras()[0]) +cameras = pd.DataFrame(get_cameras()) +# get identifications with not empty list +cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] + +st.text(cameras.columns) +st.dataframe(cameras.head()) + st.markdown( f""" diff --git a/pyproject.toml b/pyproject.toml index d7c27f7..5245764 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,3 +19,5 @@ streamlit-aggrid = "^0.3.4.post3" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" + + From 2861cf84602107ce1bc4b36138955d90237b9bc7 Mon Sep 17 00:00:00 2001 From: joaoc Date: Fri, 2 Feb 2024 15:53:02 -0300 Subject: [PATCH 02/64] fix auth --- app/api.py | 6 +----- "app/\360\237\223\243 Home.py" | 15 +++++++++------ 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/app/api.py b/app/api.py index 4738476..43cee08 100644 --- a/app/api.py +++ b/app/api.py @@ -14,14 +14,10 @@ def __init__(self, username, password, client_id, client_secret): def _get_headers(self): access_token_response = requests.post( - "https://authentik.dados.rio/application/o/token/", + "https://vision-ai-api-staging-ahcsotxvgq-uc.a.run.app/auth/token", data={ - "grant_type": "password", "username": self.username, "password": self.password, - "client_id": self.client_id, - "client_secret": self.client_secret, - "scope": "profile", }, timeout=10, # Add a timeout argument to avoid hanging indefinitely ).json() diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 2ca9c08..565b1a8 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -197,18 +197,21 @@ def get_agrid_table(data_with_image): ) -@st.cache_data(ttl=60, persist=True) +# @st.cache_data(ttl=60, persist=True) def get_cameras(): - return vision_api._get_all_pages("/cameras") + response = vision_api._get_all_pages("/cameras") + return response + # -st.json(get_cameras()[0]) + +st.text(get_cameras()) cameras = pd.DataFrame(get_cameras()) # get identifications with not empty list -cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] +# cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] -st.text(cameras.columns) -st.dataframe(cameras.head()) +# st.text(cameras.columns) +# st.dataframe(cameras.head()) st.markdown( f""" From f83a89e2eee4afd3679cbd96430f58a60e18d65b Mon Sep 17 00:00:00 2001 From: joaoc Date: Fri, 2 Feb 2024 15:54:35 -0300 Subject: [PATCH 03/64] add tutorial --- .env.example | 4 +--- README.md | 9 +++++++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 02743cb..c9f51f6 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,2 @@ VISION_API_USERNAME= -VISION_API_PASSWORD= -VISION_API_CLIENT_ID= -VISION_API_CLIENT_SECRET= \ No newline at end of file +VISION_API_PASSWORD= \ No newline at end of file diff --git a/README.md b/README.md index 5803abf..044020c 100644 --- a/README.md +++ b/README.md @@ -1 +1,10 @@ # Detecção de alagamentos + +## Develop + + +`poetry install --no-root` + +Add .env vars missing from .env.example. + +`export POETRY_DOTENV_LOCATION=.env && streamlit run app/📣\ Home.py` \ No newline at end of file From c335defdee9ab8885b6eb0f719ae8ac8a61aba3f Mon Sep 17 00:00:00 2001 From: joaoc Date: Fri, 2 Feb 2024 17:03:23 -0300 Subject: [PATCH 04/64] add data --- app/api.py | 4 +- ...3\267 Pontos de Alagamento | Vision AI.py" | 0 ...\252 Experimente o Modelo | Vision AI.py" | 0 "app/\360\237\223\243 Home.py" | 284 ++++++++++-------- 4 files changed, 161 insertions(+), 127 deletions(-) rename "app/pages/\360\237\223\267 Pontos de Alagamento | Vision AI.py" => "app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" (100%) rename "app/pages/\360\237\247\252 Experimente o Modelo | Vision AI.py" => "app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" (100%) diff --git a/app/api.py b/app/api.py index 43cee08..e8e3b40 100644 --- a/app/api.py +++ b/app/api.py @@ -14,12 +14,12 @@ def __init__(self, username, password, client_id, client_secret): def _get_headers(self): access_token_response = requests.post( - "https://vision-ai-api-staging-ahcsotxvgq-uc.a.run.app/auth/token", + f"{self.BASE_URL}/auth/token", data={ "username": self.username, "password": self.password, }, - timeout=10, # Add a timeout argument to avoid hanging indefinitely + timeout=20, # Add a timeout argument to avoid hanging indefinitely ).json() token = access_token_response["access_token"] return {"Authorization": f"Bearer {token}"}, time.time() diff --git "a/app/pages/\360\237\223\267 Pontos de Alagamento | Vision AI.py" "b/app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" similarity index 100% rename from "app/pages/\360\237\223\267 Pontos de Alagamento | Vision AI.py" rename to "app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" diff --git "a/app/pages/\360\237\247\252 Experimente o Modelo | Vision AI.py" "b/app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" similarity index 100% rename from "app/pages/\360\237\247\252 Experimente o Modelo | Vision AI.py" rename to "app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 565b1a8..3d6c7eb 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -21,7 +21,7 @@ st.set_page_config(layout="wide") -st.image("./data/logo/logo.png", width=300) +# st.image("./data/logo/logo.png", width=300) def get_icon_color(label: Union[bool, None]): @@ -72,50 +72,33 @@ def label_emoji(label): return "⚫" -@st.cache_data(ttl=60) -def load_alagamento_detectado_ia(): - raw_api_data = requests.get( - "https://api.dados.rio/v2/clima_alagamento/alagamento_detectado_ia/" - ).json() - last_update = pd.to_datetime( - requests.get( - "https://api.dados.rio/v2/clima_alagamento/ultima_atualizacao_alagamento_detectado_ia/" - ).text.strip('"') - ) +@st.cache_data(ttl=600, persist=True) +def get_cameras(): + return vision_api._get_all_pages("/cameras") - dataframe = pd.json_normalize( - raw_api_data, - record_path="ai_classification", - meta=[ - "datetime", - "id_camera", - "url_camera", - "latitude", - "longitude", - "image_url", - ], - ) - dataframe = dataframe.sort_values(by="label", ascending=True).reset_index(drop=True) +def treat_data(response): + # To dataframe + cameras = pd.DataFrame(response).set_index("id") - ## get more camera information - url = "https://docs.google.com/spreadsheets/d/122uOaPr8YdW5PTzrxSPF-FD0tgco596HqgB7WK7cHFw/edit#gid=914166579" - request_url = url.replace("edit#gid=", "export?format=csv&gid=") - response = requests.get(request_url) - cameras = pd.read_csv(StringIO(response.content.decode("utf-8")), dtype=str) - camera_cols = [ - "id_camera", - "bairro", - "subprefeitura", - "id_bolsao", - "bacia", - "sub_bacia", - ] + cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] - cameras = cameras[camera_cols] - dataframe = pd.merge(dataframe, cameras, how="left", on="id_camera") - - return dataframe, last_update + cameras_attr = cameras[ + [ + "name", + "rtsp_url", + "update_interval", + "latitude", + "longitude", + "snapshot_url", + "snapshot_timestamp", + ] + ] + exploded_df = cameras.explode("identifications") + cameras_identifications = pd.DataFrame( + exploded_df["identifications"].tolist(), index=exploded_df.index + ) + return cameras_attr, cameras_identifications def get_table_cameras_with_images(dataframe): @@ -151,17 +134,17 @@ def get_agrid_table(data_with_image): gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # configure individual columns - gb.configure_column("id_camera", header_name="ID Camera", pinned="left") - gb.configure_column("emoji", header_name="", pinned="left") + gb.configure_column("id", header_name="ID Camera", pinned="left") + # gb.configure_column("emoji", header_name="", pinned="left") gb.configure_column("object", header_name="Identificador") - gb.configure_column("image_url", header_name="URL Imagem") - gb.configure_column("bairro", header_name="Bairro") - gb.configure_column("subprefeitura", header_name="Subprefeitura") - gb.configure_column("id_bolsao", header_name="ID Bolsão") - gb.configure_column("bacia", header_name="Bacia") - gb.configure_column("sub_bacia", header_name="Sub Bacia") - - gb.configure_column("image_url", header_name="URL Imagem") + gb.configure_column("label", header_name="Label") + gb.configure_column("label_explanation", header_name="Descrição") + # gb.configure_column("image_url", header_name="URL Imagem") + # gb.configure_column("bairro", header_name="Bairro") + # gb.configure_column("subprefeitura", header_name="Subprefeitura") + # gb.configure_column("id_bolsao", header_name="ID Bolsão") + # gb.configure_column("bacia", header_name="Bacia") + # gb.configure_column("sub_bacia", header_name="Sub Bacia") gb.configure_grid_options(enableCellTextSelection=True) # Build grid options @@ -182,90 +165,147 @@ def get_agrid_table(data_with_image): return selected_row -chart_data, last_update = load_alagamento_detectado_ia() -data_with_image = get_table_cameras_with_images(chart_data) -folium_map = create_map(chart_data) +# chart_data, last_update = load_alagamento_detectado_ia() +# data_with_image = get_table_cameras_with_images(chart_data) +# folium_map = create_map(chart_data) st.markdown("# Mapa de Alagamentos | Vision AI") -st.markdown( - """ - Esta aplicação usa as câmeras instaladas na cidade para detectar alagamentos e bolsões de água em tempo real. - - Ela usa o modelo Gemini Pro Vision para identificar alagamentos em imagens. - """ -) -# @st.cache_data(ttl=60, persist=True) -def get_cameras(): - response = vision_api._get_all_pages("/cameras") - return response - - # - - -st.text(get_cameras()) -cameras = pd.DataFrame(get_cameras()) -# get identifications with not empty list -# cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] - -# st.text(cameras.columns) -# st.dataframe(cameras.head()) - -st.markdown( - f""" - - ---- - - ### Status snapshots: - - **Ultima atualização**: {str(last_update)} - - Total: {len(chart_data)} - - Sucessos: {len(data_with_image)} - - Falhas:{len(chart_data) - len(data_with_image)} - - ---- - - ### Tabela de Status de Alagamentos -""", -) +# get cameras +cameras_attr, cameras_identifications = treat_data(get_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("alert_category"), + ) + -selected_row = get_agrid_table(data_with_image) -st.markdown("----") -st.markdown("### Mapa de Câmeras") -st.markdown("Selecione uma Câmera na tabela visualizar no mapa.") - -if selected_row: - selected_camera_id = selected_row[0]["id_camera"] - camera_data = chart_data[chart_data["id_camera"] == selected_camera_id] - if not camera_data.empty: - camera_location = [ - camera_data.iloc[0]["latitude"], - camera_data.iloc[0]["longitude"], +with col2: + # dropdown to select label given selected object + label_filter = st.multiselect( + "Filtrar por label", + cameras_identifications[cameras_identifications["object"] == object_filter][ + "label" + ] + .dropna() + .unique(), + # if object_filter return minor and major, else return all labels + default=[ + "minor", + "major", ] - folium_map = create_map(chart_data, location=camera_location) - map_data = st_folium(folium_map, key="fig1", height=600, width=1200) + if object_filter == "alert_category" + else cameras_identifications[ + cameras_identifications["object"] == object_filter + ]["label"] + .dropna() + .unique() + .tolist(), + ) + +# filter both dfs by object and label +cameras_attr = cameras_attr[ + cameras_attr.index.isin( + cameras_identifications[ + cameras_identifications["object"] == object_filter + ].index + ) +] - image_url = camera_data.iloc[0]["image_url"] - st.markdown("----") - st.markdown("### 📷 Câmera snapshot") - st.markdown("Selecione uma Câmera na tabela visualizar o snapshot.") +cameras_identifications = cameras_identifications[ + (cameras_identifications["object"] == object_filter) + & (cameras_identifications["label"].isin(label_filter)) +] + +# show cameras dfs +merged_df = pd.merge(cameras_attr, cameras_identifications, on="id") +merged_df = merged_df[ + ["timestamp", "object", "label", "label_explanation"] +].sort_values(by="label") + +# timestamp to datetime BRL+3 with no tz +merged_df["timestamp"] = pd.to_datetime(merged_df["timestamp"]).dt.tz_convert( + "America/Sao_Paulo" +) +# make two cols +col1, col2 = st.columns(2) + +with col1: + selected_row = get_agrid_table(merged_df.reset_index()) + +with col2: + if selected_row: + st.markdown("### 📷 Camera snapshot") + # get cameras_attr url from selected row by id + image_url = cameras_attr.loc[selected_row[0]["id"]]["snapshot_url"] if image_url is None: st.markdown("Falha ao capturar o snapshot da câmera.") else: st.image(image_url) -else: - map_data = st_folium(folium_map, key="fig1", height=600, width=1200) +# st.markdown( +# f""" + +# ---- - st.markdown("----") - st.markdown("### 📷 Câmera snapshot") - st.markdown("Selecione uma Câmera na tabela visualizar o snapshot.") +# ### Status snapshots: +# - **Ultima atualização**: {str(last_update)} +# - Total: {len(chart_data)} +# - Sucessos: {len(data_with_image)} +# - Falhas:{len(chart_data) - len(data_with_image)} -# select chart_data obj based on last_object_clicked coordinates -obj_coord = map_data["last_object_clicked"] +# ---- + +# ### Tabela de Status de Alagamentos +# """, +# ) + +# selected_row = get_agrid_table(data_with_image) +# st.markdown("----") +# st.markdown("### Mapa de Câmeras") +# st.markdown("Selecione uma Câmera na tabela visualizar no mapa.") + +# if selected_row: +# selected_camera_id = selected_row[0]["id_camera"] +# camera_data = chart_data[chart_data["id_camera"] == selected_camera_id] +# if not camera_data.empty: +# camera_location = [ +# camera_data.iloc[0]["latitude"], +# camera_data.iloc[0]["longitude"], +# ] +# folium_map = create_map(chart_data, location=camera_location) +# map_data = st_folium(folium_map, key="fig1", height=600, width=1200) + +# image_url = camera_data.iloc[0]["image_url"] +# st.markdown("----") +# st.markdown("### 📷 Câmera snapshot") +# st.markdown("Selecione uma Câmera na tabela visualizar o snapshot.") + +# if image_url is None: +# st.markdown("Falha ao capturar o snapshot da câmera.") +# else: +# st.image(image_url) + + +# else: +# map_data = st_folium(folium_map, key="fig1", height=600, width=1200) + +# st.markdown("----") +# st.markdown("### 📷 Câmera snapshot") +# st.markdown("Selecione uma Câmera na tabela visualizar o snapshot.") + +# # select chart_data obj based on last_object_clicked coordinates +# obj_coord = map_data["last_object_clicked"] # if obj_coord is None: @@ -290,10 +330,4 @@ def get_cameras(): # selected_data.columns = ["Informações"] -# st.markdown("### 📷 Camera snapshot") -# if image_url is None: -# st.markdown("Falha ao capturar o snapshot da câmera.") -# else: -# st.image(image_url) - -# selected_data +# selected_data From 52fc86d1d219b80f8ff568244381bfcf8edb6a77 Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 2 Feb 2024 17:35:16 -0300 Subject: [PATCH 05/64] chore: clean api parameters --- app/api.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/api.py b/app/api.py index e8e3b40..4a0e484 100644 --- a/app/api.py +++ b/app/api.py @@ -4,12 +4,10 @@ class APIVisionAI: - def __init__(self, username, password, client_id, client_secret): + def __init__(self, username, password): self.BASE_URL = "https://vision-ai-api-staging-ahcsotxvgq-uc.a.run.app" self.username = username self.password = password - self.client_id = client_id - self.client_secret = client_secret self.headers, self.token_renewal_time = self._get_headers() def _get_headers(self): From 9a751a1954d79302e1a87d335af9728a9339978f Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 2 Feb 2024 17:35:21 -0300 Subject: [PATCH 06/64] chore: clean api parameters --- "app/\360\237\223\243 Home.py" | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 3d6c7eb..ad58619 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -15,8 +15,6 @@ vision_api = APIVisionAI( username=os.environ.get("VISION_API_USERNAME"), password=os.environ.get("VISION_API_PASSWORD"), - client_id=os.environ.get("VISION_API_CLIENT_ID"), - client_secret=os.environ.get("VISION_API_CLIENT_SECRET"), ) @@ -198,17 +196,19 @@ def get_agrid_table(data_with_image): .dropna() .unique(), # if object_filter return minor and major, else return all labels - default=[ - "minor", - "major", - ] - if object_filter == "alert_category" - else cameras_identifications[ - cameras_identifications["object"] == object_filter - ]["label"] - .dropna() - .unique() - .tolist(), + default=( + [ + "minor", + "major", + ] + if object_filter == "alert_category" + else cameras_identifications[ + cameras_identifications["object"] == object_filter + ]["label"] + .dropna() + .unique() + .tolist() + ), ) # filter both dfs by object and label From cf91ee4220182954ab4c025c8625142de06e5758 Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 2 Feb 2024 19:40:36 -0300 Subject: [PATCH 07/64] fix: fix some errors and refactor --- app/{ => utils}/api.py | 2 +- app/utils/utils.py | 161 +++++++++++++++++++++++++++ "app/\360\237\223\243 Home.py" | 197 +++------------------------------ data/temp/mock_api_data.json | 1 + 4 files changed, 180 insertions(+), 181 deletions(-) rename app/{ => utils}/api.py (99%) create mode 100644 app/utils/utils.py create mode 100644 data/temp/mock_api_data.json diff --git a/app/api.py b/app/utils/api.py similarity index 99% rename from app/api.py rename to app/utils/api.py index 4a0e484..0d5bd85 100644 --- a/app/api.py +++ b/app/utils/api.py @@ -30,7 +30,7 @@ def _get(self, path): self._refresh_token_if_needed() try: response = requests.get( - f"{self.BASE_URL}{path}", headers=self.headers, timeout=10 + f"{self.BASE_URL}{path}", headers=self.headers, timeout=600 ) return response.json() except requests.exceptions.ReadTimeout as e: diff --git a/app/utils/utils.py b/app/utils/utils.py new file mode 100644 index 0000000..1ed5de0 --- /dev/null +++ b/app/utils/utils.py @@ -0,0 +1,161 @@ +from typing import Union +import folium +import pandas as pd +import os +import json + +import streamlit as st +from st_aggrid import AgGrid, GridOptionsBuilder, ColumnsAutoSizeMode + +from utils.api import APIVisionAI + +vision_api = APIVisionAI( + username=os.environ.get("VISION_API_USERNAME"), + password=os.environ.get("VISION_API_PASSWORD"), +) + + +def get_icon_color(label: Union[bool, None]): + if label is True: + return "red" + elif label is False: + return "green" + else: + return "gray" + + +def create_map(chart_data, location=None): + chart_data = chart_data.fillna("") + # center map on the mean of the coordinates + + if location is not None: + m = folium.Map(location=location, zoom_start=18) + elif len(chart_data) > 0: + m = folium.Map( + location=[chart_data["latitude"].mean(), chart_data["longitude"].mean()], + zoom_start=11, + ) + else: + m = folium.Map(location=[-22.917690, -43.413861], zoom_start=11) + + for _, row in chart_data.iterrows(): + icon_color = get_icon_color(row["label"]) + folium.Marker( + location=[row["latitude"], row["longitude"]], + # Adicionar id_camera ao tooltip + tooltip=f"ID: {row['id_camera']}", + # Alterar a cor do ícone de acordo com o status + icon=folium.features.DivIcon( + icon_size=(15, 15), + icon_anchor=(7, 7), + html=f'
', + ), + ).add_to(m) + return m + + +def label_emoji(label): + if label is True: + return "🔴" + elif label is False: + return "🟢" + else: + return "⚫" + + +# @st.cache_data(ttl=600, persist=True) +def get_cameras(use_mock_data=True): + if use_mock_data: + with open("./data/temp/mock_api_data.json") as f: + data = json.load(f) + return data + + return vision_api._get_all_pages("/cameras") + + +def treat_data(response): + # To dataframe + cameras = pd.DataFrame(response).set_index("id") + + cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] + + cameras_attr = cameras[ + [ + "name", + "rtsp_url", + "update_interval", + "latitude", + "longitude", + "snapshot_url", + "snapshot_timestamp", + ] + ] + exploded_df = cameras.explode("identifications") + cameras_identifications = pd.DataFrame( + exploded_df["identifications"].tolist(), index=exploded_df.index + ) + return cameras_attr, cameras_identifications + + +def get_table_cameras_with_images(dataframe): + # filter only flooded cameras + table_data = ( + dataframe[dataframe["label"].notnull()] + .sort_values(by=["label", "id_camera"], ascending=False) + .reset_index(drop=True) + ) + table_data["emoji"] = table_data["label"].apply(label_emoji) + + col_order = [ + "emoji", + "id_camera", + "object", + "bairro", + "subprefeitura", + "id_bolsao", + "bacia", + "sub_bacia", + "image_url", + ] + table_data = table_data[col_order] + + return table_data + + +def get_agrid_table(data_with_image): + # Configure AgGrid + gb = GridOptionsBuilder.from_dataframe(data_with_image) + gb.configure_selection("single", use_checkbox=False) + gb.configure_side_bar() # if you need a side bar + gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) + + # configure individual columns + gb.configure_column("id", header_name="ID Camera", pinned="left") + # gb.configure_column("emoji", header_name="", pinned="left") + gb.configure_column("object", header_name="Identificador") + gb.configure_column("label", header_name="Label") + gb.configure_column("label_explanation", header_name="Descrição") + # gb.configure_column("image_url", header_name="URL Imagem") + # gb.configure_column("bairro", header_name="Bairro") + # gb.configure_column("subprefeitura", header_name="Subprefeitura") + # gb.configure_column("id_bolsao", header_name="ID Bolsão") + # gb.configure_column("bacia", header_name="Bacia") + # gb.configure_column("sub_bacia", header_name="Sub Bacia") + + gb.configure_grid_options(enableCellTextSelection=True) + # Build grid options + grid_options = gb.build() + + # Set auto size mode (if you still want to use it, otherwise remove this line) + grid_response = AgGrid( + data_with_image, + gridOptions=grid_options, + columns_auto_size_mode=ColumnsAutoSizeMode.FIT_CONTENTS, + # update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, + # fit_columns_on_grid_load=True + # height=400, + # width="50%", + ) + + selected_row = grid_response["selected_rows"] + return selected_row diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index ad58619..bcec121 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -1,178 +1,19 @@ -from io import StringIO -from typing import Union import folium import pandas as pd -import os - - -import requests import streamlit as st from streamlit_folium import st_folium -from st_aggrid import AgGrid, GridOptionsBuilder, ColumnsAutoSizeMode - -from api import APIVisionAI - -vision_api = APIVisionAI( - username=os.environ.get("VISION_API_USERNAME"), - password=os.environ.get("VISION_API_PASSWORD"), -) +from utils.utils import get_cameras, get_agrid_table, treat_data st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) -def get_icon_color(label: Union[bool, None]): - if label is True: - return "red" - elif label is False: - return "green" - else: - return "gray" - - -def create_map(chart_data, location=None): - chart_data = chart_data.fillna("") - # center map on the mean of the coordinates - - if location is not None: - m = folium.Map(location=location, zoom_start=18) - elif len(chart_data) > 0: - m = folium.Map( - location=[chart_data["latitude"].mean(), chart_data["longitude"].mean()], - zoom_start=11, - ) - else: - m = folium.Map(location=[-22.917690, -43.413861], zoom_start=11) - - for _, row in chart_data.iterrows(): - icon_color = get_icon_color(row["label"]) - folium.Marker( - location=[row["latitude"], row["longitude"]], - # Adicionar id_camera ao tooltip - tooltip=f"ID: {row['id_camera']}", - # Alterar a cor do ícone de acordo com o status - icon=folium.features.DivIcon( - icon_size=(15, 15), - icon_anchor=(7, 7), - html=f'
', - ), - ).add_to(m) - return m - - -def label_emoji(label): - if label is True: - return "🔴" - elif label is False: - return "🟢" - else: - return "⚫" - - -@st.cache_data(ttl=600, persist=True) -def get_cameras(): - return vision_api._get_all_pages("/cameras") - - -def treat_data(response): - # To dataframe - cameras = pd.DataFrame(response).set_index("id") - - cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] - - cameras_attr = cameras[ - [ - "name", - "rtsp_url", - "update_interval", - "latitude", - "longitude", - "snapshot_url", - "snapshot_timestamp", - ] - ] - exploded_df = cameras.explode("identifications") - cameras_identifications = pd.DataFrame( - exploded_df["identifications"].tolist(), index=exploded_df.index - ) - return cameras_attr, cameras_identifications - - -def get_table_cameras_with_images(dataframe): - # filter only flooded cameras - table_data = ( - dataframe[dataframe["label"].notnull()] - .sort_values(by=["label", "id_camera"], ascending=False) - .reset_index(drop=True) - ) - table_data["emoji"] = table_data["label"].apply(label_emoji) - - col_order = [ - "emoji", - "id_camera", - "object", - "bairro", - "subprefeitura", - "id_bolsao", - "bacia", - "sub_bacia", - "image_url", - ] - table_data = table_data[col_order] - - return table_data - - -def get_agrid_table(data_with_image): - # Configure AgGrid - gb = GridOptionsBuilder.from_dataframe(data_with_image) - gb.configure_selection("single", use_checkbox=False) - gb.configure_side_bar() # if you need a side bar - gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) - - # configure individual columns - gb.configure_column("id", header_name="ID Camera", pinned="left") - # gb.configure_column("emoji", header_name="", pinned="left") - gb.configure_column("object", header_name="Identificador") - gb.configure_column("label", header_name="Label") - gb.configure_column("label_explanation", header_name="Descrição") - # gb.configure_column("image_url", header_name="URL Imagem") - # gb.configure_column("bairro", header_name="Bairro") - # gb.configure_column("subprefeitura", header_name="Subprefeitura") - # gb.configure_column("id_bolsao", header_name="ID Bolsão") - # gb.configure_column("bacia", header_name="Bacia") - # gb.configure_column("sub_bacia", header_name="Sub Bacia") - - gb.configure_grid_options(enableCellTextSelection=True) - # Build grid options - grid_options = gb.build() - - # Set auto size mode (if you still want to use it, otherwise remove this line) - grid_response = AgGrid( - data_with_image, - gridOptions=grid_options, - columns_auto_size_mode=ColumnsAutoSizeMode.FIT_CONTENTS, - # update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, - # fit_columns_on_grid_load=True - # height=400, - # width="50%", - ) - - selected_row = grid_response["selected_rows"] - return selected_row - - -# chart_data, last_update = load_alagamento_detectado_ia() -# data_with_image = get_table_cameras_with_images(chart_data) -# folium_map = create_map(chart_data) - - st.markdown("# Mapa de Alagamentos | Vision AI") - # get cameras -cameras_attr, cameras_identifications = treat_data(get_cameras()) +cameras = get_cameras(use_mock_data=True) +cameras_attr, cameras_identifications = treat_data(cameras) col1, col2 = st.columns(2) with col1: @@ -187,28 +28,24 @@ def get_agrid_table(data_with_image): with col2: - # dropdown to select label given selected object - label_filter = st.multiselect( - "Filtrar por label", + labels = ( cameras_identifications[cameras_identifications["object"] == object_filter][ "label" ] .dropna() - .unique(), + .unique() + .tolist() + ) + labels_default = labels.copy() + + if object_filter == "alert_category": + 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=( - [ - "minor", - "major", - ] - if object_filter == "alert_category" - else cameras_identifications[ - cameras_identifications["object"] == object_filter - ]["label"] - .dropna() - .unique() - .tolist() - ), + default=labels_default, ) # filter both dfs by object and label @@ -230,7 +67,7 @@ def get_agrid_table(data_with_image): merged_df = pd.merge(cameras_attr, cameras_identifications, on="id") merged_df = merged_df[ ["timestamp", "object", "label", "label_explanation"] -].sort_values(by="label") +].sort_values(by=["timestamp", "label"]) # timestamp to datetime BRL+3 with no tz merged_df["timestamp"] = pd.to_datetime(merged_df["timestamp"]).dt.tz_convert( diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json new file mode 100644 index 0000000..0f28714 --- /dev/null +++ b/data/temp/mock_api_data.json @@ -0,0 +1 @@ +[{"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:54.074513+00:00", "objects": ["fire", "inside_tunnel", "road_blockade_reason", "image_description", "brt_lane", "water_in_road", "image_condition", "landslide", "building_collapse", "road_blockade", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:24:45.663820+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:37.281893+00:00", "label": "true", "label_explanation": "The image shows a dark tunnel with graffiti on the walls and a street light post on the side. The road is wet and there is a small amount of water on the ground."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:24:52.433950+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "image_description", "timestamp": "2024-02-02T08:43:54.494724+00:00", "label": "null", "label_explanation": "The image shows a dark, narrow alleyway with a single street lamp. The walls on either side are covered in graffiti and the ground is littered with trash. There is a small puddle of water on the ground in the foreground."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:07.322451+00:00", "label": "false", "label_explanation": "There is no BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:24:59.922224+00:00", "label": "true", "label_explanation": "There is a small amount of water on the road, but it is not causing any problems."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:46.582775+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:39.500066+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:22:19.864968+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:25:13.125943+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:22:11.361828+00:00", "label": "difficult", "label_explanation": "The large amount of water on the road makes it difficult for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:19.581796+00:00", "label": "normal", "label_explanation": "There are no major or minor issues in the image."}]}, {"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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:51.700946+00:00", "objects": ["inside_tunnel", "fire", "road_blockade_reason", "landslide", "road_blockade", "water_in_road", "image_condition", "image_description", "traffic_ease_vehicle", "brt_lane", "alert_category", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:45.646521+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:21:50.718454+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:13.540102+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:52.432271+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:06:08.755265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:02.342122+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:21:51.963339+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:06:06.375459+00:00", "label": "easy", "label_explanation": "The road is clear with no visible obstructions or water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:40.974643+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-02T22:06:03.550343+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that should be reported."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:06:08.015951+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-02T22:23:49.466471+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "water_in_road", "road_blockade", "brt_lane", "image_description", "image_condition", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:18:38.755983+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:24:47.127800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:18:23.062515+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "fire", "timestamp": "2024-02-02T22:24:33.750111+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:32.913475+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:24:44.108893+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:18:40.977623+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:24:52.381143+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:34.473605+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:44.954461+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:18:48.325908+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:03.477503+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "road_blockade_reason", "road_blockade", "alert_category", "fire", "water_in_road", "brt_lane", "image_description", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:25:06.375480+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:15.220468+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:25.113717+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.163447+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:23.060635+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:32.613596+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:02.713488+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-02T22:25:11.048367+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:29.601161+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:51.849110+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T22:23:13.705160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:09.643917+00:00", "objects": ["image_condition", "building_collapse", "water_in_road", "inside_tunnel", "brt_lane", "fire", "alert_category", "image_description", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:19:49.533821+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:02:52.003502+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:18:43.658197+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:07.322000+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:02:32.309164+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-02T22:19:45.918495+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:02:42.677665+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that require an alert."}, {"object": "image_description", "timestamp": "2024-02-02T05:04:49.323912+00:00", "label": "null", "label_explanation": "The image is corrupted and it is not possible to see the road or the surroundings clearly. There are some cars passing by and the image is very blurry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:19:57.628157+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:17.298001+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:02:47.551754+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:02:56.923436+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-02T22:24:06.376957+00:00", "objects": ["fire", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "image_description", "building_collapse", "alert_category", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:24:50.278881+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:45.663406+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:20:33.498573+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:52.380103+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 quality of the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:48.051744+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:05.609054+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road. The tree is large and has fallen across the entire width of the road, making it impassable for vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:50.265857+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T22:20:52.342437+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:51.662336+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:13.131887+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:40.156750+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a slight curve. The tunnel is well-lit, with artificial lighting visible along the ceiling. The walls of the tunnel are made of concrete and have a smooth finish. There are no signs of any blockages or obstructions within the tunnel."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:05.256171+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:05.394485+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-02T22:25:00.110889+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:03.780534+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:10:43.064570+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:47.335542+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:15:46.483094+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:10:38.952235+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:02.704698+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:09.314055+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:56.427389+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:10:35.661501+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}]}, {"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-02T22:24:03.692216+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:37.376889+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:19:32.739173+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:19:24.603250+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:20:20.866166+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:19:49.761532+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:30.763845+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:20:15.930977+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:13:16.928684+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:13:09.496337+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:50.686887+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:05.563244+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:59.725761+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "road_blockade", "landslide", "water_in_road", "building_collapse", "brt_lane", "image_condition", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:23.768795+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:16.639213+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:15.448058+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:43.595897+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:59.545575+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:19:31.148594+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:32.885766+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:50.466557+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:07.345562+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:01.181788+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:50.673337+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:07:24.723309+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:08:12.655845+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:08:53.764981+00:00", "label": "false", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:09:35.783131+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. All buildings are intact."}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:22.462669+00:00", "label": "normal", "label_explanation": "There are no visible issues in the image that would interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:09:06.124244+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:09:12.218521+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. Traffic is flowing smoothly."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:09:51.105234+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. Traffic is flowing smoothly."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:08:31.897191+00:00", "label": "false", "label_explanation": "There is no water visible on the road. The road surface is dry."}, {"object": "image_description", "timestamp": "2024-02-01T21:59:09.111780+00:00", "label": "null", "label_explanation": "The image is of a tunnel with green background and a lot of noise."}, {"object": "image_condition", "timestamp": "2024-02-02T22:08:17.342817+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:09:46.993120+00:00", "label": "easy", "label_explanation": "The road is completely dry with no visible water."}, {"object": "landslide", "timestamp": "2024-02-02T22:08:01.253025+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:03.602283+00:00", "objects": ["road_blockade_reason", "landslide", "inside_tunnel", "building_collapse", "water_in_road", "image_condition", "fire", "image_description", "road_blockade", "alert_category", "traffic_ease_vehicle", "brt_lane"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:33.469123+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:05.630909+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:00.056637+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:16:13.092273+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:32.588103+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:25.709286+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:13.129199+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-01T22:14:46.709942+00:00", "label": "null", "label_explanation": "The image shows a dark road with a fallen tree blocking the way. There is a green traffic sign on the side of the road. The surroundings are dark, with no visible buildings or other structures."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:16:24.638445+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:16:06.439699+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:16:15.321846+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:16:02.537147+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:15.042912+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "inside_tunnel", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:52:50.551387+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:11.617675+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.611172+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:25:10.549285+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:09:05.645712+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:52:46.565155+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:18.881542+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-02T21:52:45.824488+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockages or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:52:39.145772+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:09.344664+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:15.058668+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-02T22:24:13.515499+00:00", "objects": ["image_condition", "fire", "landslide", "image_description", "road_blockade", "road_blockade_reason", "brt_lane", "water_in_road", "traffic_ease_vehicle", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:07.636435+00:00", "label": "poor", "label_explanation": "The image is blurry and difficult to see. There is a lot of glare from the headlights of the cars, and the rain is making it difficult to see the road."}, {"object": "fire", "timestamp": "2024-02-02T22:25:06.373450+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:03.947689+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-02T07:55:24.449841+00:00", "label": "null", "label_explanation": "The image shows a dark and blurry road with cars driving in both directions. The road is wet from the rain, and there is a significant amount of water on the road. The water is deep enough to submerge the tires of a car, but it is still possible for vehicles to pass. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:36.172473+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:17.305411+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:02.714231+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:52.643259+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:33.530410+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:23:31.009423+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:48.475893+00:00", "label": "true", "label_explanation": "The image shows a dark enclosed space with no visible sky or open-air features. The walls and ceiling of the tunnel are made of concrete and the road surface is made of asphalt. There are no visible signs of traffic or pedestrians inside the tunnel."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:26.000315+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockades or other issues."}]}, {"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-02T22:24:09.287995+00:00", "objects": ["building_collapse", "image_condition", "fire", "water_in_road", "brt_lane", "road_blockade", "image_description", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T21:49:23.509291+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:28.845678+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:22:25.961436+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:17.092286+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:25.297854+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for BRT use."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:49:33.601324+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking part of the road, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:08:53.782180+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:48.928904+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.634824+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:13.132903+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:36.828174+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-02T22:24:12.025901+00:00", "objects": ["building_collapse", "image_description", "inside_tunnel", "landslide", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:23:44.552726+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-02T05:16:26.464383+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is still possible to see the road and the surrounding area. There are no cars or people visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:03.939907+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:09.325437+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:38.069473+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:39.945185+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:15.199520+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:43.585365+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:33.728298+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:53.128188+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:35.837999+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:36.483624+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-02T22:24:13.808467+00:00", "objects": ["road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "image_condition", "alert_category", "landslide", "inside_tunnel", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:10:42.666373+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:41.400718+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:20:15.449369+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:19.568051+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It has no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T22:10:22.364184+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:11.020034+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.604940+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:25:12.279886+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:10:34.415745+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:20:10.610284+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:10:12.075285+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-02T22:24:11.928177+00:00", "objects": ["landslide", "inside_tunnel", "fire", "road_blockade_reason", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:25:17.300214+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:11.014754+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:22:22.597229+00:00", "label": "false", "label_explanation": "There is no fire visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:40.900992+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:12.692403+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:03:20.027022+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:06.073030+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:34.548995+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:03:14.496533+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "image_description", "timestamp": "2024-02-02T04:25:05.706458+00:00", "label": "null", "label_explanation": "The image is dark and there is not much to see. There is a slight curve to the left."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:03:28.477783+00:00", "label": "easy", "label_explanation": "The road surface is mostly clear and dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:31.200833+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:33.260411+00:00", "objects": ["brt_lane", "image_description", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "traffic_ease_vehicle", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-02T21:38:19.230001+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:41.454333+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:43.385906+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:38:45.653359+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking part of the road, but vehicles can still pass with caution."}, {"object": "alert_category", "timestamp": "2024-02-02T21:38:31.589202+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic disruptions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:34.172976+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:45.381505+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:38:51.457596+00:00", "label": "difficult", "label_explanation": "The fallen tree is blocking part of the road, making it difficult for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:38:40.579419+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:39.334308+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:32.993485+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:12.819415+00:00", "objects": ["water_in_road", "road_blockade_reason", "image_description", "building_collapse", "fire", "alert_category", "road_blockade", "brt_lane", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-02T21:45:37.166902+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:20:07.637370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T21:44:11.791270+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-02T22:25:12.973781+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T21:43:58.010620+00:00", "label": "normal", "label_explanation": "There are no signs of any major issues that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:41:24.266368+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:45:53.202089+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:15.064686+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:44:06.968424+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.638526+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.908770+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:18.467474+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "image_description", "traffic_ease_vehicle", "water_in_road", "building_collapse", "road_blockade_reason", "road_blockade", "alert_category", "brt_lane", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:41.936947+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:37.477756+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:35.128374+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:08:11.431326+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry and clear, with no visible puddles or water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:39.047068+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:16.615803+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:43.105953+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:22.606330+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or blockages visible."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:06.775475+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no blockages or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:48.760793+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:25:36.087992+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-02T22:24:24.609960+00:00", "objects": ["road_blockade", "image_description", "alert_category", "image_condition", "building_collapse", "water_in_road", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "fire", "inside_tunnel", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T21:57:43.064366+00:00", "label": "free", "label_explanation": "There are no signs of road blockades. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:03.992262+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:47.488486+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:57:35.696992+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:50.140430+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry, with no visible puddles or water accumulation."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:57:48.005429+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:52.490444+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:48.863239+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:45.358230+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:51.113660+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:37.843787+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:53.265920+00:00", "objects": ["landslide", "road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:26:00.110574+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear of any landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:07.981140+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:15.817926+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:09.755205+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:59.191849+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:26:24.940869+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking the road, but there is still some space for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-02T22:26:31.908213+00:00", "label": "minor", "label_explanation": "The fallen tree is blocking the road, but there is still some space for vehicles to pass. This is a minor issue that should be reported."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:27.325876+00:00", "label": "difficult", "label_explanation": "The fallen tree is blocking the road, but there is still some space for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:31.166257+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-02T08:08:53.525770+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions. There is a tree that has fallen on the road, blocking the right lane. The left lane is still passable. There is a small puddle of water on the road, but it is not significant enough to cause any traffic disruptions. There is no dedicated bus lane visible in the image. The fallen tree is blocking the right lane, but the left lane is still passable. The left lane is still passable, although caution is advised due to the presence of the fallen tree. There is no evidence of any building collapse in the image. All buildings are intact and there are no signs of structural damage. The fallen tree is blocking one lane of traffic, but the other lane is still passable. This could cause some traffic congestion, but it is not a major issue."}, {"object": "fire", "timestamp": "2024-02-02T22:26:01.089713+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:05.309105+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:59.552540+00:00", "objects": ["traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "building_collapse", "water_in_road", "image_description", "road_blockade_reason", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:24:31.660890+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:26:27.706554+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:21.411952+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:40.333223+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:41.281359+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:13.876318+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T22:24:54.205393+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:24:59.928844+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:24:35.223859+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:24:39.501191+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:24:37.195006+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:25:04.686416+00:00", "objects": ["building_collapse", "brt_lane", "image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:20:49.353525+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:27.703907+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:10.677317+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:53.541897+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:12.809062+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:26:06.396023+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-02T22:26:07.495539+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:51.464201+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:47.836935+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:14.206485+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:37.466853+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:56.848269+00:00", "objects": ["traffic_ease_vehicle", "image_description", "road_blockade", "alert_category", "fire", "image_condition", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:17:18.944394+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T22:17:03.986322+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:17:05.667155+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-02T22:25:55.836168+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:58.397937+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:16:32.911410+00:00", "label": "true", "label_explanation": "There is a dedicated lane for BRT buses."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:02.994102+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:05.313526+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:01.829063+00:00", "label": "false", "label_explanation": "There are no signs of water in the road. The road surface is dry, with no visible puddles or signs of flooding."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:17:07.928366+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:52.519030+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-02T22:25:00.520071+00:00", "objects": ["inside_tunnel", "alert_category", "brt_lane", "road_blockade", "water_in_road", "image_description", "fire", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:42.333212+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T22:16:16.985375+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:20:46.612482+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:14:13.563603+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:33.977612+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-02T22:26:23.055910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:27.326994+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:14:15.724235+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:14:24.117720+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:25.638656+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:15.835073+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": null, "snapshot_timestamp": null, "objects": ["inside_tunnel", "image_condition", "brt_lane", "building_collapse", "image_description", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "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": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": null, "snapshot_timestamp": null, "objects": ["alert_category", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "fire", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "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": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:53.196227+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "image_description", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-02T22:19:35.818625+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:38.466878+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:12.678281+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating a BRT lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:08:32.734364+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-02T22:24:59.579483+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:02.123457+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:16.795498+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc... The road is clear with no obstructions and the image is clear with no interference."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:19:24.572904+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:22.602970+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:50.950748+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:58.584688+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:23:56.604470+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "road_blockade_reason", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "inside_tunnel", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:00:04.825953+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:59:53.251695+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:21.684618+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:05.635117+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-02T22:24:50.677118+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:11.019182+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:18:48.463434+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-02T05:56:12.326225+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are no cars on the road. There are trees and buildings on either side of the road. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:48.093894+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:18:32.224244+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:40.160350+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:00.116774+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:26:22.802889+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_condition", "building_collapse", "inside_tunnel", "water_in_road", "brt_lane", "image_description", "landslide", "alert_category", "fire", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:14.763900+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:28.238547+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:20.222271+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:22:58.629425+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:03.936503+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:25.848465+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:45.860923+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-02T05:07:04.141658+00:00", "label": "null", "label_explanation": "The image shows a dark road at night. There is a street light in the distance, and some trees on either side of the road. The road is dry, with no signs of water or puddles. There is a green screen at the bottom of the image."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:09.317704+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:22:52.997515+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "fire", "timestamp": "2024-02-02T22:25:15.205865+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:29.616882+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:58.236853+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade_reason", "fire", "image_condition", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-02T22:19:59.918691+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:37.206807+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:08.442707+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:18.432470+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:05.636799+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:24:59.924825+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-02T22:24:43.996362+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:52.439552+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:39.508472+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:20:20.850064+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:03:05.502287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-02T22:23:51.604330+00:00", "objects": ["fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "water_in_road", "image_condition", "inside_tunnel", "image_description", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:05.644753+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:17.303251+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:49.759396+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:30.022450+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:03.955476+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:57.628384+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:26.715104+00:00", "label": "false", "label_explanation": "The lane on the right side of the road is not a designated bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:24.002749+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:07.931643+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:54.125565+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T22:19:44.733054+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-02T22:24:06.083536+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "inside_tunnel", "building_collapse", "alert_category", "water_in_road", "fire", "landslide", "image_condition", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:27.321077+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:26:13.880178+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:45.365051+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:01.808567+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:55.911520+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:35.259574+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:12.976359+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.324698+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:32.816666+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:51.095155+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:24.709964+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:49.613714+00:00", "objects": ["landslide", "brt_lane", "inside_tunnel", "road_blockade_reason", "alert_category", "image_description", "building_collapse", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:23:18.239597+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:39.657256+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:23:33.527590+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:43.242905+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-02T21:59:17.314695+00:00", "label": "minor", "label_explanation": "There is a partially fallen tree blocking one lane of the road, but the other lane is still passable. This could cause minor traffic disruptions, but it is not a major issue."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T21:59:25.381759+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of structural damage or debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:59:12.474768+00:00", "label": "partially_blocked", "label_explanation": "There is a partially fallen tree on the side of the road. The tree is blocking the right lane, but the left lane is still passable."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:59:39.684004+00:00", "label": "easy", "label_explanation": "The left lane is completely clear, allowing easy passage for vehicles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:26.016078+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:23:19.524825+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:31.392356+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:56.186409+00:00", "objects": ["road_blockade", "road_blockade_reason", "landslide", "alert_category", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "water_in_road", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:17:14.043465+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:30.390616+00:00", "label": "free", "label_explanation": "There is a police car with its lights on, but the road is not blocked."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:06.214170+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:17:23.870934+00:00", "label": "minor", "label_explanation": "There are some minor issues that might affect city life, such as the fallen tree and the flooded area."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:11.769398+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:26:10.674109+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:17:34.265726+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All the buildings are intact and there are no signs of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:17:55.515051+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:13.893340+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-02T05:22:49.716483+00:00", "label": "null", "label_explanation": "The image is blurred and it is difficult to see the details. There is a road in the foreground and buildings in the background. There is a green traffic light visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:23.042487+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:16:24.641334+00:00", "label": "false", "label_explanation": "The right side of the road is not a designated bus rapid transit (BRT) lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:57.592112+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "image_description", "water_in_road", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:13:01.846386+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:13:26.568218+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:12:52.997364+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:13:20.933421+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:02.826966+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:10.659620+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:03.823061+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:02.124971+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:15.218690+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:09.328456+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:43.644934+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:34.862970+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "building_collapse", "road_blockade", "image_condition", "inside_tunnel", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:47.535368+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:10.184258+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:57.154253+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:41.868513+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:19:43.671767+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:50.135601+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:55.408650+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:54.025213+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:36.070076+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:39.754483+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:45.343415+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:30.918946+00:00", "objects": ["fire", "road_blockade_reason", "image_condition", "water_in_road", "road_blockade", "image_description", "landslide", "alert_category", "inside_tunnel", "brt_lane", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:33.114399+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:48.932008+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:45.375206+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:16:10.424710+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-02T20:52:33.941044+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles indicative of significant water accumulation, but the road is still navigable."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:25:27.972358+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T20:52:31.831707+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:22.990285+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:16:37.961329+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-02T20:52:33.235788+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T20:52:34.627007+00:00", "label": "difficult", "label_explanation": "There are large puddles indicative of significant water accumulation."}]}, {"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-02T22:24:33.122434+00:00", "objects": ["road_blockade_reason", "inside_tunnel", "image_description", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "fire", "building_collapse", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:37.855330+00:00", "label": "car_accident", "label_explanation": "There is a police car with lights on the side of the road. It seems to be stopped for a reason, but traffic can still pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:19.572173+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T20:40:18.942259+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but vehicles can still pass with caution."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:33.115266+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T20:40:32.696249+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:06:04.937570+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:39.651472+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry."}, {"object": "alert_category", "timestamp": "2024-02-02T20:39:28.217324+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic congestion and disruption."}, {"object": "fire", "timestamp": "2024-02-02T22:25:27.976691+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T20:39:39.294154+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:22.901457+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:38.587011+00:00", "objects": ["image_condition", "inside_tunnel", "image_description", "water_in_road", "alert_category", "road_blockade", "fire", "road_blockade_reason", "building_collapse", "brt_lane", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:34.504748+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:43.385315+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-02T05:14:43.251099+00:00", "label": "null", "label_explanation": "The image shows 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": "water_in_road", "timestamp": "2024-02-02T22:25:37.854274+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:07.879560+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking the road."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:19:56.954292+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the road, making it impossible for vehicles to pass."}, {"object": "fire", "timestamp": "2024-02-02T22:25:33.334486+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:35.466718+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:20:15.937591+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:52.490185+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:31.522225+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:41.402440+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}]}, {"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-02T22:24:39.112447+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:21:46.476969+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:21:39.066875+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:21:15.343217+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:22:06.501018+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:10.671112+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:23.038893+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:01.444449+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:15.841749+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:21:26.852037+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:32.796712+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:26:05.310229+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:40.218672+00:00", "objects": ["image_condition", "landslide", "image_description", "water_in_road", "road_blockade", "brt_lane", "fire", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:51.934443+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:48.755040+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:56.422545+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T20:48:14.364290+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:15.831579+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:25:51.029774+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T20:47:40.066170+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T20:47:46.240292+00:00", "label": "easy", "label_explanation": "The road is clear with no obstructions or hazards. Traffic flow is smooth and unimpeded."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:59.598878+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:40.280815+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:24.945770+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:25:00.039684+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:27.696781+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:04:20.958317+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:49.810885+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:03:57.508865+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:03:53.363822+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:04:07.536306+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:18:43.452917+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "fire", "timestamp": "2024-02-02T22:26:44.298962+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:46.606535+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:04:37.941288+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:37.418223+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:48.527447+00:00", "objects": ["road_blockade", "fire", "image_description", "road_blockade_reason", "inside_tunnel", "traffic_ease_vehicle", "water_in_road", "brt_lane", "building_collapse", "alert_category", "image_condition", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:19:50.216940+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "fire", "timestamp": "2024-02-02T22:25:56.426701+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:05.385752+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:52.511928+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:53.974313+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:25.992259+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:31.821127+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:43.775614+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:38.948870+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:01.805202+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:54.817557+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:45.216993+00:00", "objects": ["fire", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "brt_lane", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:46.260308+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:46.346302+00:00", "label": "easy", "label_explanation": "The road is mostly dry with only a few small puddles. These puddles are not significant enough to cause any hindrance to traffic, and vehicles can easily pass through."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:52.513371+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no obstructions or distortions that affect the quality of the image."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:37.091739+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is mostly dry with a few small puddles that do not pose any significant hindrance to traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:39.287667+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and there are no signs of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:38.213782+00:00", "label": "true", "label_explanation": "The image shows a dedicated lane for bus rapid transit (BRT) with a bus driving in it. The lane is clearly marked and separated from the other lanes."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:43.374908+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:26:33.554298+00:00", "label": "partially_blocked", "label_explanation": "There is a partially fallen tree on the side of the road, blocking part of the right lane."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:39.971581+00:00", "label": "normal", "label_explanation": "The image does not show any major or minor issues that would affect city life. The road is clear, there are no blockages, and the image quality is good."}, {"object": "image_description", "timestamp": "2024-02-02T02:50:02.482296+00:00", "label": "null", "label_explanation": "A night view of a road tunnel in Rio de Janeiro. The tunnel is well-lit and there is a slight bend to the right. The road surface is dry and there is no traffic. There are graffiti on the walls and a few trees on either side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:37.832864+00:00", "label": "false", "label_explanation": "The image shows an elevated road with a clear view of the surroundings, including buildings, trees, and a mountain in the distance. There are no signs of a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:26:54.838778+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse, as the surrounding buildings are intact and there is no debris or structural damage."}]}, {"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-02T22:24:45.638400+00:00", "objects": ["image_condition", "water_in_road", "fire", "image_description", "building_collapse", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "brt_lane", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:55.906114+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:07.977555+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-02T22:25:54.656104+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-02T05:34:50.335116+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is possible to see that the road is enclosed by walls and there are no visible signs of an open sky. This suggests that the image is taken inside a tunnel. There are several large green blocks of color in the image, which further obstruct the view."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:42:30.564028+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:01.796062+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T21:42:21.156234+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The road is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:52.509447+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:43:14.329552+00:00", "label": "easy", "label_explanation": "The road is dry and there are no puddles. Vehicles can pass without difficulty."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:53.816262+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:13:28.348518+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:43:31.363440+00:00", "label": "free", "label_explanation": "There are no signs of a road blockade. The road is clear and there are no obstructions."}]}, {"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-02T22:24:47.458375+00:00", "objects": ["brt_lane", "landslide", "inside_tunnel", "water_in_road", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "fire", "image_description", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-02T22:13:32.863430+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:07.967534+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:01.802368+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:54.271575+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:14.869800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:24.679186+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:04:52.591873+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "fire", "timestamp": "2024-02-02T22:26:13.879269+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-02T07:46:02.594580+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete barrier in the center, separating oncoming traffic. There is a slight bend in the road to the right. Streetlights are present on both sides of the road. There are no vehicles visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:05:30.856788+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:05:03.153360+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:05:21.537909+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}]}, {"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-02T22:25:06.385937+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "brt_lane", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:53:17.070358+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:53:29.874703+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:52:45.409893+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:13:28.231875+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:30.169812+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:53:42.661028+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T21:53:38.911360+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-02T22:23:26.021127+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:23:20.217213+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:31.297263+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:13:27.055223+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:49.279524+00:00", "objects": ["road_blockade_reason", "landslide", "water_in_road", "image_description", "inside_tunnel", "alert_category", "fire", "image_condition", "brt_lane", "road_blockade", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:35.770403+00:00", "label": "flooding", "label_explanation": "There is flooding on the road."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:10.718981+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:32.921744+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-02T21:09:57.406269+00:00", "label": "null", "label_explanation": "The image shows a busy urban street scene in Rio de Janeiro. The street is lined with trees and buildings, and there is a lot of traffic. The image is clear and there are no visible obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:34.697946+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T21:56:03.830760+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic congestion and disruption."}, {"object": "fire", "timestamp": "2024-02-02T22:26:15.824469+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:23.041363+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:39.165394+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:09:59.434319+00:00", "label": "partially_blocked", "label_explanation": "There is a small pothole on the right side of the road, but it does not appear to be causing any traffic problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:56:18.166270+00:00", "label": "difficult", "label_explanation": "The fallen tree is blocking part of the road, but there is still enough space for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:56:19.717598+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:54.116738+00:00", "objects": ["landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "brt_lane", "fire", "image_description", "building_collapse", "road_blockade", "image_condition", "alert_category", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:26:23.046805+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:59:05.874836+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:31.299754+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:35.837737+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:37.375329+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:26:27.910052+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T21:58:53.514531+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:59:02.187360+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:25.849706+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T21:58:35.517292+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:13.876673+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:25:03.761226+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "building_collapse", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:22:56.626881+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:02.704503+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:22:58.629692+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:03.509246+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:09:42.489737+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:56.175523+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:10:06.004567+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-02T02:59:44.481906+00:00", "label": "null", "label_explanation": "The image is corrupted and glitched. There are colorful lights in the background and it is not possible to identify any objects or details in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:23:25.845923+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:13.708430+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:34.818668+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:10:11.643612+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:25:03.173077+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "fire", "brt_lane", "image_description", "building_collapse", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:26:33.945880+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:45.410075+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:51.362170+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:49.813287+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:39.106459+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:26:25.642998+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:22.784019+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:22.963794+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:23.037103+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:19:30.977484+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:33.728906+00:00", "label": "normal", "label_explanation": "There are no minor or major issues. The image shows a clear road with no blockades or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:47.980460+00:00", "objects": ["image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "inside_tunnel", "building_collapse", "alert_category", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:53.326946+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:09:34.063777+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:02.583195+00:00", "label": "true", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "fire", "timestamp": "2024-02-02T22:24:56.527503+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:11.428450+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:44.105122+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:40.467052+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:32.059309+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:59.516775+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:52.442129+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:00.879605+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:48.633123+00:00", "objects": ["fire", "alert_category", "water_in_road", "road_blockade_reason", "image_condition", "brt_lane", "inside_tunnel", "road_blockade", "image_description", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:26:03.236297+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:26:00.183374+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:54.827251+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:58.138592+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:52.515390+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:19.572935+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:59.774743+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:25:57.156284+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:04.269022+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:05.384346+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:01.827060+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:52.289953+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "image_description", "water_in_road", "traffic_ease_vehicle", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:52.153374+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:53:20.910522+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:41.526199+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:26:15.831314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:37.416481+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:53:32.399116+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:51.439462+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:53:34.655857+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:10.667991+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:24.936991+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:45.731216+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:45.210752+00:00", "objects": ["landslide", "inside_tunnel", "building_collapse", "road_blockade_reason", "road_blockade", "image_description", "alert_category", "brt_lane", "traffic_ease_vehicle", "fire", "image_condition", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:26:15.596317+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:13.884277+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:09:57.970353+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:27.837591+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:10:06.050867+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:54.595735+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:13:13.118782+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:02.216660+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-02T22:26:19.909225+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:21.108353+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:13:04.877559+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-02T22:24:51.133425+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "brt_lane", "fire", "water_in_road", "inside_tunnel", "image_condition", "landslide", "road_blockade", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T20:06:50.658152+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockades or disruptions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:01.819756+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:05.381074+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-02T22:25:54.828135+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:59.365924+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:00.174391+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:57.155569+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:52.520496+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T20:07:18.260746+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T20:07:04.042654+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T20:07:24.417495+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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-02T22:24:50.947654+00:00", "objects": ["road_blockade", "image_description", "landslide", "alert_category", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T21:58:35.297069+00:00", "label": "free", "label_explanation": "There are no signs of road blockades. The image shows clear lanes with no obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:26:14.208712+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:06.055515+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:31.321623+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:38.444274+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:59:05.806019+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:30.397720+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:48.777706+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:26:23.015980+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:58:55.843810+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no debris or damage visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:12.824024+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:50.681362+00:00", "objects": ["landslide", "image_description", "alert_category", "inside_tunnel", "fire", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:26:07.971928+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:26:43.396198+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:37.393289+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:26:13.880487+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:23.025922+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:47.693402+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:35.271553+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:40.335343+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:41.528648+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:51.442434+00:00", "label": "easy", "label_explanation": "The road is clear with no obstructions, and there is no evidence of any hazards or disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:26:50.498480+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:26:24.673016+00:00", "objects": ["road_blockade", "image_description", "road_blockade_reason", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:23:31.299266+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:12.057426+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:22:59.138172+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "landslide", "timestamp": "2024-02-02T22:22:02.368147+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:14.747030+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the road. The road surface is dry and there are no puddles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:25.855419+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:22:32.565773+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:48.929540+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:20.212378+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:23:01.276381+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-02T22:22:06.734270+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:23.496389+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "road_blockade", "road_blockade_reason", "image_description", "brt_lane", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:04:32.346878+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:19:56.946829+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:04:07.372800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:51.307515+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-01T21:12:52.812538+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions. There is a fallen tree blocking part of the road, but there is still enough space for vehicles to pass. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:17:54.679283+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-02T22:25:23.059107+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:04:21.667053+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:04:20.161261+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:26.708218+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It has good lighting and no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:13.127091+00:00", "label": "false", "label_explanation": "The image shows a road scene with no visible features of a tunnel, such as enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:17.492779+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-02T22:24:24.551897+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:15.058201+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T21:06:06.113547+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would require an alert."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:17.496891+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:06:17.436459+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:23.253592+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:11.019910+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:12.464244+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:06:22.268655+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:27.980005+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:06:33.598539+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:07.976100+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:18.477232+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "image_description", "road_blockade_reason", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:12.986562+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:22.905377+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:57.632516+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:41.931632+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:52.954338+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:27.531089+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:18.902169+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-02T22:25:07.339587+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:19.788068+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:15.358949+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:01.575781+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-02T22:24:21.361436+00:00", "objects": ["building_collapse", "image_description", "image_condition", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:09:17.133083+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse."}, {"object": "image_description", "timestamp": "2024-02-01T19:28:39.342181+00:00", "label": "null", "label_explanation": "The image shows a road inside a tunnel. The road is blocked by a fallen tree. There is a large puddle of water on the road. The image is clear with no interference."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:26.002739+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:31.653488+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "fire", "timestamp": "2024-02-02T22:25:24.992824+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:57:40.920932+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking one lane of traffic and causing minor traffic disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:25:48.866728+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible water or puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:19.576951+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with artificial lighting, which is characteristic of a tunnel."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:47.348328+00:00", "label": "normal", "label_explanation": "There are no visible issues in the image that would interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:23.058572+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:45.374196+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:37.854712+00:00", "label": "false", "label_explanation": "There are no visible markings or signs indicating a bus rapid transit (BRT) lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:19.791875+00:00", "objects": ["image_description", "landslide", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:25:16.964496+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T21:46:15.823783+00:00", "label": "normal", "label_explanation": "There are no signs of minor or major issues that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:46:46.141256+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water accumulation."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:46:25.721788+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no visible damage or structural issues."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:27.839887+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:48.778446+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:46:10.874411+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:45.341732+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is mostly dry with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-02T22:25:23.238259+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:46:35.527127+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear of any obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:54.374570+00:00", "label": "free", "label_explanation": "There are no signs of road bloackades. The road is clear and free of any obstructions."}]}, {"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-02T22:24:27.881204+00:00", "objects": ["landslide", "road_blockade", "traffic_ease_vehicle", "image_condition", "road_blockade_reason", "fire", "image_description", "alert_category", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:25:23.251791+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:45:53.899111+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:46:18.201625+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:29.657772+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:33.004380+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:27.844850+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T21:45:59.516000+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:17.309898+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:46:03.621344+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:10:16.941048+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:03:21.057743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-02T22:24:30.666536+00:00", "objects": ["fire", "alert_category", "image_condition", "road_blockade_reason", "landslide", "building_collapse", "road_blockade", "image_description", "water_in_road", "traffic_ease_vehicle", "inside_tunnel", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:29.639846+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T21:30:48.388804+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic delays."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:33.008811+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:44.950084+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:26.516716+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:30:51.494386+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:30:46.270221+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but vehicles can still pass with caution."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:39.343866+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:31:06.403267+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:41.937536+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:10:47.205218+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:43.141988+00:00", "objects": ["landslide", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "fire", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:24:29.057254+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:13.136035+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:25:48.755388+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:43.390944+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:24:31.585039+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:25:37.485200+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-02T03:57:48.249800+00:00", "label": "null", "label_explanation": "The image is unclear and it is not possible to provide a detailed description."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:26.517842+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:25:33.118260+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:49.902443+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:48.560807+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:50.778214+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:49.226999+00:00", "objects": ["road_blockade", "fire", "traffic_ease_vehicle", "landslide", "image_condition", "inside_tunnel", "image_description", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:15:54.289957+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:17.292040+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no flames, smoke, or burn damage visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:15:46.771453+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.396155+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}, {"object": "image_condition", "timestamp": "2024-02-02T22:21:56.647705+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:52.358770+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a bright light at the end of the tunnel. The tunnel walls are visible and the road is empty."}, {"object": "image_description", "timestamp": "2024-02-02T19:45:26.445634+00:00", "label": "null", "label_explanation": "The image is corrupted and has several green and white blocks of missing data. This might affect the analysis of the image."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:21:58.056636+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:15:11.385191+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:04.938736+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:15:39.651617+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:15:24.724922+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}]}, {"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-02T22:23:49.915378+00:00", "objects": ["landslide", "road_blockade", "alert_category", "building_collapse", "brt_lane", "water_in_road", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:24:53.094497+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:26:01.794390+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:44.940057+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:25:52.542019+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:33.000167+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:17.325838+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:07.321241+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:01.157110+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:25:55.857725+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:39.329669+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:19.561208+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:14:21.010888+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:15:08.831750+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T08:04:04.284934+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-02T08:04:02.751219+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-02T22:15:20.408170+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T08:03:59.025610+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:15:25.474025+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "landslide", "timestamp": "2024-02-02T22:15:17.087380+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T08:04:05.031908+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T21:59:44.608093+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T08:04:01.251281+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "water_in_road", "timestamp": "2024-02-02T21:59:51.588419+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-02T06:00:53.175979+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is possible to see the outline of a tunnel."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:43.228651+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "fire", "building_collapse", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:37.395422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:19:24.618035+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-02T22:25:00.102195+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:20:20.870297+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:32.705259+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:19:10.651056+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:06.052947+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:44.739760+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:45.297703+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:50.673554+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:19:49.509600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:50.728819+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "landslide", "road_blockade_reason", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:52.534818+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:07.862484+00:00", "label": "partially_blocked", "label_explanation": "The pothole is large and could cause damage to vehicles. It is difficult to drive around the pothole."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:33.010410+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:01.430783+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles on the road, but they are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.398211+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:55.835141+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:39.330996+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:05.315399+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:23.255826+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:17.309657+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:26:00.110282+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:46.898410+00:00", "objects": ["fire", "image_condition", "water_in_road", "road_blockade", "road_blockade_reason", "inside_tunnel", "building_collapse", "image_description", "alert_category", "brt_lane", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:24:44.109629+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:48.474505+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:17:12.758113+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-02T22:13:13.120717+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by flood water."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:01.111641+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:39.481724+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:13:00.976616+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:12:50.276061+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:17:16.783684+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:13:26.867450+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:40.818703+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:23.344900+00:00", "objects": ["image_description", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:28.309163+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:23.238379+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:57.347275+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:09:04.895205+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:41.932257+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-02T22:25:29.662316+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:39.313704+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:49.018142+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:33.117861+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:09:12.221717+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:27.829315+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:25.244842+00:00", "objects": ["image_description", "inside_tunnel", "building_collapse", "landslide", "image_condition", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "water_in_road", "alert_category", "fire", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:19.572580+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:20:20.135032+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:22.918170+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:29.665336+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:20:29.890745+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:33.121557+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:20:10.723540+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:10:17.949202+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-02T21:20:16.834501+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that affect city life."}, {"object": "fire", "timestamp": "2024-02-02T22:25:27.975664+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:35:36.298773+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:24.532268+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "building_collapse", "image_description", "alert_category", "inside_tunnel", "image_condition", "brt_lane", "fire", "road_blockade", "water_in_road", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:26.701270+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:15.578271+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:09:34.570970+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:12.209856+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:33.332883+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:22.909318+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:49.876160+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:25:18.872607+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:10:24.033058+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:31.640594+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:15.105046+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:30.620067+00:00", "objects": ["road_blockade", "water_in_road", "alert_category", "inside_tunnel", "image_description", "image_condition", "road_blockade_reason", "building_collapse", "brt_lane", "traffic_ease_vehicle", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:13:30.830542+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:46.752284+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-02T22:13:38.051285+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:17.320526+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:33.002939+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:37.851822+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:13:38.899348+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:13:04.731084+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:13:42.202764+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:23.056022+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-02T22:25:26.722586+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:27.626195+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "image_description", "image_condition", "alert_category", "landslide", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-02T21:51:39.723870+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:52:10.440500+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:52:26.294746+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:52:23.633250+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:39.332681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:17.470767+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T21:51:34.732239+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:32.999224+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T21:51:54.772190+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:23.243312+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-02T22:25:26.514227+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-02T22:24:28.216431+00:00", "objects": ["image_description", "road_blockade", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T21:41:24.250392+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:31.645982+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:43.098646+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:45.423087+00:00", "label": "true", "label_explanation": "There is a dedicated lane for buses."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:27.970432+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:25:49.773915+00:00", "label": "difficult", "label_explanation": "The road is partially blocked, but vehicles can still pass."}, {"object": "alert_category", "timestamp": "2024-02-02T21:41:35.714085+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:25:51.039712+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:41.939960+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:32.483341+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:44.476476+00:00", "label": "car_accident", "label_explanation": "There is a police car with lights on the side of the road. It is partially blocking the right lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:27.979156+00:00", "objects": ["image_condition", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "building_collapse", "image_description", "landslide", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:29.656442+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:27.974409+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:41:11.569820+00:00", "label": "free", "label_explanation": "There are no features that block the road. The road is clear, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:43.381014+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T21:41:00.003947+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:30.722015+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:40:51.804415+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:41:15.625058+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:41:03.248717+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no visible damage or structural issues."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:25:24.989508+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:37.841416+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-02T22:24:30.945087+00:00", "objects": ["water_in_road", "road_blockade", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "image_condition", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-02T22:25:55.409518+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:09:13.961657+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:54.018521+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:09:23.582766+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily without any hindrance."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:52.512848+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:56.199496+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:09:05.646112+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:53.749599+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:34.525775+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:39.324627+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-02T22:25:45.357821+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:55.685766+00:00", "objects": ["building_collapse", "brt_lane", "road_blockade_reason", "fire", "alert_category", "road_blockade", "traffic_ease_vehicle", "image_description", "image_condition", "water_in_road", "landslide", "inside_tunnel"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:23:08.958490+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:51.889658+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:25.851415+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:22:06.730488+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:06.286945+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:19.450022+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:33.722542+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:19.052747+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:36.954002+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.418557+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:51.141668+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:51.503071+00:00", "objects": ["inside_tunnel", "image_description", "brt_lane", "fire", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "image_condition", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:48.476175+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-02T05:26:52.155958+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. The road surface is dry and there are no signs of water accumulation. There are no people or vehicles visible in the image."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:05.833655+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-02T22:24:55.417697+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:02.303977+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:18:43.645160+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:18:23.057385+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:01.150440+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:17:31.736201+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-02T22:18:16.131355+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that require an alert."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:18:29.379077+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:53.667783+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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-02T22:24:11.520341+00:00", "objects": ["road_blockade", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "inside_tunnel", "image_condition", "water_in_road", "image_description", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:26:10.759546+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:05.383472+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:23.034936+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:15.645981+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:55.844196+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:51.040109+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:46.262365+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:25.643371+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:27.436576+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:13.839246+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:13.126590+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:44.867116+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "fire", "image_description", "road_blockade", "road_blockade_reason", "inside_tunnel", "alert_category", "brt_lane", "image_condition", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-02T22:25:12.979900+00:00", "label": "true", "label_explanation": "There are large puddles indicative of significant water accumulation."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:23:20.226584+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:29.874651+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:24:56.027722+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-02T03:48:31.987293+00:00", "label": "null", "label_explanation": "The image is heavily distorted and glitched, making it difficult to see any details. There is a large tree that has fallen across the road, completely blocking it. There are no signs of any people or vehicles in the image."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:32.619952+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:07.420711+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:16.957231+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:12.068761+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:02.704209+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a bus driving on it."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:59.479574+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:54.643258+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:53.707054+00:00", "objects": ["image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "brt_lane", "building_collapse", "image_condition", "fire", "water_in_road", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-02T14:04:40.400744+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro. The street is lined with trees and buildings, and there is a lot of traffic. The image is taken from a high angle, and the sky is clear."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:23.721119+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:19:59.885015+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:43:59.415069+00:00", "label": "difficult", "label_explanation": "The fallen tree is blocking part of the road, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:27:09.555856+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:28.247326+00:00", "label": "false", "label_explanation": "It is not possible to identify if the lane is a BRT lane due to the poor image quality."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:41.861161+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:08.228579+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:22:06.502385+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:20:15.929007+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-02T22:27:10.932907+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:37.685298+00:00", "label": "normal", "label_explanation": "The image is too unclear to determine if there are any issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file From ffc8417239abd87d6cd47000d6060f757d1ce0ee Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 2 Feb 2024 19:43:28 -0300 Subject: [PATCH 08/64] fix: fix some errors and refactor --- .pre-commit-config.yaml | 26 ++++++++++++++++++++++++++ app/{utils => }/api.py | 11 +++++++---- 2 files changed, 33 insertions(+), 4 deletions(-) create mode 100644 .pre-commit-config.yaml rename app/{utils => }/api.py (91%) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..36a9b08 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,26 @@ +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: check-added-large-files # prevents adding large files + - id: detect-private-key # detects private keys + - id: fix-byte-order-marker # fixes BOM + - id: fix-encoding-pragma # fixes encoding pragma + - id: no-commit-to-branch # prevents committing to protected branches + - id: trailing-whitespace # prevents trailing whitespace + +- repo: https://github.com/psf/black + rev: 22.12.0 + hooks: + - id: black + language_version: python3.10 + +- repo: https://github.com/PyCQA/isort + rev: 5.12.0 + hooks: + - id: isort + +- repo: https://github.com/PyCQA/flake8 + rev: 6.0.0 + hooks: + - id: flake8 diff --git a/app/utils/api.py b/app/api.py similarity index 91% rename from app/utils/api.py rename to app/api.py index 0d5bd85..09d7f52 100644 --- a/app/utils/api.py +++ b/app/api.py @@ -1,7 +1,9 @@ +# -*- coding: utf-8 -*- import time -import requests from concurrent.futures import ThreadPoolExecutor, as_completed +import requests + class APIVisionAI: def __init__(self, username, password): @@ -33,7 +35,7 @@ def _get(self, path): f"{self.BASE_URL}{path}", headers=self.headers, timeout=600 ) return response.json() - except requests.exceptions.ReadTimeout as e: + except requests.exceptions.ReadTimeout as _: # noqa return {"items": []} def _get_all_pages(self, path): @@ -42,7 +44,7 @@ def _get_all_pages(self, path): if not initial_response: return [] - # Assuming the initial response contains the total number of items or pages + # Assuming the initial response contains the total number of items or pages # noqa total_pages = self._calculate_total_pages(initial_response) # Function to get a single page @@ -58,7 +60,8 @@ def get_page(page): with ThreadPoolExecutor(max_workers=total_pages) as executor: # Create a future for each page futures = [ - executor.submit(get_page, page) for page in range(1, total_pages + 1) + executor.submit(get_page, page) + for page in range(1, total_pages + 1) # noqa ] for future in as_completed(futures): From 055515b56f7baa7080d77ca8fc96be98009afda5 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 22:44:08 +0000 Subject: [PATCH 09/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- ...60\237\223\267 Pontos de Alagamento | Vision AI.py" | 5 +++-- ...57\270\217 Pontos Cr\303\255ticos em Tempo Real.py" | 3 +-- ...0\237\247\252 Experimente o Modelo | Vision AI.py" | 3 +-- app/utils/model.py | 9 +++++---- app/utils/utils.py | 10 +++++----- "app/\360\237\223\243 Home.py" | 4 ++-- data/database/pontos_criticos.csv | 6 +++--- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git "a/app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" "b/app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" index 3bd900f..6c8ce47 100644 --- "a/app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" +++ "b/app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" @@ -1,6 +1,7 @@ -import streamlit as st -import requests +# -*- coding: utf-8 -*- import pandas as pd +import requests +import streamlit as st st.set_page_config(layout="wide", page_title="Pontos de Alagamento") st.image("./data/logo/logo.png", width=300) diff --git "a/app/hide/\360\237\227\272\357\270\217 Pontos Cr\303\255ticos em Tempo Real.py" "b/app/hide/\360\237\227\272\357\270\217 Pontos Cr\303\255ticos em Tempo Real.py" index a938e7f..5a7f832 100644 --- "a/app/hide/\360\237\227\272\357\270\217 Pontos Cr\303\255ticos em Tempo Real.py" +++ "b/app/hide/\360\237\227\272\357\270\217 Pontos Cr\303\255ticos em Tempo Real.py" @@ -1,11 +1,10 @@ +# -*- coding: utf-8 -*- import folium import pandas as pd - import requests import streamlit as st from streamlit_folium import st_folium - st.set_page_config(layout="wide", page_title="Pontos Críticos em Tempo Real") st.image("./data/logo/logo.png", width=300) diff --git "a/app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" "b/app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" index 6d5d300..e7c52ad 100644 --- "a/app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" +++ "b/app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" @@ -1,8 +1,7 @@ +# -*- coding: utf-8 -*- import streamlit as st - from utils.model import run_model - MAX_FILE_SIZE = 5 * 1024 * 1024 # 5MB st.set_page_config(layout="wide", page_title="Experimente o Modelo") diff --git a/app/utils/model.py b/app/utils/model.py index ea6a9c2..2622771 100644 --- a/app/utils/model.py +++ b/app/utils/model.py @@ -1,8 +1,10 @@ -import os -import requests -import json +# -*- coding: utf-8 -*- import base64 import io +import json +import os + +import requests from PIL import Image @@ -67,4 +69,3 @@ def run_model(img, prompt): response = vision_ai_classify_image(base64_image, prompt) return get_ai_label(response) - diff --git a/app/utils/utils.py b/app/utils/utils.py index 1ed5de0..cbbc174 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -1,12 +1,12 @@ +# -*- coding: utf-8 -*- +import json +import os from typing import Union + import folium import pandas as pd -import os -import json - import streamlit as st -from st_aggrid import AgGrid, GridOptionsBuilder, ColumnsAutoSizeMode - +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder from utils.api import APIVisionAI vision_api = APIVisionAI( diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index bcec121..e723b31 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -1,9 +1,9 @@ +# -*- coding: utf-8 -*- import folium import pandas as pd import streamlit as st from streamlit_folium import st_folium - -from utils.utils import get_cameras, get_agrid_table, treat_data +from utils.utils import get_agrid_table, get_cameras, treat_data st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) diff --git a/data/database/pontos_criticos.csv b/data/database/pontos_criticos.csv index 569a3dc..f22ff89 100644 --- a/data/database/pontos_criticos.csv +++ b/data/database/pontos_criticos.csv @@ -17,7 +17,7 @@ Rua Laurindo Filho,Cavalcanti,Rua Laurindo Filho - Cavalcanti - Rio de Janeiro,- Rua Silva Vale X Rua Tumucumaque,Cavalcanti,Rua Silva Vale X Rua Tumucumaque - Cavalcanti - Rio de Janeiro,-22.86954,-43.309951,,Fábrica de ralos,,88a8a061d3fffff Buraco do Padre,Engenho Novo,Buraco do Padre - Engenho Novo - Rio de Janeiro,-22.902342,-43.265486,,Conservação implantou captações. Também terá atuação da Rio Águas pela Fábrica de Ralos,,88a8a0611bfffff Rua Barão do Bom Retiro - Alt. Rua Araxá,Engenho Novo,Rua Barão do Bom Retiro - Alt. Rua Araxá - Engenho Novo - Rio de Janeiro,-22.922607,-43.262181,,Diretoria de Estudos e Projetos - Avaliar,,88a8a06151fffff -Rua Matias Aires X Rua Antônio Portela,Engenho Novo,Rua Matias Aires X Rua Antônio Portela - Engenho Novo - Rio de Janeiro,-22.909713,-43.268631,"Rio que corta a Barão do Bom Retiro. Na altura do Pedro II. De acordo com morador, o rio recebeu +Rua Matias Aires X Rua Antônio Portela,Engenho Novo,Rua Matias Aires X Rua Antônio Portela - Engenho Novo - Rio de Janeiro,-22.909713,-43.268631,"Rio que corta a Barão do Bom Retiro. Na altura do Pedro II. De acordo com morador, o rio recebeu sua última limpeza há 17 anos",Limpeza do Rio Jacaré,,88a8a06025fffff "Rua Vinte e Quatro de Maio, Alt. Rua Alzira Valdetaro",Engenho Novo e Sampaio,"Rua Vinte e Quatro de Maio, Alt. Rua Alzira Valdetaro - Engenho Novo e Sampaio - Rio de Janeiro",-22.90227,-43.261791,,Limpeza SECONSERVA,Concluído,88a8a06111fffff "Rua Vinte e Quatro de Maio, Alt Rua Manoel Miranda",Engenho Novo e Sampaio,"Rua Vinte e Quatro de Maio, Alt Rua Manoel Miranda - Engenho Novo e Sampaio - Rio de Janeiro",-22.903919,-43.265151,,Limpeza SECONSERVA,Concluído,88a8a06119fffff @@ -33,8 +33,8 @@ Estação do Méier,Méier,Estação do Méier - Méier - Rio de Janeiro Rua Aristides Caire esquina com Rua Castro Alves.,Méier,Rua Aristides Caire esquina com Rua Castro Alves. - Méier - Rio de Janeiro,-22.897168,-43.275974,,Obra,Em andamento,88a8a061cdfffff Rua Barão de Jacuí 140,Oswaldo Cruz,Rua Barão de Jacuí 140 - Oswaldo Cruz - Rio de Janeiro,-22.86096,-43.351142,,Diretoria de estudos e projetos vai avaliar,,88a8a060b9fffff Av. Crisóstomo Pimentel de Oliveira - Alt. Via Light,Pavuna,Av. Crisóstomo Pimentel de Oliveira - Alt. Via Light - Pavuna - Rio de Janeiro,-22.815023,-43.388984,,,Concluído,88a8a06539fffff -"Beco da Coruja sentido Rua Idelfonso Falcão (Rua Padre Lima com Rua Francisco Menescal), - Conjunto Colúmbia",Pavuna,"Beco da Coruja sentido Rua Idelfonso Falcão (Rua Padre Lima com Rua Francisco Menescal), +"Beco da Coruja sentido Rua Idelfonso Falcão (Rua Padre Lima com Rua Francisco Menescal), + Conjunto Colúmbia",Pavuna,"Beco da Coruja sentido Rua Idelfonso Falcão (Rua Padre Lima com Rua Francisco Menescal), Conjunto Colúmbia - Pavuna - Rio de Janeiro",-22.817732,-43.343842,,Obra complexa - Rio Acari,,88a8a06e19fffff Conjunto Caçapava,Pavuna,Conjunto Caçapava - Pavuna - Rio de Janeiro,-22.813351,-43.383835,,Nome da Rua? Trecho?,,88a8a0653dfffff Av. Crisóstomo Pimentel de Oliveira 2083 - Conjunto Falcão,Pavuna,Av. Crisóstomo Pimentel de Oliveira 2083 - Conjunto Falcão - Pavuna - Rio de Janeiro,-22.813395,-43.380588,Obras de dragagem + limpeza do Rio Pavuna,Observar a obra,,88a8a0653dfffff From fb326422136c3790eccdc288c9bf1d395fb8fe4c Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 2 Feb 2024 20:04:18 -0300 Subject: [PATCH 10/64] fix: fix some errors and refactor --- .pre-commit-config.yaml | 2 +- app/utils/utils.py | 43 +++++++++++++++++++++------------- "app/\360\237\223\243 Home.py" | 13 ++++++---- 3 files changed, 36 insertions(+), 22 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 36a9b08..a2f4ca5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,4 +23,4 @@ repos: - repo: https://github.com/PyCQA/flake8 rev: 6.0.0 hooks: - - id: flake8 + - id: flake8 \ No newline at end of file diff --git a/app/utils/utils.py b/app/utils/utils.py index 1ed5de0..e07309f 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -1,13 +1,12 @@ +# -*- coding: utf-8 -*- +import json +import os from typing import Union + import folium import pandas as pd -import os -import json - -import streamlit as st -from st_aggrid import AgGrid, GridOptionsBuilder, ColumnsAutoSizeMode - -from utils.api import APIVisionAI +from api import APIVisionAI +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder vision_api = APIVisionAI( username=os.environ.get("VISION_API_USERNAME"), @@ -32,7 +31,10 @@ def create_map(chart_data, location=None): m = folium.Map(location=location, zoom_start=18) elif len(chart_data) > 0: m = folium.Map( - location=[chart_data["latitude"].mean(), chart_data["longitude"].mean()], + location=[ + chart_data["latitude"].mean(), + chart_data["longitude"].mean(), + ], # noqa zoom_start=11, ) else: @@ -48,7 +50,7 @@ def create_map(chart_data, location=None): icon=folium.features.DivIcon( icon_size=(15, 15), icon_anchor=(7, 7), - html=f'
', + html=f'
', # noqa ), ).add_to(m) return m @@ -64,13 +66,22 @@ def label_emoji(label): # @st.cache_data(ttl=600, persist=True) -def get_cameras(use_mock_data=True): +def get_cameras(use_mock_data=True, update_mock_data=False): + + mock_data_path = "./data/temp/mock_api_data.json" + if use_mock_data: - with open("./data/temp/mock_api_data.json") as f: + with open(mock_data_path) as f: data = json.load(f) return data - return vision_api._get_all_pages("/cameras") + data = vision_api._get_all_pages("/cameras") + + if update_mock_data: + with open(mock_data_path) as f: + json.dump(data, f) + + return data def treat_data(response): @@ -124,10 +135,10 @@ def get_table_cameras_with_images(dataframe): def get_agrid_table(data_with_image): # Configure AgGrid - gb = GridOptionsBuilder.from_dataframe(data_with_image) + gb = GridOptionsBuilder.from_dataframe(data_with_image) # noqa gb.configure_selection("single", use_checkbox=False) gb.configure_side_bar() # if you need a side bar - gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) + gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa # configure individual columns gb.configure_column("id", header_name="ID Camera", pinned="left") @@ -146,12 +157,12 @@ def get_agrid_table(data_with_image): # Build grid options grid_options = gb.build() - # Set auto size mode (if you still want to use it, otherwise remove this line) + # Set auto size mode (if you still want to use it, otherwise remove this line) # noqa grid_response = AgGrid( data_with_image, gridOptions=grid_options, columns_auto_size_mode=ColumnsAutoSizeMode.FIT_CONTENTS, - # update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, + # update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, # noqa # fit_columns_on_grid_load=True # height=400, # width="50%", diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index bcec121..ce7f4e0 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -1,9 +1,10 @@ -import folium +# -*- coding: utf-8 -*- +# import folium import pandas as pd import streamlit as st -from streamlit_folium import st_folium -from utils.utils import get_cameras, get_agrid_table, treat_data +# from streamlit_folium import st_folium +from utils.utils import get_agrid_table, get_cameras, treat_data st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) @@ -12,7 +13,7 @@ st.markdown("# Mapa de Alagamentos | Vision AI") # get cameras -cameras = get_cameras(use_mock_data=True) +cameras = get_cameras(use_mock_data=True, update_mock_data=False) cameras_attr, cameras_identifications = treat_data(cameras) col1, col2 = st.columns(2) @@ -29,7 +30,9 @@ with col2: labels = ( - cameras_identifications[cameras_identifications["object"] == object_filter][ + cameras_identifications[ + cameras_identifications["object"] == object_filter + ][ # noqa "label" ] .dropna() From 51cbe6cc0cfdd3b987a0806667f7bc7e034398d1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 23:06:16 +0000 Subject: [PATCH 11/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- "app/\360\237\223\243 Home.py" | 1 - 1 file changed, 1 deletion(-) diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index ce7f4e0..25a0584 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -2,7 +2,6 @@ # import folium import pandas as pd import streamlit as st - # from streamlit_folium import st_folium from utils.utils import get_agrid_table, get_cameras, treat_data From 5b8b02e392d07715fc67b92dbea9b16ab427418b Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 2 Feb 2024 20:08:46 -0300 Subject: [PATCH 12/64] fix: fix some errors and refactor --- app/utils/utils.py | 2 +- "app/\360\237\223\243 Home.py" | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index e07309f..0415fdd 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -import json +import json # noqa import os from typing import Union diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index ce7f4e0..003ab6d 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- -# import folium +# import folium # noqa import pandas as pd import streamlit as st - # from streamlit_folium import st_folium from utils.utils import get_agrid_table, get_cameras, treat_data From 0b193350166590bddd3c208dee058ad9c5932339 Mon Sep 17 00:00:00 2001 From: d116626 Date: Sat, 3 Feb 2024 14:44:41 -0300 Subject: [PATCH 13/64] feat: use mock data --- app/api.py | 10 +++++----- app/utils/utils.py | 14 ++++++++++---- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/app/api.py b/app/api.py index 09d7f52..1aa65b7 100644 --- a/app/api.py +++ b/app/api.py @@ -38,21 +38,21 @@ def _get(self, path): except requests.exceptions.ReadTimeout as _: # noqa return {"items": []} - def _get_all_pages(self, path): + def _get_all_pages(self, path, page_size=300): # Initial request to determine the number of pages initial_response = self._get(f"{path}?page=1&size=1") if not initial_response: return [] # Assuming the initial response contains the total number of items or pages # noqa - total_pages = self._calculate_total_pages(initial_response) + total_pages = self._calculate_total_pages(initial_response, page_size) # Function to get a single page def get_page(page): # time each execution start = time.time() print(f"Getting page {page} of {total_pages}") - response = self._get(f"{path}?page={page}&size=100") + response = self._get(f"{path}?page={page}&size={page_size}") print(f"Page {page} took {time.time() - start} seconds") return response @@ -71,6 +71,6 @@ def get_page(page): return data - def _calculate_total_pages(self, response): + def _calculate_total_pages(self, response, page_size): print(response) - return round(response["total"] / 100) + 1 + return round(response["total"] / page_size) + 1 diff --git a/app/utils/utils.py b/app/utils/utils.py index 0415fdd..6eb1ae7 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -5,6 +5,7 @@ import folium import pandas as pd +import streamlit as st from api import APIVisionAI from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder @@ -65,8 +66,8 @@ def label_emoji(label): return "⚫" -# @st.cache_data(ttl=600, persist=True) -def get_cameras(use_mock_data=True, update_mock_data=False): +@st.cache_data(ttl=600, persist=True) +def get_cameras(use_mock_data=False, update_mock_data=False): mock_data_path = "./data/temp/mock_api_data.json" @@ -75,7 +76,7 @@ def get_cameras(use_mock_data=True, update_mock_data=False): data = json.load(f) return data - data = vision_api._get_all_pages("/cameras") + data = vision_api._get_all_pages(path="/cameras", page_size=300) if update_mock_data: with open(mock_data_path) as f: @@ -145,7 +146,12 @@ def get_agrid_table(data_with_image): # gb.configure_column("emoji", header_name="", pinned="left") gb.configure_column("object", header_name="Identificador") gb.configure_column("label", header_name="Label") - gb.configure_column("label_explanation", header_name="Descrição") + gb.configure_column( + "label_explanation", + header_name="Descrição", + cellStyle={"white-space": "normal"}, # This enables text wrapping + autoHeight=True, # Adjusts row height based on content + ) # gb.configure_column("image_url", header_name="URL Imagem") # gb.configure_column("bairro", header_name="Bairro") # gb.configure_column("subprefeitura", header_name="Subprefeitura") From 284aaab5997eeedea39f9c4c692981e59d22cc68 Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 00:52:27 -0300 Subject: [PATCH 14/64] chore: add timeout parameter --- app/api.py | 29 ++++++++++++++--------------- app/utils/utils.py | 10 +++++++--- "app/\360\237\223\243 Home.py" | 5 ++++- 3 files changed, 25 insertions(+), 19 deletions(-) diff --git a/app/api.py b/app/api.py index 1aa65b7..67847cc 100644 --- a/app/api.py +++ b/app/api.py @@ -1,44 +1,41 @@ # -*- coding: utf-8 -*- import time from concurrent.futures import ThreadPoolExecutor, as_completed +from typing import Dict, Tuple import requests class APIVisionAI: - def __init__(self, username, password): + def __init__(self, username: str, password: str) -> None: self.BASE_URL = "https://vision-ai-api-staging-ahcsotxvgq-uc.a.run.app" self.username = username self.password = password self.headers, self.token_renewal_time = self._get_headers() - def _get_headers(self): + def _get_headers(self) -> Tuple[Dict[str, str], float]: access_token_response = requests.post( f"{self.BASE_URL}/auth/token", - data={ - "username": self.username, - "password": self.password, - }, - timeout=20, # Add a timeout argument to avoid hanging indefinitely + data={"username": self.username, "password": self.password}, ).json() token = access_token_response["access_token"] return {"Authorization": f"Bearer {token}"}, time.time() - def _refresh_token_if_needed(self): - if time.time() - self.token_renewal_time >= 600: + def _refresh_token_if_needed(self) -> None: + if time.time() - self.token_renewal_time >= 60 * 50: self.headers, self.token_renewal_time = self._get_headers() - def _get(self, path): + def _get(self, path: str, timeout: int = 120) -> Dict: self._refresh_token_if_needed() try: response = requests.get( - f"{self.BASE_URL}{path}", headers=self.headers, timeout=600 + f"{self.BASE_URL}{path}", headers=self.headers, timeout=timeout ) return response.json() except requests.exceptions.ReadTimeout as _: # noqa return {"items": []} - def _get_all_pages(self, path, page_size=300): + def _get_all_pages(self, path, page_size=300, timeout=120): # Initial request to determine the number of pages initial_response = self._get(f"{path}?page=1&size=1") if not initial_response: @@ -48,11 +45,13 @@ def _get_all_pages(self, path, page_size=300): total_pages = self._calculate_total_pages(initial_response, page_size) # Function to get a single page - def get_page(page): + def get_page(page, timeout): # time each execution start = time.time() print(f"Getting page {page} of {total_pages}") - response = self._get(f"{path}?page={page}&size={page_size}") + response = self._get( + path=f"{path}?page={page}&size={page_size}", timeout=timeout + ) print(f"Page {page} took {time.time() - start} seconds") return response @@ -60,7 +59,7 @@ def get_page(page): with ThreadPoolExecutor(max_workers=total_pages) as executor: # Create a future for each page futures = [ - executor.submit(get_page, page) + executor.submit(get_page, page, timeout) for page in range(1, total_pages + 1) # noqa ] diff --git a/app/utils/utils.py b/app/utils/utils.py index 6eb1ae7..19119e6 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -66,8 +66,10 @@ def label_emoji(label): return "⚫" -@st.cache_data(ttl=600, persist=True) -def get_cameras(use_mock_data=False, update_mock_data=False): +@st.cache_data(ttl=600, persist=False) +def get_cameras( + use_mock_data=False, update_mock_data=False, page_size=300, timeout=120 +): mock_data_path = "./data/temp/mock_api_data.json" @@ -76,7 +78,9 @@ def get_cameras(use_mock_data=False, update_mock_data=False): data = json.load(f) return data - data = vision_api._get_all_pages(path="/cameras", page_size=300) + data = vision_api._get_all_pages( + path="/cameras", page_size=page_size, timeout=timeout + ) if update_mock_data: with open(mock_data_path) as f: diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 003ab6d..ed9d81e 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -2,6 +2,7 @@ # import folium # noqa import pandas as pd import streamlit as st + # from streamlit_folium import st_folium from utils.utils import get_agrid_table, get_cameras, treat_data @@ -12,7 +13,9 @@ st.markdown("# Mapa de Alagamentos | Vision AI") # get cameras -cameras = get_cameras(use_mock_data=True, update_mock_data=False) +cameras = get_cameras( + page_size=300, timeout=120, use_mock_data=False, update_mock_data=False +) cameras_attr, cameras_identifications = treat_data(cameras) col1, col2 = st.columns(2) From 09b130275b7edfad982547d671f23636043062dc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 03:52:37 +0000 Subject: [PATCH 15/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- "app/\360\237\223\243 Home.py" | 1 - 1 file changed, 1 deletion(-) diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index ed9d81e..98b4547 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -2,7 +2,6 @@ # import folium # noqa import pandas as pd import streamlit as st - # from streamlit_folium import st_folium from utils.utils import get_agrid_table, get_cameras, treat_data From 65ee8bac9c9773a1ff4159a56970f728b9bcbc6e Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 00:53:58 -0300 Subject: [PATCH 16/64] chore: add timeout parameter --- "app/\360\237\223\243 Home.py" | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index ed9d81e..3092c5b 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -2,8 +2,7 @@ # import folium # noqa import pandas as pd import streamlit as st - -# from streamlit_folium import st_folium +from streamlit_folium import st_folium # noqa from utils.utils import get_agrid_table, get_cameras, treat_data st.set_page_config(layout="wide") From aecfacbe8d2ca4ed51bc830418a54e67a536c33a Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 03:11:47 -0300 Subject: [PATCH 17/64] hotifx: cache --- app/api.py | 14 +- app/utils/utils.py | 124 +- "app/\360\237\223\243 Home.py" | 43 +- data/database/cameras_aux.csv | 2594 ++++++++++++++++++++++++++++++++ data/temp/mock_api_data.json | 2 +- 5 files changed, 2712 insertions(+), 65 deletions(-) create mode 100644 data/database/cameras_aux.csv diff --git a/app/api.py b/app/api.py index 67847cc..bd5e557 100644 --- a/app/api.py +++ b/app/api.py @@ -31,13 +31,17 @@ def _get(self, path: str, timeout: int = 120) -> Dict: response = requests.get( f"{self.BASE_URL}{path}", headers=self.headers, timeout=timeout ) + # response.raise_for_status() return response.json() except requests.exceptions.ReadTimeout as _: # noqa return {"items": []} def _get_all_pages(self, path, page_size=300, timeout=120): + print(f"Getting all pages for {path}") # Initial request to determine the number of pages - initial_response = self._get(f"{path}?page=1&size=1") + initial_response = self._get( + path=f"{path}?page=1&size=1", timeout=timeout + ) # noqa if not initial_response: return [] @@ -45,7 +49,7 @@ def _get_all_pages(self, path, page_size=300, timeout=120): total_pages = self._calculate_total_pages(initial_response, page_size) # Function to get a single page - def get_page(page, timeout): + def get_page(page): # time each execution start = time.time() print(f"Getting page {page} of {total_pages}") @@ -56,10 +60,10 @@ def get_page(page, timeout): return response data = [] - with ThreadPoolExecutor(max_workers=total_pages) as executor: + with ThreadPoolExecutor(max_workers=20) as executor: # Create a future for each page futures = [ - executor.submit(get_page, page, timeout) + executor.submit(get_page, page) for page in range(1, total_pages + 1) # noqa ] @@ -67,7 +71,7 @@ def get_page(page, timeout): response = future.result() if response: data.extend(response["items"]) - + print("Getting all pages done!!!") return data def _calculate_total_pages(self, response, page_size): diff --git a/app/utils/utils.py b/app/utils/utils.py index 19119e6..9c649fa 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -15,6 +15,77 @@ ) +@st.cache_data(ttl=600, persist=False) +def get_cameras( + use_mock_data=False, update_mock_data=False, page_size=300, timeout=120 +): + + mock_data_path = "./data/temp/mock_api_data.json" + + if use_mock_data: + with open(mock_data_path) as f: + data = json.load(f) + return data + + data = vision_api._get_all_pages( + path="/cameras", page_size=page_size, timeout=timeout + ) + + if update_mock_data: + with open(mock_data_path, "w") as f: + json.dump(data, f) + + return data + + +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 = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] + cameras["snapshot_timestamp"] = pd.to_datetime( + cameras["snapshot_timestamp"] + ).dt.tz_convert("America/Sao_Paulo") + cameras = cameras.sort_values(by=["snapshot_timestamp"]) + cameras = cameras.merge(cameras_aux, on="id", how="left") + cameras_attr = cameras[ + [ + "bairro", + "subprefeitura", + "name", + # "rtsp_url", + # "update_interval", + "latitude", + "longitude", + "snapshot_url", + "snapshot_timestamp", + # "id_h3", + # "id_bolsao", + # "bolsao_latitude", + # "bolsao_longitude", + # "bolsao_classe_atual", + # "bacia", + # "sub_bacia", + # "geometry_bolsao_buffer_0.002", + ] + ] + exploded_df = cameras.explode("identifications") + cameras_identifications = pd.DataFrame( + exploded_df["identifications"].tolist(), index=exploded_df.index + ) + cameras_identifications["timestamp"] = pd.to_datetime( + cameras_identifications["timestamp"] + ).dt.tz_convert("America/Sao_Paulo") + cameras_identifications = cameras_identifications.sort_values( + ["timestamp", "label"], ascending=False + ) + + return cameras_attr, cameras_identifications + + def get_icon_color(label: Union[bool, None]): if label is True: return "red" @@ -66,53 +137,6 @@ def label_emoji(label): return "⚫" -@st.cache_data(ttl=600, persist=False) -def get_cameras( - use_mock_data=False, update_mock_data=False, page_size=300, timeout=120 -): - - mock_data_path = "./data/temp/mock_api_data.json" - - if use_mock_data: - with open(mock_data_path) as f: - data = json.load(f) - return data - - data = vision_api._get_all_pages( - path="/cameras", page_size=page_size, timeout=timeout - ) - - if update_mock_data: - with open(mock_data_path) as f: - json.dump(data, f) - - return data - - -def treat_data(response): - # To dataframe - cameras = pd.DataFrame(response).set_index("id") - - cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] - - cameras_attr = cameras[ - [ - "name", - "rtsp_url", - "update_interval", - "latitude", - "longitude", - "snapshot_url", - "snapshot_timestamp", - ] - ] - exploded_df = cameras.explode("identifications") - cameras_identifications = pd.DataFrame( - exploded_df["identifications"].tolist(), index=exploded_df.index - ) - return cameras_attr, cameras_identifications - - def get_table_cameras_with_images(dataframe): # filter only flooded cameras table_data = ( @@ -150,13 +174,17 @@ def get_agrid_table(data_with_image): # gb.configure_column("emoji", header_name="", pinned="left") gb.configure_column("object", header_name="Identificador") gb.configure_column("label", header_name="Label") + gb.configure_column("timestamp", header_name="Data detecção") gb.configure_column( "label_explanation", header_name="Descrição", cellStyle={"white-space": "normal"}, # This enables text wrapping autoHeight=True, # Adjusts row height based on content ) - # gb.configure_column("image_url", header_name="URL Imagem") + + gb.configure_column( + "snapshot_timestamp", header_name="Data Snapshot", hide=False + ) # noqa # gb.configure_column("bairro", header_name="Bairro") # gb.configure_column("subprefeitura", header_name="Subprefeitura") # gb.configure_column("id_bolsao", header_name="ID Bolsão") diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 3092c5b..93cca82 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -13,7 +13,7 @@ # get cameras cameras = get_cameras( - page_size=300, timeout=120, use_mock_data=False, update_mock_data=False + page_size=1000, timeout=600, use_mock_data=False, update_mock_data=True ) cameras_attr, cameras_identifications = treat_data(cameras) @@ -53,7 +53,7 @@ ) # filter both dfs by object and label -cameras_attr = cameras_attr[ +cameras_filter = cameras_attr[ cameras_attr.index.isin( cameras_identifications[ cameras_identifications["object"] == object_filter @@ -61,22 +61,28 @@ ) ] -cameras_identifications = cameras_identifications[ +cameras_identifications_filter = cameras_identifications[ (cameras_identifications["object"] == object_filter) & (cameras_identifications["label"].isin(label_filter)) ] # show cameras dfs -merged_df = pd.merge(cameras_attr, cameras_identifications, on="id") +merged_df = pd.merge(cameras_filter, cameras_identifications_filter, on="id") merged_df = merged_df[ - ["timestamp", "object", "label", "label_explanation"] -].sort_values(by=["timestamp", "label"]) + [ + "bairro", + "snapshot_timestamp", + "timestamp", + "object", + "label", + "label_explanation", + ] +].sort_values(by=["timestamp", "label"], ascending=False) + # timestamp to datetime BRL+3 with no tz -merged_df["timestamp"] = pd.to_datetime(merged_df["timestamp"]).dt.tz_convert( - "America/Sao_Paulo" -) + # make two cols col1, col2 = st.columns(2) @@ -85,14 +91,29 @@ with col2: if selected_row: - st.markdown("### 📷 Camera snapshot") + row = cameras_filter.loc[selected_row[0]["id"]] + camera_name = row["name"] + 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}") + st.markdown(f"Data Snapshot: {snapshot_timestamp}") + # get cameras_attr url from selected row by id - image_url = cameras_attr.loc[selected_row[0]["id"]]["snapshot_url"] + image_url = row["snapshot_url"] if image_url is None: st.markdown("Falha ao capturar o snapshot da câmera.") else: st.image(image_url) + camera_identifications = cameras_identifications.loc[ + selected_row[0]["id"] + ] # noqa + + get_agrid_table(camera_identifications.reset_index()) + # st.markdown( # f""" diff --git a/data/database/cameras_aux.csv b/data/database/cameras_aux.csv new file mode 100644 index 0000000..fdd8e40 --- /dev/null +++ b/data/database/cameras_aux.csv @@ -0,0 +1,2594 @@ +id_camera,bairro,subprefeitura,id_h3,is_bolsao,id_bolsao,bolsao_latitude,bolsao_longitude,bolsao_classe_atual,bacia,sub_bacia,geometry_bolsao_buffer_0.002 +000001,Centro,Centro,88a8a06a01fffff,,,,,,,, +000002,Centro,Centro,88a8a06a0bfffff,,,,,,,, +000003,Centro,Centro,88a8a06a57fffff,,,,,,,, +000005,Glória,Centro,88a8a06a47fffff,,,,,,,, +000006,Centro,Centro,88a8a06a09fffff,,,,,,,, +000007,Galeão,Ilhas,88a8a06f63fffff,,,,,,,, +000008,Centro,Centro,88a8a06a55fffff,,,,,,,, +000009,Centro,Centro,88a8a06a0dfffff,,,,,,,, +000010,Centro,Centro,88a8a06a51fffff,,,,,,,, +000011,Estácio,Centro,88a8a06a5bfffff,,,,,,,, +000012,Laranjeiras,Zona Sul,88a8a078b5fffff,,,,,,,, +000013,Botafogo,Zona Sul,88a8a078a3fffff,TRUE,60,-22.94343274,-43.1826426,PC,G,Botafogo,"POLYGON ((-43.1806426023 -22.9434327448, -43.180652232846654 -22.943628779080658, -43.18068103173919 -22.94382292544403, -43.18072872162853 -22.944013314154507, -43.18079484323498 -22.94419811166473, -43.1808787597713 -22.94437553827365, -43.1809796630754 -22.94454388526604, -43.18109658139328 -22.944701531368327, -43.18122838873763 -22.944846958362373, -43.181373815731675 -22.944978765706725, -43.18153146183396 -22.945095684024604, -43.181699808826345 -22.945196587328695, -43.181877235435266 -22.94528050386502, -43.18206203294549 -22.945346625471462, -43.18225242165597 -22.945394315360804, -43.18244656801934 -22.945423114253344, -43.1826426023 -22.945432744799998, -43.18283863658066 -22.945423114253344, -43.18303278294403 -22.945394315360804, -43.18322317165451 -22.945346625471462, -43.18340796916473 -22.94528050386502, -43.183585395773655 -22.945196587328695, -43.18375374276604 -22.945095684024604, -43.183911388868324 -22.944978765706725, -43.18405681586237 -22.944846958362373, -43.18418862320672 -22.944701531368327, -43.1843055415246 -22.94454388526604, -43.184406444828696 -22.94437553827365, -43.18449036136502 -22.94419811166473, -43.184556482971466 -22.944013314154507, -43.18460417286081 -22.94382292544403, -43.184632971753345 -22.943628779080658, -43.1846426023 -22.9434327448, -43.184632971753345 -22.94323671051934, -43.18460417286081 -22.943042564155967, -43.184556482971466 -22.94285217544549, -43.18449036136502 -22.94266737793527, -43.184406444828696 -22.942489951326348, -43.1843055415246 -22.94232160433396, -43.18418862320672 -22.94216395823167, -43.18405681586237 -22.942018531237625, -43.183911388868324 -22.941886723893273, -43.18375374276604 -22.941769805575394, -43.183585395773655 -22.941668902271303, -43.18340796916473 -22.941584985734977, -43.18322317165451 -22.941518864128536, -43.18303278294403 -22.941471174239194, -43.18283863658066 -22.941442375346654, -43.1826426023 -22.9414327448, -43.18244656801934 -22.941442375346654, -43.18225242165597 -22.941471174239194, -43.18206203294549 -22.941518864128536, -43.181877235435266 -22.941584985734977, -43.181699808826345 -22.941668902271303, -43.18153146183396 -22.941769805575394, -43.181373815731675 -22.941886723893273, -43.18122838873763 -22.942018531237625, -43.18109658139328 -22.94216395823167, -43.1809796630754 -22.94232160433396, -43.1808787597713 -22.942489951326348, -43.18079484323498 -22.94266737793527, -43.18072872162853 -22.94285217544549, -43.18068103173919 -22.943042564155967, -43.180652232846654 -22.94323671051934, -43.1806426023 -22.9434327448))" +000014,Botafogo,Zona Sul,88a8a078abfffff,TRUE,2,-22.94936755,-43.18484537,PC,G,Praia de Botafogo,"POLYGON ((-43.182845371199996 -22.9493675527, -43.18285500174665 -22.94956358698066, -43.18288380063919 -22.949757733344033, -43.18293149052853 -22.949948122054508, -43.182997612134976 -22.95013291956473, -43.1830815286713 -22.95031034617365, -43.183182431975396 -22.95047869316604, -43.183299350293275 -22.95063633926833, -43.18343115763763 -22.950781766262374, -43.18357658463167 -22.950913573606726, -43.18373423073396 -22.951030491924605, -43.18390257772634 -22.951131395228696, -43.184080004335264 -22.951215311765022, -43.18426480184549 -22.951281433371463, -43.184455190555965 -22.951329123260805, -43.184649336919335 -22.951357922153345, -43.1848453712 -22.9513675527, -43.18504140548066 -22.951357922153345, -43.18523555184403 -22.951329123260805, -43.18542594055451 -22.951281433371463, -43.18561073806473 -22.951215311765022, -43.18578816467365 -22.951131395228696, -43.185956511666035 -22.951030491924605, -43.18611415776832 -22.950913573606726, -43.18625958476237 -22.950781766262374, -43.18639139210672 -22.95063633926833, -43.1865083104246 -22.95047869316604, -43.186609213728694 -22.95031034617365, -43.18669313026502 -22.95013291956473, -43.186759251871464 -22.949948122054508, -43.18680694176081 -22.949757733344033, -43.18683574065334 -22.94956358698066, -43.1868453712 -22.9493675527, -43.18683574065334 -22.94917151841934, -43.18680694176081 -22.948977372055968, -43.186759251871464 -22.948786983345492, -43.18669313026502 -22.94860218583527, -43.186609213728694 -22.94842475922635, -43.1865083104246 -22.94825641223396, -43.18639139210672 -22.94809876613167, -43.18625958476237 -22.947953339137626, -43.18611415776832 -22.947821531793274, -43.185956511666035 -22.947704613475395, -43.18578816467365 -22.947603710171304, -43.18561073806473 -22.947519793634978, -43.18542594055451 -22.947453672028537, -43.18523555184403 -22.947405982139195, -43.18504140548066 -22.947377183246655, -43.1848453712 -22.9473675527, -43.184649336919335 -22.947377183246655, -43.184455190555965 -22.947405982139195, -43.18426480184549 -22.947453672028537, -43.184080004335264 -22.947519793634978, -43.18390257772634 -22.947603710171304, -43.18373423073396 -22.947704613475395, -43.18357658463167 -22.947821531793274, -43.18343115763763 -22.947953339137626, -43.183299350293275 -22.94809876613167, -43.183182431975396 -22.94825641223396, -43.1830815286713 -22.94842475922635, -43.182997612134976 -22.94860218583527, -43.18293149052853 -22.948786983345492, -43.18288380063919 -22.948977372055968, -43.18285500174665 -22.94917151841934, -43.182845371199996 -22.9493675527))" +000015,Botafogo,Zona Sul,88a8a07887fffff,,,,,,,, +000016,Jardim Botânico,Zona Sul,88a8a078d7fffff,,,,,,,, +000017,Lagoa,Zona Sul,88a8a07889fffff,TRUE,91,-22.96221596,-43.20386245,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2018624531 -22.9622159606, -43.201872083646656 -22.962411994880657, -43.20190088253919 -22.96260614124403, -43.201948572428535 -22.962796529954506, -43.20201469403498 -22.96298132746473, -43.202098610571305 -22.96315875407365, -43.2021995138754 -22.96332710106604, -43.20231643219328 -22.963484747168327, -43.20244823953763 -22.963630174162372, -43.202593666531676 -22.963761981506725, -43.202751312633964 -22.963878899824604, -43.202919659626346 -22.963979803128694, -43.20309708623527 -22.96406371966502, -43.20328188374549 -22.96412984127146, -43.20347227245597 -22.964177531160804, -43.20366641881934 -22.964206330053344, -43.2038624531 -22.964215960599997, -43.204058487380664 -22.964206330053344, -43.204252633744034 -22.964177531160804, -43.20444302245451 -22.96412984127146, -43.204627819964735 -22.96406371966502, -43.204805246573656 -22.963979803128694, -43.20497359356604 -22.963878899824604, -43.205131239668326 -22.963761981506725, -43.20527666666237 -22.963630174162372, -43.205408474006724 -22.963484747168327, -43.2055253923246 -22.96332710106604, -43.2056262956287 -22.96315875407365, -43.20571021216502 -22.96298132746473, -43.20577633377147 -22.962796529954506, -43.20582402366081 -22.96260614124403, -43.20585282255335 -22.962411994880657, -43.2058624531 -22.9622159606, -43.20585282255335 -22.96201992631934, -43.20582402366081 -22.961825779955966, -43.20577633377147 -22.96163539124549, -43.20571021216502 -22.961450593735268, -43.2056262956287 -22.961273167126347, -43.2055253923246 -22.961104820133958, -43.205408474006724 -22.96094717403167, -43.20527666666237 -22.960801747037625, -43.205131239668326 -22.960669939693272, -43.20497359356604 -22.960553021375393, -43.204805246573656 -22.960452118071302, -43.204627819964735 -22.960368201534976, -43.20444302245451 -22.960302079928535, -43.204252633744034 -22.960254390039193, -43.204058487380664 -22.960225591146653, -43.2038624531 -22.9602159606, -43.20366641881934 -22.960225591146653, -43.20347227245597 -22.960254390039193, -43.20328188374549 -22.960302079928535, -43.20309708623527 -22.960368201534976, -43.202919659626346 -22.960452118071302, -43.202751312633964 -22.960553021375393, -43.202593666531676 -22.960669939693272, -43.20244823953763 -22.960801747037625, -43.20231643219328 -22.96094717403167, -43.2021995138754 -22.961104820133958, -43.202098610571305 -22.961273167126347, -43.20201469403498 -22.961450593735268, -43.201948572428535 -22.96163539124549, -43.20190088253919 -22.961825779955966, -43.201872083646656 -22.96201992631934, -43.2018624531 -22.9622159606))" +000018,Lagoa,Zona Sul,88a8a078d9fffff,,,,,,,, +000019,Botafogo,Zona Sul,88a8a07881fffff,,,,,,,, +000020,Botafogo,Zona Sul,88a8a078a3fffff,TRUE,351,-22.94280411,-43.1798169,PO,ZS,Praia de Botafogo,"POLYGON ((-43.1778169033 -22.9428041143, -43.177826533846655 -22.94300014858066, -43.17785533273919 -22.943194294944032, -43.177903022628534 -22.943384683654507, -43.17796914423498 -22.94356948116473, -43.178053060771305 -22.94374690777365, -43.1781539640754 -22.94391525476604, -43.17827088239328 -22.944072900868328, -43.17840268973763 -22.944218327862373, -43.178548116731676 -22.944350135206726, -43.178705762833964 -22.944467053524605, -43.178874109826346 -22.944567956828696, -43.17905153643527 -22.94465187336502, -43.17923633394549 -22.944717994971462, -43.17942672265597 -22.944765684860805, -43.17962086901934 -22.944794483753345, -43.1798169033 -22.9448041143, -43.18001293758066 -22.944794483753345, -43.18020708394403 -22.944765684860805, -43.18039747265451 -22.944717994971462, -43.180582270164734 -22.94465187336502, -43.180759696773656 -22.944567956828696, -43.18092804376604 -22.944467053524605, -43.181085689868326 -22.944350135206726, -43.18123111686237 -22.944218327862373, -43.181362924206724 -22.944072900868328, -43.1814798425246 -22.94391525476604, -43.1815807458287 -22.94374690777365, -43.18166466236502 -22.94356948116473, -43.18173078397147 -22.943384683654507, -43.18177847386081 -22.943194294944032, -43.181807272753346 -22.94300014858066, -43.1818169033 -22.9428041143, -43.181807272753346 -22.94260808001934, -43.18177847386081 -22.942413933655967, -43.18173078397147 -22.94222354494549, -43.18166466236502 -22.94203874743527, -43.1815807458287 -22.941861320826348, -43.1814798425246 -22.94169297383396, -43.181362924206724 -22.94153532773167, -43.18123111686237 -22.941389900737626, -43.181085689868326 -22.941258093393273, -43.18092804376604 -22.941141175075394, -43.180759696773656 -22.941040271771303, -43.180582270164734 -22.940956355234977, -43.18039747265451 -22.940890233628537, -43.18020708394403 -22.940842543739194, -43.18001293758066 -22.940813744846654, -43.1798169033 -22.9408041143, -43.17962086901934 -22.940813744846654, -43.17942672265597 -22.940842543739194, -43.17923633394549 -22.940890233628537, -43.17905153643527 -22.940956355234977, -43.178874109826346 -22.941040271771303, -43.178705762833964 -22.941141175075394, -43.178548116731676 -22.941258093393273, -43.17840268973763 -22.941389900737626, -43.17827088239328 -22.94153532773167, -43.1781539640754 -22.94169297383396, -43.178053060771305 -22.941861320826348, -43.17796914423498 -22.94203874743527, -43.177903022628534 -22.94222354494549, -43.17785533273919 -22.942413933655967, -43.177826533846655 -22.94260808001934, -43.1778169033 -22.9428041143))" +000021,Praça da Bandeira,Grande Tijuca,88a8a0612dfffff,TRUE,11,-22.91068148,-43.21326028,PM,G,Canal do Mangue,"POLYGON ((-43.2112602792 -22.9106814823, -43.211269909746655 -22.91087751658066, -43.21129870863919 -22.911071662944032, -43.21134639852853 -22.911262051654507, -43.21141252013498 -22.91144684916473, -43.211496436671304 -22.91162427577365, -43.2115973399754 -22.91179262276604, -43.21171425829328 -22.911950268868328, -43.21184606563763 -22.912095695862373, -43.211991492631675 -22.912227503206726, -43.21214913873396 -22.912344421524605, -43.212317485726345 -22.912445324828695, -43.212494912335266 -22.91252924136502, -43.21267970984549 -22.912595362971462, -43.21287009855597 -22.912643052860805, -43.21306424491934 -22.912671851753345, -43.2132602792 -22.9126814823, -43.21345631348066 -22.912671851753345, -43.21365045984403 -22.912643052860805, -43.21384084855451 -22.912595362971462, -43.214025646064734 -22.91252924136502, -43.214203072673655 -22.912445324828695, -43.21437141966604 -22.912344421524605, -43.214529065768325 -22.912227503206726, -43.21467449276237 -22.912095695862373, -43.21480630010672 -22.911950268868328, -43.2149232184246 -22.91179262276604, -43.215024121728696 -22.91162427577365, -43.21510803826502 -22.91144684916473, -43.21517415987147 -22.911262051654507, -43.21522184976081 -22.911071662944032, -43.215250648653345 -22.91087751658066, -43.2152602792 -22.9106814823, -43.215250648653345 -22.91048544801934, -43.21522184976081 -22.910291301655967, -43.21517415987147 -22.91010091294549, -43.21510803826502 -22.90991611543527, -43.215024121728696 -22.909738688826348, -43.2149232184246 -22.90957034183396, -43.21480630010672 -22.90941269573167, -43.21467449276237 -22.909267268737626, -43.214529065768325 -22.909135461393273, -43.21437141966604 -22.909018543075394, -43.214203072673655 -22.908917639771303, -43.214025646064734 -22.908833723234977, -43.21384084855451 -22.908767601628536, -43.21365045984403 -22.908719911739194, -43.21345631348066 -22.908691112846654, -43.2132602792 -22.9086814823, -43.21306424491934 -22.908691112846654, -43.21287009855597 -22.908719911739194, -43.21267970984549 -22.908767601628536, -43.212494912335266 -22.908833723234977, -43.212317485726345 -22.908917639771303, -43.21214913873396 -22.909018543075394, -43.211991492631675 -22.909135461393273, -43.21184606563763 -22.909267268737626, -43.21171425829328 -22.90941269573167, -43.2115973399754 -22.90957034183396, -43.211496436671304 -22.909738688826348, -43.21141252013498 -22.90991611543527, -43.21134639852853 -22.91010091294549, -43.21129870863919 -22.910291301655967, -43.211269909746655 -22.91048544801934, -43.2112602792 -22.9106814823))" +000022,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +000023,Copacabana,Zona Sul,88a8a078e3fffff,,,,,,,, +000024,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +000025,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +000026,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000027,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000028,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +000029,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +000030,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +000031,Ipanema,Zona Sul,88a8a078c9fffff,,,,,,,, +000032,Lagoa,Zona Sul,88a8a078cbfffff,TRUE,339,-22.9801409,-43.20764244,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2056424357 -22.9801408981, -43.20565206624666 -22.98033693238066, -43.20568086513919 -22.980531078744033, -43.205728555028536 -22.980721467454508, -43.20579467663498 -22.98090626496473, -43.205878593171306 -22.98108369157365, -43.2059794964754 -22.98125203856604, -43.20609641479328 -22.98140968466833, -43.20622822213763 -22.981555111662374, -43.20637364913168 -22.981686919006727, -43.206531295233965 -22.981803837324605, -43.20669964222635 -22.981904740628696, -43.20687706883527 -22.981988657165022, -43.20706186634549 -22.982054778771463, -43.20725225505597 -22.982102468660806, -43.20744640141934 -22.982131267553346, -43.2076424357 -22.9821408981, -43.207838469980665 -22.982131267553346, -43.208032616344035 -22.982102468660806, -43.20822300505451 -22.982054778771463, -43.208407802564736 -22.981988657165022, -43.20858522917366 -22.981904740628696, -43.20875357616604 -22.981803837324605, -43.20891122226833 -22.981686919006727, -43.20905664926237 -22.981555111662374, -43.209188456606725 -22.98140968466833, -43.209305374924604 -22.98125203856604, -43.2094062782287 -22.98108369157365, -43.209490194765024 -22.98090626496473, -43.20955631637147 -22.980721467454508, -43.20960400626081 -22.980531078744033, -43.20963280515335 -22.98033693238066, -43.209642435700005 -22.9801408981, -43.20963280515335 -22.97994486381934, -43.20960400626081 -22.979750717455968, -43.20955631637147 -22.979560328745492, -43.209490194765024 -22.97937553123527, -43.2094062782287 -22.97919810462635, -43.209305374924604 -22.97902975763396, -43.209188456606725 -22.978872111531672, -43.20905664926237 -22.978726684537627, -43.20891122226833 -22.978594877193274, -43.20875357616604 -22.978477958875395, -43.20858522917366 -22.978377055571304, -43.208407802564736 -22.978293139034978, -43.20822300505451 -22.978227017428537, -43.208032616344035 -22.978179327539195, -43.207838469980665 -22.978150528646655, -43.2076424357 -22.9781408981, -43.20744640141934 -22.978150528646655, -43.20725225505597 -22.978179327539195, -43.20706186634549 -22.978227017428537, -43.20687706883527 -22.978293139034978, -43.20669964222635 -22.978377055571304, -43.206531295233965 -22.978477958875395, -43.20637364913168 -22.978594877193274, -43.20622822213763 -22.978726684537627, -43.20609641479328 -22.978872111531672, -43.2059794964754 -22.97902975763396, -43.205878593171306 -22.97919810462635, -43.20579467663498 -22.97937553123527, -43.205728555028536 -22.979560328745492, -43.20568086513919 -22.979750717455968, -43.20565206624666 -22.97994486381934, -43.2056424357 -22.9801408981))" +000033,Leblon,Zona Sul,88a8a07ab1fffff,,,,,,,, +000034,Ipanema,Zona Sul,88a8a078cdfffff,,,,,,,, +000035,Copacabana,Zona Sul,88a8a078c7fffff,,,,,,,, +000037,Galeão,Ilhas,88a8a06f61fffff,,,,,,,, +000038,Ramos,Zona Norte,88a8a061a5fffff,,,,,,,, +000039,Centro,Centro,88a8a06a0dfffff,,,,,,,, +000040,Centro,Centro,88a8a06a0bfffff,TRUE,65,-22.90648633,-43.18234547,PC,G,Canal do Mangue,"POLYGON ((-43.180345474 -22.9064863275, -43.180355104546656 -22.90668236178066, -43.18038390343919 -22.906876508144034, -43.180431593328535 -22.90706689685451, -43.18049771493498 -22.90725169436473, -43.180581631471306 -22.907429120973653, -43.1806825347754 -22.907597467966042, -43.18079945309328 -22.90775511406833, -43.18093126043763 -22.907900541062375, -43.18107668743168 -22.908032348406728, -43.181234333533965 -22.908149266724607, -43.18140268052635 -22.908250170028698, -43.18158010713527 -22.908334086565024, -43.18176490464549 -22.908400208171464, -43.18195529335597 -22.908447898060807, -43.18214943971934 -22.908476696953347, -43.182345474 -22.9084863275, -43.182541508280664 -22.908476696953347, -43.182735654644034 -22.908447898060807, -43.18292604335451 -22.908400208171464, -43.183110840864735 -22.908334086565024, -43.18328826747366 -22.908250170028698, -43.18345661446604 -22.908149266724607, -43.183614260568326 -22.908032348406728, -43.18375968756237 -22.907900541062375, -43.183891494906725 -22.90775511406833, -43.1840084132246 -22.907597467966042, -43.1841093165287 -22.907429120973653, -43.184193233065024 -22.90725169436473, -43.18425935467147 -22.90706689685451, -43.18430704456081 -22.906876508144034, -43.18433584345335 -22.90668236178066, -43.184345474000004 -22.9064863275, -43.18433584345335 -22.906290293219342, -43.18430704456081 -22.90609614685597, -43.18425935467147 -22.905905758145494, -43.184193233065024 -22.90572096063527, -43.1841093165287 -22.90554353402635, -43.1840084132246 -22.90537518703396, -43.183891494906725 -22.905217540931673, -43.18375968756237 -22.905072113937628, -43.183614260568326 -22.904940306593275, -43.18345661446604 -22.904823388275396, -43.18328826747366 -22.904722484971305, -43.183110840864735 -22.90463856843498, -43.18292604335451 -22.90457244682854, -43.182735654644034 -22.904524756939196, -43.182541508280664 -22.904495958046656, -43.182345474 -22.904486327500003, -43.18214943971934 -22.904495958046656, -43.18195529335597 -22.904524756939196, -43.18176490464549 -22.90457244682854, -43.18158010713527 -22.90463856843498, -43.18140268052635 -22.904722484971305, -43.181234333533965 -22.904823388275396, -43.18107668743168 -22.904940306593275, -43.18093126043763 -22.905072113937628, -43.18079945309328 -22.905217540931673, -43.1806825347754 -22.90537518703396, -43.180581631471306 -22.90554353402635, -43.18049771493498 -22.90572096063527, -43.180431593328535 -22.905905758145494, -43.18038390343919 -22.90609614685597, -43.180355104546656 -22.906290293219342, -43.180345474 -22.9064863275))" +000041,Lapa,Centro,88a8a06a09fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +000042,Flamengo,Zona Sul,88a8a06a49fffff,,,,,,,, +000043,Humaitá,Zona Sul,88a8a07881fffff,,,,,,,, +000044,Jardim Botânico,Zona Sul,88a8a078d1fffff,TRUE,88,-22.96743433,-43.22026438,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.218264375699995 -22.9674343321, -43.21827400624665 -22.96763036638066, -43.21830280513919 -22.967824512744034, -43.21835049502853 -22.96801490145451, -43.218416616634975 -22.96819969896473, -43.2185005331713 -22.968377125573653, -43.218601436475396 -22.968545472566042, -43.218718354793275 -22.96870311866833, -43.21885016213763 -22.968848545662375, -43.21899558913167 -22.968980353006728, -43.21915323523396 -22.969097271324607, -43.21932158222634 -22.969198174628698, -43.219499008835264 -22.969282091165024, -43.219683806345486 -22.969348212771465, -43.219874195055965 -22.969395902660807, -43.220068341419335 -22.969424701553347, -43.2202643757 -22.9694343321, -43.22046040998066 -22.969424701553347, -43.22065455634403 -22.969395902660807, -43.22084494505451 -22.969348212771465, -43.22102974256473 -22.969282091165024, -43.22120716917365 -22.969198174628698, -43.221375516166034 -22.969097271324607, -43.22153316226832 -22.968980353006728, -43.22167858926237 -22.968848545662375, -43.22181039660672 -22.96870311866833, -43.2219273149246 -22.968545472566042, -43.222028218228694 -22.968377125573653, -43.22211213476502 -22.96819969896473, -43.222178256371464 -22.96801490145451, -43.22222594626081 -22.967824512744034, -43.22225474515334 -22.96763036638066, -43.2222643757 -22.9674343321, -43.22225474515334 -22.967238297819343, -43.22222594626081 -22.96704415145597, -43.222178256371464 -22.966853762745494, -43.22211213476502 -22.96666896523527, -43.222028218228694 -22.96649153862635, -43.2219273149246 -22.96632319163396, -43.22181039660672 -22.966165545531673, -43.22167858926237 -22.966020118537628, -43.22153316226832 -22.965888311193275, -43.221375516166034 -22.965771392875396, -43.22120716917365 -22.965670489571306, -43.22102974256473 -22.96558657303498, -43.22084494505451 -22.96552045142854, -43.22065455634403 -22.965472761539196, -43.22046040998066 -22.965443962646656, -43.2202643757 -22.965434332100003, -43.220068341419335 -22.965443962646656, -43.219874195055965 -22.965472761539196, -43.219683806345486 -22.96552045142854, -43.219499008835264 -22.96558657303498, -43.21932158222634 -22.965670489571306, -43.21915323523396 -22.965771392875396, -43.21899558913167 -22.965888311193275, -43.21885016213763 -22.966020118537628, -43.218718354793275 -22.966165545531673, -43.218601436475396 -22.96632319163396, -43.2185005331713 -22.96649153862635, -43.218416616634975 -22.96666896523527, -43.21835049502853 -22.966853762745494, -43.21830280513919 -22.96704415145597, -43.21827400624665 -22.967238297819343, -43.218264375699995 -22.9674343321))" +000045,Leblon,Zona Sul,88a8a07ab3fffff,TRUE,294,-22.97878473,-43.22864049,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.226640489999994 -22.9787847288, -43.22665012054665 -22.97898076308066, -43.22667891943919 -22.979174909444033, -43.22672660932853 -22.97936529815451, -43.226792730934974 -22.97955009566473, -43.2268766474713 -22.979727522273652, -43.226977550775395 -22.97989586926604, -43.227094469093274 -22.98005351536833, -43.22722627643763 -22.980198942362374, -43.22737170343167 -22.980330749706727, -43.22752934953396 -22.980447668024606, -43.22769769652634 -22.980548571328697, -43.22787512313526 -22.980632487865023, -43.228059920645485 -22.980698609471464, -43.228250309355964 -22.980746299360806, -43.228444455719334 -22.980775098253346, -43.22864049 -22.9807847288, -43.22883652428066 -22.980775098253346, -43.22903067064403 -22.980746299360806, -43.22922105935451 -22.980698609471464, -43.22940585686473 -22.980632487865023, -43.22958328347365 -22.980548571328697, -43.22975163046603 -22.980447668024606, -43.22990927656832 -22.980330749706727, -43.23005470356237 -22.980198942362374, -43.23018651090672 -22.98005351536833, -43.2303034292246 -22.97989586926604, -43.23040433252869 -22.979727522273652, -43.23048824906502 -22.97955009566473, -43.23055437067146 -22.97936529815451, -43.230602060560805 -22.979174909444033, -43.23063085945334 -22.97898076308066, -43.23064049 -22.9787847288, -43.23063085945334 -22.978588694519342, -43.230602060560805 -22.97839454815597, -43.23055437067146 -22.978204159445493, -43.23048824906502 -22.97801936193527, -43.23040433252869 -22.97784193532635, -43.2303034292246 -22.97767358833396, -43.23018651090672 -22.977515942231673, -43.23005470356237 -22.977370515237627, -43.22990927656832 -22.977238707893274, -43.22975163046603 -22.977121789575396, -43.22958328347365 -22.977020886271305, -43.22940585686473 -22.97693696973498, -43.22922105935451 -22.976870848128538, -43.22903067064403 -22.976823158239196, -43.22883652428066 -22.976794359346655, -43.22864049 -22.976784728800002, -43.228444455719334 -22.976794359346655, -43.228250309355964 -22.976823158239196, -43.228059920645485 -22.976870848128538, -43.22787512313526 -22.97693696973498, -43.22769769652634 -22.977020886271305, -43.22752934953396 -22.977121789575396, -43.22737170343167 -22.977238707893274, -43.22722627643763 -22.977370515237627, -43.227094469093274 -22.977515942231673, -43.226977550775395 -22.97767358833396, -43.2268766474713 -22.97784193532635, -43.226792730934974 -22.97801936193527, -43.22672660932853 -22.978204159445493, -43.22667891943919 -22.97839454815597, -43.22665012054665 -22.978588694519342, -43.226640489999994 -22.9787847288))" +000046,Botafogo,Zona Sul,88a8a078a9fffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +000047,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +000048,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +000049,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000050,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +000051,Ipanema,Zona Sul,88a8a07ab5fffff,,,,,,,, +000052,Leblon,Zona Sul,88a8a07ab7fffff,,,,,,,, +000053,Centro,Centro,88a8a06a09fffff,,,,,,,, +000054,Barra da Tijuca,Barra da Tijuca,88a8a07507fffff,,,,,,,, +000055,Taquara,Jacarepaguá,88a8a06283fffff,TRUE,204,-22.92208789,-43.37246117,PC,J,Rio Grande,"POLYGON ((-43.3704611736 -22.922087888, -43.370470804146656 -22.92228392228066, -43.37049960303919 -22.922478068644033, -43.370547292928535 -22.922668457354508, -43.37061341453498 -22.92285325486473, -43.370697331071305 -22.92303068147365, -43.3707982343754 -22.92319902846604, -43.37091515269328 -22.92335667456833, -43.37104696003763 -22.923502101562374, -43.37119238703168 -22.923633908906726, -43.371350033133965 -22.923750827224605, -43.371518380126346 -22.923851730528696, -43.37169580673527 -22.923935647065022, -43.37188060424549 -22.924001768671463, -43.37207099295597 -22.924049458560805, -43.37226513931934 -22.924078257453345, -43.3724611736 -22.924087888, -43.372657207880664 -22.924078257453345, -43.372851354244034 -22.924049458560805, -43.37304174295451 -22.924001768671463, -43.373226540464735 -22.923935647065022, -43.373403967073656 -22.923851730528696, -43.37357231406604 -22.923750827224605, -43.373729960168326 -22.923633908906726, -43.37387538716237 -22.923502101562374, -43.374007194506724 -22.92335667456833, -43.3741241128246 -22.92319902846604, -43.3742250161287 -22.92303068147365, -43.37430893266502 -22.92285325486473, -43.37437505427147 -22.922668457354508, -43.37442274416081 -22.922478068644033, -43.37445154305335 -22.92228392228066, -43.374461173600004 -22.922087888, -43.37445154305335 -22.92189185371934, -43.37442274416081 -22.921697707355968, -43.37437505427147 -22.921507318645492, -43.37430893266502 -22.92132252113527, -43.3742250161287 -22.92114509452635, -43.3741241128246 -22.92097674753396, -43.374007194506724 -22.920819101431672, -43.37387538716237 -22.920673674437626, -43.373729960168326 -22.920541867093274, -43.37357231406604 -22.920424948775395, -43.373403967073656 -22.920324045471304, -43.373226540464735 -22.920240128934978, -43.37304174295451 -22.920174007328537, -43.372851354244034 -22.920126317439195, -43.372657207880664 -22.920097518546655, -43.3724611736 -22.920087888, -43.37226513931934 -22.920097518546655, -43.37207099295597 -22.920126317439195, -43.37188060424549 -22.920174007328537, -43.37169580673527 -22.920240128934978, -43.371518380126346 -22.920324045471304, -43.371350033133965 -22.920424948775395, -43.37119238703168 -22.920541867093274, -43.37104696003763 -22.920673674437626, -43.37091515269328 -22.920819101431672, -43.3707982343754 -22.92097674753396, -43.370697331071305 -22.92114509452635, -43.37061341453498 -22.92132252113527, -43.370547292928535 -22.921507318645492, -43.37049960303919 -22.921697707355968, -43.370470804146656 -22.92189185371934, -43.3704611736 -22.922087888))" +000056,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +000057,Jacarepaguá,Jacarepaguá,88a8a07525fffff,TRUE,342,-22.97313232,-43.36346007,PO,J,Arroio Fundo,"POLYGON ((-43.361460067299994 -22.9731323183, -43.36146969784665 -22.97332835258066, -43.36149849673919 -22.973522498944032, -43.36154618662853 -22.973712887654507, -43.361612308234974 -22.97389768516473, -43.3616962247713 -22.97407511177365, -43.361797128075395 -22.97424345876604, -43.361914046393274 -22.974401104868328, -43.36204585373763 -22.974546531862373, -43.36219128073167 -22.974678339206726, -43.36234892683396 -22.974795257524605, -43.36251727382634 -22.974896160828695, -43.36269470043526 -22.97498007736502, -43.362879497945485 -22.975046198971462, -43.363069886655964 -22.975093888860805, -43.363264033019334 -22.975122687753345, -43.3634600673 -22.9751323183, -43.36365610158066 -22.975122687753345, -43.36385024794403 -22.975093888860805, -43.36404063665451 -22.975046198971462, -43.36422543416473 -22.97498007736502, -43.36440286077365 -22.974896160828695, -43.36457120776603 -22.974795257524605, -43.36472885386832 -22.974678339206726, -43.36487428086237 -22.974546531862373, -43.36500608820672 -22.974401104868328, -43.3651230065246 -22.97424345876604, -43.36522390982869 -22.97407511177365, -43.36530782636502 -22.97389768516473, -43.36537394797146 -22.973712887654507, -43.365421637860806 -22.973522498944032, -43.36545043675334 -22.97332835258066, -43.3654600673 -22.9731323183, -43.36545043675334 -22.97293628401934, -43.365421637860806 -22.972742137655967, -43.36537394797146 -22.97255174894549, -43.36530782636502 -22.97236695143527, -43.36522390982869 -22.972189524826348, -43.3651230065246 -22.97202117783396, -43.36500608820672 -22.97186353173167, -43.36487428086237 -22.971718104737626, -43.36472885386832 -22.971586297393273, -43.36457120776603 -22.971469379075394, -43.36440286077365 -22.971368475771303, -43.36422543416473 -22.971284559234977, -43.36404063665451 -22.971218437628536, -43.36385024794403 -22.971170747739194, -43.36365610158066 -22.971141948846654, -43.3634600673 -22.9711323183, -43.363264033019334 -22.971141948846654, -43.363069886655964 -22.971170747739194, -43.362879497945485 -22.971218437628536, -43.36269470043526 -22.971284559234977, -43.36251727382634 -22.971368475771303, -43.36234892683396 -22.971469379075394, -43.36219128073167 -22.971586297393273, -43.36204585373763 -22.971718104737626, -43.361914046393274 -22.97186353173167, -43.361797128075395 -22.97202117783396, -43.3616962247713 -22.972189524826348, -43.361612308234974 -22.97236695143527, -43.36154618662853 -22.97255174894549, -43.36149849673919 -22.972742137655967, -43.36146969784665 -22.97293628401934, -43.361460067299994 -22.9731323183))" +000058,Barra da Tijuca,Barra da Tijuca,88a8a07567fffff,,,,,,,, +000059,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,TRUE,302,-22.9968841,-43.36554928,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3635492839 -22.9968840955, -43.363558914446656 -22.99708012978066, -43.36358771333919 -22.997274276144033, -43.363635403228535 -22.99746466485451, -43.36370152483498 -22.99764946236473, -43.363785441371306 -22.997826888973652, -43.3638863446754 -22.99799523596604, -43.36400326299328 -22.99815288206833, -43.36413507033763 -22.998298309062374, -43.36428049733168 -22.998430116406727, -43.364438143433965 -22.998547034724606, -43.36460649042635 -22.998647938028697, -43.36478391703527 -22.998731854565023, -43.36496871454549 -22.998797976171463, -43.36515910325597 -22.998845666060806, -43.36535324961934 -22.998874464953346, -43.3655492839 -22.9988840955, -43.365745318180664 -22.998874464953346, -43.365939464544034 -22.998845666060806, -43.36612985325451 -22.998797976171463, -43.366314650764735 -22.998731854565023, -43.36649207737366 -22.998647938028697, -43.36666042436604 -22.998547034724606, -43.36681807046833 -22.998430116406727, -43.36696349746237 -22.998298309062374, -43.367095304806725 -22.99815288206833, -43.367212223124604 -22.99799523596604, -43.3673131264287 -22.997826888973652, -43.367397042965024 -22.99764946236473, -43.36746316457147 -22.99746466485451, -43.36751085446081 -22.997274276144033, -43.36753965335335 -22.99708012978066, -43.367549283900004 -22.9968840955, -43.36753965335335 -22.99668806121934, -43.36751085446081 -22.996493914855968, -43.36746316457147 -22.996303526145493, -43.367397042965024 -22.99611872863527, -43.3673131264287 -22.99594130202635, -43.367212223124604 -22.99577295503396, -43.367095304806725 -22.995615308931672, -43.36696349746237 -22.995469881937627, -43.36681807046833 -22.995338074593274, -43.36666042436604 -22.995221156275395, -43.36649207737366 -22.995120252971304, -43.366314650764735 -22.99503633643498, -43.36612985325451 -22.994970214828538, -43.365939464544034 -22.994922524939195, -43.365745318180664 -22.994893726046655, -43.3655492839 -22.9948840955, -43.36535324961934 -22.994893726046655, -43.36515910325597 -22.994922524939195, -43.36496871454549 -22.994970214828538, -43.36478391703527 -22.99503633643498, -43.36460649042635 -22.995120252971304, -43.364438143433965 -22.995221156275395, -43.36428049733168 -22.995338074593274, -43.36413507033763 -22.995469881937627, -43.36400326299328 -22.995615308931672, -43.3638863446754 -22.99577295503396, -43.363785441371306 -22.99594130202635, -43.36370152483498 -22.99611872863527, -43.363635403228535 -22.996303526145493, -43.36358771333919 -22.996493914855968, -43.363558914446656 -22.99668806121934, -43.3635492839 -22.9968840955))" +000060,Barra da Tijuca,Barra da Tijuca,88a8a07097fffff,,,,,,,, +000061,Barra da Tijuca,Barra da Tijuca,88a8a070a3fffff,,,,,,,, +000062,Barra da Tijuca,Barra da Tijuca,88a8a070a5fffff,,,,,,,, +000063,Barra da Tijuca,Barra da Tijuca,88a8a070b3fffff,,,,,,,, +000064,Barra da Tijuca,Barra da Tijuca,88a8a06249fffff,,,,,,,, +000065,Barra da Tijuca,Barra da Tijuca,88a8a0624dfffff,,,,,,,, +000066,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +000067,São Conrado,Zona Sul,88a8a071a3fffff,,,,,,,, +000068,São Conrado,Zona Sul,88a8a0634dfffff,,,,,,,, +000069,Maracanã,Grande Tijuca,88a8a06129fffff,TRUE,316,-22.91204274,-43.2211205,PO,G,Canal do Mangue,"POLYGON ((-43.2191204986 -22.9120427431, -43.219130129146656 -22.912238777380658, -43.21915892803919 -22.91243292374403, -43.219206617928535 -22.912623312454507, -43.21927273953498 -22.91280810996473, -43.219356656071305 -22.91298553657365, -43.2194575593754 -22.91315388356604, -43.21957447769328 -22.913311529668327, -43.21970628503763 -22.913456956662372, -43.21985171203168 -22.913588764006725, -43.220009358133964 -22.913705682324604, -43.220177705126346 -22.913806585628695, -43.22035513173527 -22.91389050216502, -43.22053992924549 -22.913956623771462, -43.22073031795597 -22.914004313660804, -43.22092446431934 -22.914033112553344, -43.2211204986 -22.914042743099998, -43.221316532880664 -22.914033112553344, -43.221510679244034 -22.914004313660804, -43.22170106795451 -22.913956623771462, -43.221885865464735 -22.91389050216502, -43.222063292073656 -22.913806585628695, -43.22223163906604 -22.913705682324604, -43.222389285168326 -22.913588764006725, -43.22253471216237 -22.913456956662372, -43.222666519506724 -22.913311529668327, -43.2227834378246 -22.91315388356604, -43.2228843411287 -22.91298553657365, -43.22296825766502 -22.91280810996473, -43.22303437927147 -22.912623312454507, -43.22308206916081 -22.91243292374403, -43.22311086805335 -22.912238777380658, -43.223120498600004 -22.9120427431, -43.22311086805335 -22.91184670881934, -43.22308206916081 -22.911652562455966, -43.22303437927147 -22.91146217374549, -43.22296825766502 -22.91127737623527, -43.2228843411287 -22.911099949626347, -43.2227834378246 -22.91093160263396, -43.222666519506724 -22.91077395653167, -43.22253471216237 -22.910628529537625, -43.222389285168326 -22.910496722193272, -43.22223163906604 -22.910379803875394, -43.222063292073656 -22.910278900571303, -43.221885865464735 -22.910194984034977, -43.22170106795451 -22.910128862428536, -43.221510679244034 -22.910081172539194, -43.221316532880664 -22.910052373646653, -43.2211204986 -22.9100427431, -43.22092446431934 -22.910052373646653, -43.22073031795597 -22.910081172539194, -43.22053992924549 -22.910128862428536, -43.22035513173527 -22.910194984034977, -43.220177705126346 -22.910278900571303, -43.220009358133964 -22.910379803875394, -43.21985171203168 -22.910496722193272, -43.21970628503763 -22.910628529537625, -43.21957447769328 -22.91077395653167, -43.2194575593754 -22.91093160263396, -43.219356656071305 -22.911099949626347, -43.21927273953498 -22.91127737623527, -43.219206617928535 -22.91146217374549, -43.21915892803919 -22.911652562455966, -43.219130129146656 -22.91184670881934, -43.2191204986 -22.9120427431))" +000070,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +000071,Tijuca,Grande Tijuca,88a8a06163fffff,TRUE,44,-22.9209589,-43.22230828,PC,G,Canal do Mangue,"POLYGON ((-43.2203082792 -22.9209589031, -43.220317909746655 -22.92115493738066, -43.22034670863919 -22.921349083744033, -43.22039439852853 -22.92153947245451, -43.22046052013498 -22.92172426996473, -43.220544436671304 -22.921901696573652, -43.2206453399754 -22.92207004356604, -43.22076225829328 -22.92222768966833, -43.22089406563763 -22.922373116662374, -43.221039492631675 -22.922504924006727, -43.22119713873396 -22.922621842324606, -43.221365485726345 -22.922722745628697, -43.221542912335266 -22.922806662165023, -43.22172770984549 -22.922872783771464, -43.22191809855597 -22.922920473660806, -43.22211224491934 -22.922949272553346, -43.2223082792 -22.9229589031, -43.22250431348066 -22.922949272553346, -43.22269845984403 -22.922920473660806, -43.22288884855451 -22.922872783771464, -43.223073646064734 -22.922806662165023, -43.223251072673655 -22.922722745628697, -43.22341941966604 -22.922621842324606, -43.223577065768325 -22.922504924006727, -43.22372249276237 -22.922373116662374, -43.22385430010672 -22.92222768966833, -43.2239712184246 -22.92207004356604, -43.224072121728696 -22.921901696573652, -43.22415603826502 -22.92172426996473, -43.224222159871466 -22.92153947245451, -43.22426984976081 -22.921349083744033, -43.224298648653345 -22.92115493738066, -43.2243082792 -22.9209589031, -43.224298648653345 -22.92076286881934, -43.22426984976081 -22.920568722455968, -43.224222159871466 -22.920378333745493, -43.22415603826502 -22.92019353623527, -43.224072121728696 -22.92001610962635, -43.2239712184246 -22.91984776263396, -43.22385430010672 -22.919690116531672, -43.22372249276237 -22.919544689537627, -43.223577065768325 -22.919412882193274, -43.22341941966604 -22.919295963875395, -43.223251072673655 -22.919195060571305, -43.223073646064734 -22.91911114403498, -43.22288884855451 -22.919045022428538, -43.22269845984403 -22.918997332539195, -43.22250431348066 -22.918968533646655, -43.2223082792 -22.918958903100002, -43.22211224491934 -22.918968533646655, -43.22191809855597 -22.918997332539195, -43.22172770984549 -22.919045022428538, -43.221542912335266 -22.91911114403498, -43.221365485726345 -22.919195060571305, -43.22119713873396 -22.919295963875395, -43.221039492631675 -22.919412882193274, -43.22089406563763 -22.919544689537627, -43.22076225829328 -22.919690116531672, -43.2206453399754 -22.91984776263396, -43.220544436671304 -22.92001610962635, -43.22046052013498 -22.92019353623527, -43.22039439852853 -22.920378333745493, -43.22034670863919 -22.920568722455968, -43.220317909746655 -22.92076286881934, -43.2203082792 -22.9209589031))" +000072,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +000073,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +000074,Vila Isabel,Grande Tijuca,88a8a06101fffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +000075,Andaraí,Grande Tijuca,88a8a06155fffff,,,,,,,, +000077,Vila Isabel,Grande Tijuca,88a8a06155fffff,,,,,,,, +000078,São Francisco Xavier,Zona Norte,88a8a06101fffff,,,,,,,, +000079,Vila Isabel,Grande Tijuca,88a8a06151fffff,TRUE,405,-22.92125754,-43.25880707,PO,G,,"POLYGON ((-43.2568070736775 -22.9212575404012, -43.25681670422416 -22.92145357468186, -43.25684550311669 -22.921647721045233, -43.256893193006036 -22.921838109755708, -43.25695931461248 -22.92202290726593, -43.257043231148806 -22.92220033387485, -43.2571441344529 -22.92236868086724, -43.25726105277078 -22.92252632696953, -43.25739286011513 -22.922671753963574, -43.25753828710918 -22.922803561307926, -43.257695933211465 -22.922920479625805, -43.25786428020385 -22.923021382929896, -43.25804170681277 -22.923105299466222, -43.25822650432299 -22.923171421072663, -43.25841689303347 -22.923219110962005, -43.25861103939684 -22.923247909854545, -43.2588070736775 -22.9232575404012, -43.259003107958165 -22.923247909854545, -43.259197254321535 -22.923219110962005, -43.259387643032014 -22.923171421072663, -43.259572440542236 -22.923105299466222, -43.25974986715116 -22.923021382929896, -43.25991821414354 -22.922920479625805, -43.26007586024583 -22.922803561307926, -43.26022128723987 -22.922671753963574, -43.260353094584225 -22.92252632696953, -43.260470012902104 -22.92236868086724, -43.2605709162062 -22.92220033387485, -43.260654832742524 -22.92202290726593, -43.26072095434897 -22.921838109755708, -43.26076864423831 -22.921647721045233, -43.26079744313085 -22.92145357468186, -43.260807073677505 -22.9212575404012, -43.26079744313085 -22.92106150612054, -43.26076864423831 -22.920867359757167, -43.26072095434897 -22.920676971046692, -43.260654832742524 -22.92049217353647, -43.2605709162062 -22.92031474692755, -43.260470012902104 -22.92014639993516, -43.260353094584225 -22.91998875383287, -43.26022128723987 -22.919843326838826, -43.26007586024583 -22.919711519494474, -43.25991821414354 -22.919594601176595, -43.25974986715116 -22.919493697872504, -43.259572440542236 -22.919409781336178, -43.259387643032014 -22.919343659729737, -43.259197254321535 -22.919295969840395, -43.259003107958165 -22.919267170947855, -43.2588070736775 -22.9192575404012, -43.25861103939684 -22.919267170947855, -43.25841689303347 -22.919295969840395, -43.25822650432299 -22.919343659729737, -43.25804170681277 -22.919409781336178, -43.25786428020385 -22.919493697872504, -43.257695933211465 -22.919594601176595, -43.25753828710918 -22.919711519494474, -43.25739286011513 -22.919843326838826, -43.25726105277078 -22.91998875383287, -43.2571441344529 -22.92014639993516, -43.257043231148806 -22.92031474692755, -43.25695931461248 -22.92049217353647, -43.256893193006036 -22.920676971046692, -43.25684550311669 -22.920867359757167, -43.25681670422416 -22.92106150612054, -43.2568070736775 -22.9212575404012))" +000080,Engenho Novo,Zona Norte,88a8a0611bfffff,,,,,,,, +000082,Méier,Zona Norte,88a8a06027fffff,TRUE,53,-22.90377842,-43.2779202,PC,G,Canal do Cunha,"POLYGON ((-43.2759201991 -22.9037784241, -43.27592982964666 -22.90397445838066, -43.27595862853919 -22.904168604744033, -43.276006318428536 -22.904358993454508, -43.27607244003498 -22.90454379096473, -43.276156356571306 -22.904721217573652, -43.2762572598754 -22.90488956456604, -43.27637417819328 -22.90504721066833, -43.27650598553763 -22.905192637662374, -43.27665141253168 -22.905324445006727, -43.276809058633965 -22.905441363324606, -43.27697740562635 -22.905542266628697, -43.27715483223527 -22.905626183165023, -43.27733962974549 -22.905692304771463, -43.27753001845597 -22.905739994660806, -43.27772416481934 -22.905768793553346, -43.2779201991 -22.9057784241, -43.278116233380665 -22.905768793553346, -43.278310379744035 -22.905739994660806, -43.27850076845451 -22.905692304771463, -43.278685565964736 -22.905626183165023, -43.27886299257366 -22.905542266628697, -43.27903133956604 -22.905441363324606, -43.27918898566833 -22.905324445006727, -43.27933441266237 -22.905192637662374, -43.279466220006725 -22.90504721066833, -43.279583138324604 -22.90488956456604, -43.2796840416287 -22.904721217573652, -43.279767958165024 -22.90454379096473, -43.27983407977147 -22.904358993454508, -43.27988176966081 -22.904168604744033, -43.27991056855335 -22.90397445838066, -43.279920199100005 -22.9037784241, -43.27991056855335 -22.90358238981934, -43.27988176966081 -22.903388243455968, -43.27983407977147 -22.903197854745493, -43.279767958165024 -22.90301305723527, -43.2796840416287 -22.90283563062635, -43.279583138324604 -22.90266728363396, -43.279466220006725 -22.902509637531672, -43.27933441266237 -22.902364210537627, -43.27918898566833 -22.902232403193274, -43.27903133956604 -22.902115484875395, -43.27886299257366 -22.902014581571304, -43.278685565964736 -22.90193066503498, -43.27850076845451 -22.901864543428538, -43.278310379744035 -22.901816853539195, -43.278116233380665 -22.901788054646655, -43.2779201991 -22.9017784241, -43.27772416481934 -22.901788054646655, -43.27753001845597 -22.901816853539195, -43.27733962974549 -22.901864543428538, -43.27715483223527 -22.90193066503498, -43.27697740562635 -22.902014581571304, -43.276809058633965 -22.902115484875395, -43.27665141253168 -22.902232403193274, -43.27650598553763 -22.902364210537627, -43.27637417819328 -22.902509637531672, -43.2762572598754 -22.90266728363396, -43.276156356571306 -22.90283563062635, -43.27607244003498 -22.90301305723527, -43.276006318428536 -22.903197854745493, -43.27595862853919 -22.903388243455968, -43.27592982964666 -22.90358238981934, -43.2759201991 -22.9037784241))" +000083,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,152,-22.89504469,-43.29443455,PM,G,Canal do Cunha,"POLYGON ((-43.2924345485 -22.8950446886, -43.292444179046655 -22.895240722880658, -43.29247297793919 -22.89543486924403, -43.29252066782853 -22.895625257954507, -43.29258678943498 -22.89581005546473, -43.292670705971304 -22.89598748207365, -43.2927716092754 -22.89615582906604, -43.29288852759328 -22.896313475168327, -43.29302033493763 -22.896458902162372, -43.293165761931675 -22.896590709506725, -43.29332340803396 -22.896707627824604, -43.293491755026345 -22.896808531128695, -43.293669181635266 -22.89689244766502, -43.29385397914549 -22.89695856927146, -43.29404436785597 -22.897006259160804, -43.29423851421934 -22.897035058053344, -43.2944345485 -22.897044688599998, -43.29463058278066 -22.897035058053344, -43.29482472914403 -22.897006259160804, -43.29501511785451 -22.89695856927146, -43.295199915364734 -22.89689244766502, -43.295377341973655 -22.896808531128695, -43.29554568896604 -22.896707627824604, -43.295703335068325 -22.896590709506725, -43.29584876206237 -22.896458902162372, -43.29598056940672 -22.896313475168327, -43.2960974877246 -22.89615582906604, -43.296198391028696 -22.89598748207365, -43.29628230756502 -22.89581005546473, -43.296348429171466 -22.895625257954507, -43.29639611906081 -22.89543486924403, -43.296424917953345 -22.895240722880658, -43.2964345485 -22.8950446886, -43.296424917953345 -22.89484865431934, -43.29639611906081 -22.894654507955966, -43.296348429171466 -22.89446411924549, -43.29628230756502 -22.89427932173527, -43.296198391028696 -22.894101895126347, -43.2960974877246 -22.89393354813396, -43.29598056940672 -22.89377590203167, -43.29584876206237 -22.893630475037625, -43.295703335068325 -22.893498667693272, -43.29554568896604 -22.893381749375393, -43.295377341973655 -22.893280846071303, -43.295199915364734 -22.893196929534977, -43.29501511785451 -22.893130807928536, -43.29482472914403 -22.893083118039193, -43.29463058278066 -22.893054319146653, -43.2944345485 -22.8930446886, -43.29423851421934 -22.893054319146653, -43.29404436785597 -22.893083118039193, -43.29385397914549 -22.893130807928536, -43.293669181635266 -22.893196929534977, -43.293491755026345 -22.893280846071303, -43.29332340803396 -22.893381749375393, -43.293165761931675 -22.893498667693272, -43.29302033493763 -22.893630475037625, -43.29288852759328 -22.89377590203167, -43.2927716092754 -22.89393354813396, -43.292670705971304 -22.894101895126347, -43.29258678943498 -22.89427932173527, -43.29252066782853 -22.89446411924549, -43.29247297793919 -22.894654507955966, -43.292444179046655 -22.89484865431934, -43.2924345485 -22.8950446886))" +000085,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +000086,Méier,Zona Norte,88a8a0603dfffff,,,,,,,, +000087,Todos os Santos,Zona Norte,88a8a061c9fffff,,,,,,,, +000088,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +000089,Pilares,Zona Norte,88a8a061c3fffff,,,,,,,, +000090,Todos os Santos,Zona Norte,88a8a061c1fffff,,,,,,,, +000092,Benfica,Centro,88a8a06135fffff,TRUE,268,-22.88667197,-43.23212286,PC,G,Canal do Cunha,"POLYGON ((-43.2301228642 -22.8866719722, -43.230132494746655 -22.886868006480658, -43.23016129363919 -22.88706215284403, -43.230208983528534 -22.887252541554506, -43.23027510513498 -22.88743733906473, -43.230359021671305 -22.88761476567365, -43.2304599249754 -22.88778311266604, -43.23057684329328 -22.887940758768327, -43.23070865063763 -22.888086185762372, -43.230854077631676 -22.888217993106725, -43.231011723733964 -22.888334911424604, -43.231180070726346 -22.888435814728695, -43.23135749733527 -22.88851973126502, -43.23154229484549 -22.88858585287146, -43.23173268355597 -22.888633542760804, -43.23192682991934 -22.888662341653344, -43.2321228642 -22.888671972199997, -43.23231889848066 -22.888662341653344, -43.23251304484403 -22.888633542760804, -43.23270343355451 -22.88858585287146, -43.232888231064734 -22.88851973126502, -43.233065657673656 -22.888435814728695, -43.23323400466604 -22.888334911424604, -43.233391650768326 -22.888217993106725, -43.23353707776237 -22.888086185762372, -43.233668885106724 -22.887940758768327, -43.2337858034246 -22.88778311266604, -43.2338867067287 -22.88761476567365, -43.23397062326502 -22.88743733906473, -43.23403674487147 -22.887252541554506, -43.23408443476081 -22.88706215284403, -43.234113233653346 -22.886868006480658, -43.2341228642 -22.8866719722, -43.234113233653346 -22.88647593791934, -43.23408443476081 -22.886281791555966, -43.23403674487147 -22.88609140284549, -43.23397062326502 -22.88590660533527, -43.2338867067287 -22.885729178726347, -43.2337858034246 -22.885560831733958, -43.233668885106724 -22.88540318563167, -43.23353707776237 -22.885257758637625, -43.233391650768326 -22.885125951293272, -43.23323400466604 -22.885009032975393, -43.233065657673656 -22.884908129671302, -43.232888231064734 -22.884824213134976, -43.23270343355451 -22.884758091528536, -43.23251304484403 -22.884710401639193, -43.23231889848066 -22.884681602746653, -43.2321228642 -22.8846719722, -43.23192682991934 -22.884681602746653, -43.23173268355597 -22.884710401639193, -43.23154229484549 -22.884758091528536, -43.23135749733527 -22.884824213134976, -43.231180070726346 -22.884908129671302, -43.231011723733964 -22.885009032975393, -43.230854077631676 -22.885125951293272, -43.23070865063763 -22.885257758637625, -43.23057684329328 -22.88540318563167, -43.2304599249754 -22.885560831733958, -43.230359021671305 -22.885729178726347, -43.23027510513498 -22.88590660533527, -43.230208983528534 -22.88609140284549, -43.23016129363919 -22.886281791555966, -43.230132494746655 -22.88647593791934, -43.2301228642 -22.8866719722))" +000093,Benfica,Centro,88a8a06131fffff,,,,,,,, +000094,São Cristóvão,Centro,88a8a0612bfffff,,,,,,,, +000095,Laranjeiras,Zona Sul,88a8a078a3fffff,,,,,,,, +000096,Laranjeiras,Zona Sul,88a8a078b5fffff,,,,,,,, +000097,Laranjeiras,Zona Sul,88a8a078b5fffff,,,,,,,, +000098,Catumbi,Centro,88a8a06a5dfffff,,,,,,,, +000099,Catumbi,Centro,88a8a06a51fffff,,,,,,,, +000100,Cidade Nova,Centro,88a8a06a51fffff,,,,,,,, +000101,Centro,Centro,88a8a06a53fffff,,,,,,,, +000102,São Cristóvão,Centro,88a8a0612dfffff,,,,,,,, +000103,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +000104,São Cristóvão,Centro,88a8a0612dfffff,,,,,,,, +000105,Ramos,Zona Norte,88a8a061a1fffff,,,,,,,, +000106,Ramos,Zona Norte,88a8a061a3fffff,,,,,,,, +000107,Olaria,Zona Norte,88a8a061b5fffff,,,,,,,, +000108,Glória,Centro,88a8a06a0dfffff,,,,,,,, +000109,Penha,Zona Norte,88a8a061b5fffff,TRUE,354,-22.84177794,-43.27313876,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2711387611 -22.841777938, -43.271148391646655 -22.84197397228066, -43.27117719053919 -22.842168118644032, -43.271224880428534 -22.842358507354508, -43.27129100203498 -22.84254330486473, -43.271374918571304 -22.84272073147365, -43.2714758218754 -22.84288907846604, -43.27159274019328 -22.843046724568328, -43.27172454753763 -22.843192151562373, -43.271869974531675 -22.843323958906726, -43.27202762063396 -22.843440877224605, -43.272195967626345 -22.843541780528696, -43.27237339423527 -22.843625697065022, -43.27255819174549 -22.843691818671463, -43.27274858045597 -22.843739508560805, -43.27294272681934 -22.843768307453345, -43.2731387611 -22.843777938, -43.27333479538066 -22.843768307453345, -43.27352894174403 -22.843739508560805, -43.27371933045451 -22.843691818671463, -43.273904127964734 -22.843625697065022, -43.274081554573655 -22.843541780528696, -43.27424990156604 -22.843440877224605, -43.274407547668325 -22.843323958906726, -43.27455297466237 -22.843192151562373, -43.27468478200672 -22.843046724568328, -43.2748017003246 -22.84288907846604, -43.274902603628696 -22.84272073147365, -43.27498652016502 -22.84254330486473, -43.27505264177147 -22.842358507354508, -43.27510033166081 -22.842168118644032, -43.275129130553346 -22.84197397228066, -43.2751387611 -22.841777938, -43.275129130553346 -22.84158190371934, -43.27510033166081 -22.841387757355967, -43.27505264177147 -22.841197368645492, -43.27498652016502 -22.84101257113527, -43.274902603628696 -22.84083514452635, -43.2748017003246 -22.84066679753396, -43.27468478200672 -22.84050915143167, -43.27455297466237 -22.840363724437626, -43.274407547668325 -22.840231917093273, -43.27424990156604 -22.840114998775395, -43.274081554573655 -22.840014095471304, -43.273904127964734 -22.839930178934978, -43.27371933045451 -22.839864057328537, -43.27352894174403 -22.839816367439195, -43.27333479538066 -22.839787568546654, -43.2731387611 -22.839777938, -43.27294272681934 -22.839787568546654, -43.27274858045597 -22.839816367439195, -43.27255819174549 -22.839864057328537, -43.27237339423527 -22.839930178934978, -43.272195967626345 -22.840014095471304, -43.27202762063396 -22.840114998775395, -43.271869974531675 -22.840231917093273, -43.27172454753763 -22.840363724437626, -43.27159274019328 -22.84050915143167, -43.2714758218754 -22.84066679753396, -43.271374918571304 -22.84083514452635, -43.27129100203498 -22.84101257113527, -43.271224880428534 -22.841197368645492, -43.27117719053919 -22.841387757355967, -43.271148391646655 -22.84158190371934, -43.2711387611 -22.841777938))" +000111,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +000112,Humaitá,Zona Sul,88a8a0788bfffff,TRUE,91,-22.96221596,-43.20386245,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2018624531 -22.9622159606, -43.201872083646656 -22.962411994880657, -43.20190088253919 -22.96260614124403, -43.201948572428535 -22.962796529954506, -43.20201469403498 -22.96298132746473, -43.202098610571305 -22.96315875407365, -43.2021995138754 -22.96332710106604, -43.20231643219328 -22.963484747168327, -43.20244823953763 -22.963630174162372, -43.202593666531676 -22.963761981506725, -43.202751312633964 -22.963878899824604, -43.202919659626346 -22.963979803128694, -43.20309708623527 -22.96406371966502, -43.20328188374549 -22.96412984127146, -43.20347227245597 -22.964177531160804, -43.20366641881934 -22.964206330053344, -43.2038624531 -22.964215960599997, -43.204058487380664 -22.964206330053344, -43.204252633744034 -22.964177531160804, -43.20444302245451 -22.96412984127146, -43.204627819964735 -22.96406371966502, -43.204805246573656 -22.963979803128694, -43.20497359356604 -22.963878899824604, -43.205131239668326 -22.963761981506725, -43.20527666666237 -22.963630174162372, -43.205408474006724 -22.963484747168327, -43.2055253923246 -22.96332710106604, -43.2056262956287 -22.96315875407365, -43.20571021216502 -22.96298132746473, -43.20577633377147 -22.962796529954506, -43.20582402366081 -22.96260614124403, -43.20585282255335 -22.962411994880657, -43.2058624531 -22.9622159606, -43.20585282255335 -22.96201992631934, -43.20582402366081 -22.961825779955966, -43.20577633377147 -22.96163539124549, -43.20571021216502 -22.961450593735268, -43.2056262956287 -22.961273167126347, -43.2055253923246 -22.961104820133958, -43.205408474006724 -22.96094717403167, -43.20527666666237 -22.960801747037625, -43.205131239668326 -22.960669939693272, -43.20497359356604 -22.960553021375393, -43.204805246573656 -22.960452118071302, -43.204627819964735 -22.960368201534976, -43.20444302245451 -22.960302079928535, -43.204252633744034 -22.960254390039193, -43.204058487380664 -22.960225591146653, -43.2038624531 -22.9602159606, -43.20366641881934 -22.960225591146653, -43.20347227245597 -22.960254390039193, -43.20328188374549 -22.960302079928535, -43.20309708623527 -22.960368201534976, -43.202919659626346 -22.960452118071302, -43.202751312633964 -22.960553021375393, -43.202593666531676 -22.960669939693272, -43.20244823953763 -22.960801747037625, -43.20231643219328 -22.96094717403167, -43.2021995138754 -22.961104820133958, -43.202098610571305 -22.961273167126347, -43.20201469403498 -22.961450593735268, -43.201948572428535 -22.96163539124549, -43.20190088253919 -22.961825779955966, -43.201872083646656 -22.96201992631934, -43.2018624531 -22.9622159606))" +000113,Lagoa,Zona Sul,88a8a078d5fffff,TRUE,438,-22.962644,-43.210734,PO,ZS,,"POLYGON ((-43.208734 -22.962644, -43.20874363054666 -22.96284003428066, -43.20877242943919 -22.963034180644033, -43.208820119328536 -22.96322456935451, -43.20888624093498 -22.96340936686473, -43.208970157471306 -22.963586793473652, -43.2090710607754 -22.96375514046604, -43.20918797909328 -22.96391278656833, -43.20931978643763 -22.964058213562375, -43.20946521343168 -22.964190020906727, -43.209622859533965 -22.964306939224606, -43.20979120652635 -22.964407842528697, -43.20996863313527 -22.964491759065023, -43.21015343064549 -22.964557880671464, -43.21034381935597 -22.964605570560806, -43.21053796571934 -22.964634369453346, -43.210734 -22.964644, -43.210930034280665 -22.964634369453346, -43.211124180644035 -22.964605570560806, -43.21131456935451 -22.964557880671464, -43.211499366864736 -22.964491759065023, -43.21167679347366 -22.964407842528697, -43.21184514046604 -22.964306939224606, -43.21200278656833 -22.964190020906727, -43.21214821356237 -22.964058213562375, -43.212280020906725 -22.96391278656833, -43.212396939224604 -22.96375514046604, -43.2124978425287 -22.963586793473652, -43.212581759065024 -22.96340936686473, -43.21264788067147 -22.96322456935451, -43.21269557056081 -22.963034180644033, -43.21272436945335 -22.96284003428066, -43.212734000000005 -22.962644, -43.21272436945335 -22.962447965719342, -43.21269557056081 -22.96225381935597, -43.21264788067147 -22.962063430645493, -43.212581759065024 -22.96187863313527, -43.2124978425287 -22.96170120652635, -43.212396939224604 -22.96153285953396, -43.212280020906725 -22.961375213431673, -43.21214821356237 -22.961229786437627, -43.21200278656833 -22.961097979093275, -43.21184514046604 -22.960981060775396, -43.21167679347366 -22.960880157471305, -43.211499366864736 -22.96079624093498, -43.21131456935451 -22.960730119328538, -43.211124180644035 -22.960682429439196, -43.210930034280665 -22.960653630546656, -43.210734 -22.960644000000002, -43.21053796571934 -22.960653630546656, -43.21034381935597 -22.960682429439196, -43.21015343064549 -22.960730119328538, -43.20996863313527 -22.96079624093498, -43.20979120652635 -22.960880157471305, -43.209622859533965 -22.960981060775396, -43.20946521343168 -22.961097979093275, -43.20931978643763 -22.961229786437627, -43.20918797909328 -22.961375213431673, -43.2090710607754 -22.96153285953396, -43.208970157471306 -22.96170120652635, -43.20888624093498 -22.96187863313527, -43.208820119328536 -22.962063430645493, -43.20877242943919 -22.96225381935597, -43.20874363054666 -22.962447965719342, -43.208734 -22.962644))" +000114,Lagoa,Zona Sul,88a8a078d1fffff,TRUE,89,-22.96450343,-43.21527401,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2132740143 -22.9645034326, -43.213283644846655 -22.96469946688066, -43.21331244373919 -22.964893613244033, -43.213360133628534 -22.96508400195451, -43.21342625523498 -22.96526879946473, -43.213510171771304 -22.965446226073652, -43.2136110750754 -22.96561457306604, -43.21372799339328 -22.96577221916833, -43.21385980073763 -22.965917646162374, -43.214005227731676 -22.966049453506727, -43.21416287383396 -22.966166371824606, -43.214331220826345 -22.966267275128697, -43.21450864743527 -22.966351191665023, -43.21469344494549 -22.966417313271464, -43.21488383365597 -22.966465003160806, -43.21507798001934 -22.966493802053346, -43.2152740143 -22.9665034326, -43.21547004858066 -22.966493802053346, -43.21566419494403 -22.966465003160806, -43.21585458365451 -22.966417313271464, -43.216039381164734 -22.966351191665023, -43.216216807773655 -22.966267275128697, -43.21638515476604 -22.966166371824606, -43.216542800868325 -22.966049453506727, -43.21668822786237 -22.965917646162374, -43.21682003520672 -22.96577221916833, -43.2169369535246 -22.96561457306604, -43.217037856828696 -22.965446226073652, -43.21712177336502 -22.96526879946473, -43.21718789497147 -22.96508400195451, -43.21723558486081 -22.964893613244033, -43.217264383753346 -22.96469946688066, -43.2172740143 -22.9645034326, -43.217264383753346 -22.96430739831934, -43.21723558486081 -22.96411325195597, -43.21718789497147 -22.963922863245493, -43.21712177336502 -22.96373806573527, -43.217037856828696 -22.96356063912635, -43.2169369535246 -22.96339229213396, -43.21682003520672 -22.963234646031673, -43.21668822786237 -22.963089219037627, -43.216542800868325 -22.962957411693274, -43.21638515476604 -22.962840493375396, -43.216216807773655 -22.962739590071305, -43.216039381164734 -22.96265567353498, -43.21585458365451 -22.962589551928538, -43.21566419494403 -22.962541862039195, -43.21547004858066 -22.962513063146655, -43.2152740143 -22.962503432600002, -43.21507798001934 -22.962513063146655, -43.21488383365597 -22.962541862039195, -43.21469344494549 -22.962589551928538, -43.21450864743527 -22.96265567353498, -43.214331220826345 -22.962739590071305, -43.21416287383396 -22.962840493375396, -43.214005227731676 -22.962957411693274, -43.21385980073763 -22.963089219037627, -43.21372799339328 -22.963234646031673, -43.2136110750754 -22.96339229213396, -43.213510171771304 -22.96356063912635, -43.21342625523498 -22.96373806573527, -43.213360133628534 -22.963922863245493, -43.21331244373919 -22.96411325195597, -43.213283644846655 -22.96430739831934, -43.2132740143 -22.9645034326))" +000115,Lagoa,Zona Sul,88a8a078d1fffff,,,,,,,, +000116,Lagoa,Zona Sul,88a8a07ab7fffff,,,,,,,, +000117,Gávea,Zona Sul,88a8a078d9fffff,TRUE,90,-22.97347927,-43.22592556,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2239255605 -22.9734792708, -43.22393519104666 -22.973675305080658, -43.22396398993919 -22.97386945144403, -43.224011679828536 -22.974059840154506, -43.22407780143498 -22.97424463766473, -43.224161717971306 -22.97442206427365, -43.2242626212754 -22.97459041126604, -43.22437953959328 -22.974748057368327, -43.22451134693763 -22.974893484362372, -43.22465677393168 -22.975025291706725, -43.224814420033965 -22.975142210024604, -43.22498276702635 -22.975243113328695, -43.22516019363527 -22.97532702986502, -43.22534499114549 -22.97539315147146, -43.22553537985597 -22.975440841360804, -43.22572952621934 -22.975469640253344, -43.2259255605 -22.975479270799998, -43.226121594780665 -22.975469640253344, -43.226315741144035 -22.975440841360804, -43.22650612985451 -22.97539315147146, -43.226690927364736 -22.97532702986502, -43.22686835397366 -22.975243113328695, -43.22703670096604 -22.975142210024604, -43.22719434706833 -22.975025291706725, -43.22733977406237 -22.974893484362372, -43.227471581406725 -22.974748057368327, -43.227588499724604 -22.97459041126604, -43.2276894030287 -22.97442206427365, -43.227773319565024 -22.97424463766473, -43.22783944117147 -22.974059840154506, -43.22788713106081 -22.97386945144403, -43.22791592995335 -22.973675305080658, -43.227925560500005 -22.9734792708, -43.22791592995335 -22.97328323651934, -43.22788713106081 -22.973089090155966, -43.22783944117147 -22.97289870144549, -43.227773319565024 -22.97271390393527, -43.2276894030287 -22.972536477326347, -43.227588499724604 -22.972368130333958, -43.227471581406725 -22.97221048423167, -43.22733977406237 -22.972065057237625, -43.22719434706833 -22.971933249893272, -43.22703670096604 -22.971816331575393, -43.22686835397366 -22.971715428271303, -43.226690927364736 -22.971631511734977, -43.22650612985451 -22.971565390128536, -43.226315741144035 -22.971517700239193, -43.226121594780665 -22.971488901346653, -43.2259255605 -22.9714792708, -43.22572952621934 -22.971488901346653, -43.22553537985597 -22.971517700239193, -43.22534499114549 -22.971565390128536, -43.22516019363527 -22.971631511734977, -43.22498276702635 -22.971715428271303, -43.224814420033965 -22.971816331575393, -43.22465677393168 -22.971933249893272, -43.22451134693763 -22.972065057237625, -43.22437953959328 -22.97221048423167, -43.2242626212754 -22.972368130333958, -43.224161717971306 -22.972536477326347, -43.22407780143498 -22.97271390393527, -43.224011679828536 -22.97289870144549, -43.22396398993919 -22.973089090155966, -43.22393519104666 -22.97328323651934, -43.2239255605 -22.9734792708))" +000118,Lagoa,Zona Sul,88a8a078c1fffff,TRUE,338,-22.97734814,-43.19794411,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.1959441127 -22.9773481427, -43.195953743246655 -22.977544176980658, -43.19598254213919 -22.97773832334403, -43.196030232028534 -22.977928712054506, -43.19609635363498 -22.97811350956473, -43.196180270171304 -22.97829093617365, -43.1962811734754 -22.97845928316604, -43.19639809179328 -22.978616929268327, -43.19652989913763 -22.978762356262372, -43.196675326131675 -22.978894163606725, -43.19683297223396 -22.979011081924604, -43.197001319226345 -22.979111985228695, -43.19717874583527 -22.97919590176502, -43.19736354334549 -22.97926202337146, -43.19755393205597 -22.979309713260804, -43.19774807841934 -22.979338512153344, -43.1979441127 -22.979348142699997, -43.19814014698066 -22.979338512153344, -43.19833429334403 -22.979309713260804, -43.19852468205451 -22.97926202337146, -43.198709479564734 -22.97919590176502, -43.198886906173655 -22.979111985228695, -43.19905525316604 -22.979011081924604, -43.199212899268325 -22.978894163606725, -43.19935832626237 -22.978762356262372, -43.19949013360672 -22.978616929268327, -43.1996070519246 -22.97845928316604, -43.199707955228696 -22.97829093617365, -43.19979187176502 -22.97811350956473, -43.19985799337147 -22.977928712054506, -43.19990568326081 -22.97773832334403, -43.199934482153346 -22.977544176980658, -43.1999441127 -22.9773481427, -43.199934482153346 -22.97715210841934, -43.19990568326081 -22.976957962055966, -43.19985799337147 -22.97676757334549, -43.19979187176502 -22.97658277583527, -43.199707955228696 -22.976405349226347, -43.1996070519246 -22.976237002233958, -43.19949013360672 -22.97607935613167, -43.19935832626237 -22.975933929137625, -43.199212899268325 -22.975802121793272, -43.19905525316604 -22.975685203475393, -43.198886906173655 -22.975584300171302, -43.198709479564734 -22.975500383634976, -43.19852468205451 -22.975434262028536, -43.19833429334403 -22.975386572139193, -43.19814014698066 -22.975357773246653, -43.1979441127 -22.9753481427, -43.19774807841934 -22.975357773246653, -43.19755393205597 -22.975386572139193, -43.19736354334549 -22.975434262028536, -43.19717874583527 -22.975500383634976, -43.197001319226345 -22.975584300171302, -43.19683297223396 -22.975685203475393, -43.196675326131675 -22.975802121793272, -43.19652989913763 -22.975933929137625, -43.19639809179328 -22.97607935613167, -43.1962811734754 -22.976237002233958, -43.196180270171304 -22.976405349226347, -43.19609635363498 -22.97658277583527, -43.196030232028534 -22.97676757334549, -43.19598254213919 -22.976957962055966, -43.195953743246655 -22.97715210841934, -43.1959441127 -22.9773481427))" +000119,Lagoa,Zona Sul,88a8a078c3fffff,TRUE,221,-22.97275468,-43.20246142,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2004614174 -22.9727546821, -43.20047104794666 -22.97295071638066, -43.20049984683919 -22.973144862744032, -43.200547536728536 -22.973335251454507, -43.20061365833498 -22.97352004896473, -43.200697574871306 -22.97369747557365, -43.2007984781754 -22.97386582256604, -43.20091539649328 -22.974023468668328, -43.20104720383763 -22.974168895662373, -43.20119263083168 -22.974300703006726, -43.201350276933965 -22.974417621324605, -43.20151862392635 -22.974518524628696, -43.20169605053527 -22.974602441165022, -43.20188084804549 -22.974668562771463, -43.20207123675597 -22.974716252660805, -43.20226538311934 -22.974745051553345, -43.2024614174 -22.9747546821, -43.202657451680665 -22.974745051553345, -43.202851598044035 -22.974716252660805, -43.20304198675451 -22.974668562771463, -43.203226784264736 -22.974602441165022, -43.20340421087366 -22.974518524628696, -43.20357255786604 -22.974417621324605, -43.20373020396833 -22.974300703006726, -43.20387563096237 -22.974168895662373, -43.204007438306725 -22.974023468668328, -43.204124356624604 -22.97386582256604, -43.2042252599287 -22.97369747557365, -43.204309176465024 -22.97352004896473, -43.20437529807147 -22.973335251454507, -43.20442298796081 -22.973144862744032, -43.20445178685335 -22.97295071638066, -43.204461417400005 -22.9727546821, -43.20445178685335 -22.97255864781934, -43.20442298796081 -22.972364501455967, -43.20437529807147 -22.972174112745492, -43.204309176465024 -22.97198931523527, -43.2042252599287 -22.97181188862635, -43.204124356624604 -22.97164354163396, -43.204007438306725 -22.97148589553167, -43.20387563096237 -22.971340468537626, -43.20373020396833 -22.971208661193273, -43.20357255786604 -22.971091742875394, -43.20340421087366 -22.970990839571304, -43.203226784264736 -22.970906923034978, -43.20304198675451 -22.970840801428537, -43.202851598044035 -22.970793111539194, -43.202657451680665 -22.970764312646654, -43.2024614174 -22.9707546821, -43.20226538311934 -22.970764312646654, -43.20207123675597 -22.970793111539194, -43.20188084804549 -22.970840801428537, -43.20169605053527 -22.970906923034978, -43.20151862392635 -22.970990839571304, -43.201350276933965 -22.971091742875394, -43.20119263083168 -22.971208661193273, -43.20104720383763 -22.971340468537626, -43.20091539649328 -22.97148589553167, -43.2007984781754 -22.97164354163396, -43.200697574871306 -22.97181188862635, -43.20061365833498 -22.97198931523527, -43.200547536728536 -22.972174112745492, -43.20049984683919 -22.972364501455967, -43.20047104794666 -22.97255864781934, -43.2004614174 -22.9727546821))" +000120,São Conrado,Zona Sul,88a8a0634dfffff,TRUE,332,-22.99343184,-43.25527551,PO,ZS,Praia de Sao Conrado,"POLYGON ((-43.253275508099996 -22.9934318419, -43.25328513864665 -22.99362787618066, -43.25331393753919 -22.993822022544034, -43.25336162742853 -22.99401241125451, -43.25342774903498 -22.99419720876473, -43.2535116655713 -22.994374635373653, -43.2536125688754 -22.994542982366042, -43.253729487193276 -22.99470062846833, -43.25386129453763 -22.994846055462375, -43.254006721531674 -22.994977862806728, -43.25416436763396 -22.995094781124607, -43.254332714626344 -22.995195684428698, -43.254510141235265 -22.995279600965024, -43.25469493874549 -22.995345722571464, -43.254885327455966 -22.995393412460807, -43.255079473819336 -22.995422211353347, -43.2552755081 -22.9954318419, -43.25547154238066 -22.995422211353347, -43.25566568874403 -22.995393412460807, -43.25585607745451 -22.995345722571464, -43.25604087496473 -22.995279600965024, -43.256218301573654 -22.995195684428698, -43.256386648566036 -22.995094781124607, -43.25654429466832 -22.994977862806728, -43.25668972166237 -22.994846055462375, -43.25682152900672 -22.99470062846833, -43.2569384473246 -22.994542982366042, -43.257039350628695 -22.994374635373653, -43.25712326716502 -22.99419720876473, -43.257189388771465 -22.99401241125451, -43.25723707866081 -22.993822022544034, -43.257265877553344 -22.99362787618066, -43.2572755081 -22.9934318419, -43.257265877553344 -22.993235807619342, -43.25723707866081 -22.99304166125597, -43.257189388771465 -22.992851272545494, -43.25712326716502 -22.99266647503527, -43.257039350628695 -22.99248904842635, -43.2569384473246 -22.99232070143396, -43.25682152900672 -22.992163055331673, -43.25668972166237 -22.992017628337628, -43.25654429466832 -22.991885820993275, -43.256386648566036 -22.991768902675396, -43.256218301573654 -22.991667999371305, -43.25604087496473 -22.99158408283498, -43.25585607745451 -22.99151796122854, -43.25566568874403 -22.991470271339196, -43.25547154238066 -22.991441472446656, -43.2552755081 -22.991431841900003, -43.255079473819336 -22.991441472446656, -43.254885327455966 -22.991470271339196, -43.25469493874549 -22.99151796122854, -43.254510141235265 -22.99158408283498, -43.254332714626344 -22.991667999371305, -43.25416436763396 -22.991768902675396, -43.254006721531674 -22.991885820993275, -43.25386129453763 -22.992017628337628, -43.253729487193276 -22.992163055331673, -43.2536125688754 -22.99232070143396, -43.2535116655713 -22.99248904842635, -43.25342774903498 -22.99266647503527, -43.25336162742853 -22.992851272545494, -43.25331393753919 -22.99304166125597, -43.25328513864665 -22.993235807619342, -43.253275508099996 -22.9934318419))" +000121,Leblon,Zona Sul,88a8a07ab3fffff,TRUE,335,-22.98280117,-43.2255707,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2235706998 -22.9828011684, -43.22358033034666 -22.98299720268066, -43.22360912923919 -22.983191349044034, -43.223656819128536 -22.98338173775451, -43.22372294073498 -22.983566535264732, -43.223806857271306 -22.983743961873653, -43.2239077605754 -22.983912308866042, -43.22402467889328 -22.98406995496833, -43.22415648623763 -22.984215381962375, -43.22430191323168 -22.984347189306728, -43.224459559333965 -22.984464107624607, -43.22462790632635 -22.984565010928698, -43.22480533293527 -22.984648927465024, -43.22499013044549 -22.984715049071465, -43.22518051915597 -22.984762738960807, -43.22537466551934 -22.984791537853347, -43.2255706998 -22.9848011684, -43.225766734080665 -22.984791537853347, -43.225960880444035 -22.984762738960807, -43.226151269154514 -22.984715049071465, -43.226336066664736 -22.984648927465024, -43.22651349327366 -22.984565010928698, -43.22668184026604 -22.984464107624607, -43.22683948636833 -22.984347189306728, -43.22698491336237 -22.984215381962375, -43.227116720706725 -22.98406995496833, -43.227233639024604 -22.983912308866042, -43.2273345423287 -22.983743961873653, -43.227418458865024 -22.983566535264732, -43.22748458047147 -22.98338173775451, -43.22753227036081 -22.983191349044034, -43.22756106925335 -22.98299720268066, -43.227570699800005 -22.9828011684, -43.22756106925335 -22.982605134119343, -43.22753227036081 -22.98241098775597, -43.22748458047147 -22.982220599045494, -43.227418458865024 -22.98203580153527, -43.2273345423287 -22.98185837492635, -43.227233639024604 -22.98169002793396, -43.227116720706725 -22.981532381831673, -43.22698491336237 -22.981386954837628, -43.22683948636833 -22.981255147493275, -43.22668184026604 -22.981138229175397, -43.22651349327366 -22.981037325871306, -43.226336066664736 -22.98095340933498, -43.226151269154514 -22.98088728772854, -43.225960880444035 -22.980839597839196, -43.225766734080665 -22.980810798946656, -43.2255706998 -22.980801168400003, -43.22537466551934 -22.980810798946656, -43.22518051915597 -22.980839597839196, -43.22499013044549 -22.98088728772854, -43.22480533293527 -22.98095340933498, -43.22462790632635 -22.981037325871306, -43.224459559333965 -22.981138229175397, -43.22430191323168 -22.981255147493275, -43.22415648623763 -22.981386954837628, -43.22402467889328 -22.981532381831673, -43.2239077605754 -22.98169002793396, -43.223806857271306 -22.98185837492635, -43.22372294073498 -22.98203580153527, -43.223656819128536 -22.982220599045494, -43.22360912923919 -22.98241098775597, -43.22358033034666 -22.982605134119343, -43.2235706998 -22.9828011684))" +000122,São Conrado,Zona Sul,88a8a071a3fffff,TRUE,297,-22.99775978,-43.2699781,PO,ZS,Praia de Sao Conrado,"POLYGON ((-43.2679780962 -22.9977597754, -43.267987726746654 -22.997955809680658, -43.26801652563919 -22.99814995604403, -43.26806421552853 -22.998340344754507, -43.26813033713498 -22.99852514226473, -43.2682142536713 -22.99870256887365, -43.2683151569754 -22.99887091586604, -43.268432075293276 -22.999028561968327, -43.26856388263763 -22.999173988962372, -43.268709309631674 -22.999305796306725, -43.26886695573396 -22.999422714624604, -43.269035302726344 -22.999523617928695, -43.269212729335266 -22.99960753446502, -43.26939752684549 -22.99967365607146, -43.26958791555597 -22.999721345960804, -43.26978206191934 -22.999750144853344, -43.2699780962 -22.999759775399998, -43.27017413048066 -22.999750144853344, -43.27036827684403 -22.999721345960804, -43.27055866555451 -22.99967365607146, -43.27074346306473 -22.99960753446502, -43.270920889673654 -22.999523617928695, -43.271089236666036 -22.999422714624604, -43.271246882768324 -22.999305796306725, -43.27139230976237 -22.999173988962372, -43.27152411710672 -22.999028561968327, -43.2716410354246 -22.99887091586604, -43.271741938728695 -22.99870256887365, -43.27182585526502 -22.99852514226473, -43.271891976871466 -22.998340344754507, -43.27193966676081 -22.99814995604403, -43.271968465653345 -22.997955809680658, -43.2719780962 -22.9977597754, -43.271968465653345 -22.99756374111934, -43.27193966676081 -22.997369594755966, -43.271891976871466 -22.99717920604549, -43.27182585526502 -22.99699440853527, -43.271741938728695 -22.996816981926347, -43.2716410354246 -22.99664863493396, -43.27152411710672 -22.99649098883167, -43.27139230976237 -22.996345561837625, -43.271246882768324 -22.996213754493272, -43.271089236666036 -22.996096836175393, -43.270920889673654 -22.995995932871303, -43.27074346306473 -22.995912016334977, -43.27055866555451 -22.995845894728536, -43.27036827684403 -22.995798204839193, -43.27017413048066 -22.995769405946653, -43.2699780962 -22.9957597754, -43.26978206191934 -22.995769405946653, -43.26958791555597 -22.995798204839193, -43.26939752684549 -22.995845894728536, -43.269212729335266 -22.995912016334977, -43.269035302726344 -22.995995932871303, -43.26886695573396 -22.996096836175393, -43.268709309631674 -22.996213754493272, -43.26856388263763 -22.996345561837625, -43.268432075293276 -22.99649098883167, -43.2683151569754 -22.99664863493396, -43.2682142536713 -22.996816981926347, -43.26813033713498 -22.99699440853527, -43.26806421552853 -22.99717920604549, -43.26801652563919 -22.997369594755966, -43.267987726746654 -22.99756374111934, -43.2679780962 -22.9977597754))" +000124,Centro,Centro,88a8a06a0bfffff,TRUE,65,-22.90648633,-43.18234547,PC,G,Canal do Mangue,"POLYGON ((-43.180345474 -22.9064863275, -43.180355104546656 -22.90668236178066, -43.18038390343919 -22.906876508144034, -43.180431593328535 -22.90706689685451, -43.18049771493498 -22.90725169436473, -43.180581631471306 -22.907429120973653, -43.1806825347754 -22.907597467966042, -43.18079945309328 -22.90775511406833, -43.18093126043763 -22.907900541062375, -43.18107668743168 -22.908032348406728, -43.181234333533965 -22.908149266724607, -43.18140268052635 -22.908250170028698, -43.18158010713527 -22.908334086565024, -43.18176490464549 -22.908400208171464, -43.18195529335597 -22.908447898060807, -43.18214943971934 -22.908476696953347, -43.182345474 -22.9084863275, -43.182541508280664 -22.908476696953347, -43.182735654644034 -22.908447898060807, -43.18292604335451 -22.908400208171464, -43.183110840864735 -22.908334086565024, -43.18328826747366 -22.908250170028698, -43.18345661446604 -22.908149266724607, -43.183614260568326 -22.908032348406728, -43.18375968756237 -22.907900541062375, -43.183891494906725 -22.90775511406833, -43.1840084132246 -22.907597467966042, -43.1841093165287 -22.907429120973653, -43.184193233065024 -22.90725169436473, -43.18425935467147 -22.90706689685451, -43.18430704456081 -22.906876508144034, -43.18433584345335 -22.90668236178066, -43.184345474000004 -22.9064863275, -43.18433584345335 -22.906290293219342, -43.18430704456081 -22.90609614685597, -43.18425935467147 -22.905905758145494, -43.184193233065024 -22.90572096063527, -43.1841093165287 -22.90554353402635, -43.1840084132246 -22.90537518703396, -43.183891494906725 -22.905217540931673, -43.18375968756237 -22.905072113937628, -43.183614260568326 -22.904940306593275, -43.18345661446604 -22.904823388275396, -43.18328826747366 -22.904722484971305, -43.183110840864735 -22.90463856843498, -43.18292604335451 -22.90457244682854, -43.182735654644034 -22.904524756939196, -43.182541508280664 -22.904495958046656, -43.182345474 -22.904486327500003, -43.18214943971934 -22.904495958046656, -43.18195529335597 -22.904524756939196, -43.18176490464549 -22.90457244682854, -43.18158010713527 -22.90463856843498, -43.18140268052635 -22.904722484971305, -43.181234333533965 -22.904823388275396, -43.18107668743168 -22.904940306593275, -43.18093126043763 -22.905072113937628, -43.18079945309328 -22.905217540931673, -43.1806825347754 -22.90537518703396, -43.180581631471306 -22.90554353402635, -43.18049771493498 -22.90572096063527, -43.180431593328535 -22.905905758145494, -43.18038390343919 -22.90609614685597, -43.180355104546656 -22.906290293219342, -43.180345474 -22.9064863275))" +000126,Barra da Tijuca,Barra da Tijuca,88a8a07183fffff,,,,,,,, +000127,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,TRUE,300,-23.0066226,-43.30771444,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3057144359 -23.006622597, -43.30572406644666 -23.00681863128066, -43.305752865339194 -23.007012777644032, -43.30580055522854 -23.007203166354508, -43.30586667683498 -23.00738796386473, -43.30595059337131 -23.00756539047365, -43.3060514966754 -23.00773373746604, -43.30616841499328 -23.007891383568328, -43.30630022233763 -23.008036810562373, -43.30644564933168 -23.008168617906726, -43.306603295433966 -23.008285536224605, -43.30677164242635 -23.008386439528696, -43.30694906903527 -23.008470356065022, -43.30713386654549 -23.008536477671463, -43.30732425525597 -23.008584167560805, -43.30751840161934 -23.008612966453345, -43.3077144359 -23.008622597, -43.307910470180666 -23.008612966453345, -43.308104616544036 -23.008584167560805, -43.308295005254514 -23.008536477671463, -43.30847980276474 -23.008470356065022, -43.30865722937366 -23.008386439528696, -43.30882557636604 -23.008285536224605, -43.30898322246833 -23.008168617906726, -43.30912864946237 -23.008036810562373, -43.309260456806726 -23.007891383568328, -43.309377375124605 -23.00773373746604, -43.3094782784287 -23.00756539047365, -43.309562194965025 -23.00738796386473, -43.30962831657147 -23.007203166354508, -43.30967600646081 -23.007012777644032, -43.30970480535335 -23.00681863128066, -43.309714435900005 -23.006622597, -43.30970480535335 -23.00642656271934, -43.30967600646081 -23.006232416355967, -43.30962831657147 -23.006042027645492, -43.309562194965025 -23.00585723013527, -43.3094782784287 -23.00567980352635, -43.309377375124605 -23.00551145653396, -43.309260456806726 -23.00535381043167, -43.30912864946237 -23.005208383437626, -43.30898322246833 -23.005076576093273, -43.30882557636604 -23.004959657775395, -43.30865722937366 -23.004858754471304, -43.30847980276474 -23.004774837934978, -43.308295005254514 -23.004708716328537, -43.308104616544036 -23.004661026439194, -43.307910470180666 -23.004632227546654, -43.3077144359 -23.004622597, -43.30751840161934 -23.004632227546654, -43.30732425525597 -23.004661026439194, -43.30713386654549 -23.004708716328537, -43.30694906903527 -23.004774837934978, -43.30677164242635 -23.004858754471304, -43.306603295433966 -23.004959657775395, -43.30644564933168 -23.005076576093273, -43.30630022233763 -23.005208383437626, -43.30616841499328 -23.00535381043167, -43.3060514966754 -23.00551145653396, -43.30595059337131 -23.00567980352635, -43.30586667683498 -23.00585723013527, -43.30580055522854 -23.006042027645492, -43.305752865339194 -23.006232416355967, -43.30572406644666 -23.00642656271934, -43.3057144359 -23.006622597))" +000128,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +000132,Barra da Tijuca,Barra da Tijuca,88a8a07569fffff,,,,,,,, +000134,Barra da Tijuca,Barra da Tijuca,88a8a0624dfffff,,,,,,,, +000136,Jacarepaguá,Jacarepaguá,88a8a0621bfffff,TRUE,341,-22.9637474,-43.35758052,PO,J,Arroio Fundo,"POLYGON ((-43.355580517 -22.9637474024, -43.35559014754666 -22.96394343668066, -43.35561894643919 -22.96413758304403, -43.355666636328536 -22.964327971754507, -43.35573275793498 -22.96451276926473, -43.355816674471306 -22.96469019587365, -43.3559175777754 -22.96485854286604, -43.35603449609328 -22.965016188968328, -43.35616630343763 -22.965161615962373, -43.35631173043168 -22.965293423306726, -43.356469376533965 -22.965410341624604, -43.35663772352635 -22.965511244928695, -43.35681515013527 -22.96559516146502, -43.35699994764549 -22.965661283071462, -43.35719033635597 -22.965708972960805, -43.35738448271934 -22.965737771853345, -43.357580517 -22.965747402399998, -43.357776551280665 -22.965737771853345, -43.357970697644035 -22.965708972960805, -43.358161086354514 -22.965661283071462, -43.358345883864736 -22.96559516146502, -43.35852331047366 -22.965511244928695, -43.35869165746604 -22.965410341624604, -43.35884930356833 -22.965293423306726, -43.35899473056237 -22.965161615962373, -43.359126537906725 -22.965016188968328, -43.359243456224604 -22.96485854286604, -43.3593443595287 -22.96469019587365, -43.359428276065024 -22.96451276926473, -43.35949439767147 -22.964327971754507, -43.35954208756081 -22.96413758304403, -43.35957088645335 -22.96394343668066, -43.359580517000005 -22.9637474024, -43.35957088645335 -22.96355136811934, -43.35954208756081 -22.963357221755967, -43.35949439767147 -22.96316683304549, -43.359428276065024 -22.96298203553527, -43.3593443595287 -22.962804608926348, -43.359243456224604 -22.96263626193396, -43.359126537906725 -22.96247861583167, -43.35899473056237 -22.962333188837626, -43.35884930356833 -22.962201381493273, -43.35869165746604 -22.962084463175394, -43.35852331047366 -22.961983559871303, -43.358345883864736 -22.961899643334977, -43.358161086354514 -22.961833521728536, -43.357970697644035 -22.961785831839194, -43.357776551280665 -22.961757032946654, -43.357580517 -22.9617474024, -43.35738448271934 -22.961757032946654, -43.35719033635597 -22.961785831839194, -43.35699994764549 -22.961833521728536, -43.35681515013527 -22.961899643334977, -43.35663772352635 -22.961983559871303, -43.356469376533965 -22.962084463175394, -43.35631173043168 -22.962201381493273, -43.35616630343763 -22.962333188837626, -43.35603449609328 -22.96247861583167, -43.3559175777754 -22.96263626193396, -43.355816674471306 -22.962804608926348, -43.35573275793498 -22.96298203553527, -43.355666636328536 -22.96316683304549, -43.35561894643919 -22.963357221755967, -43.35559014754666 -22.96355136811934, -43.355580517 -22.9637474024))" +000137,Penha,Zona Norte,88a8a061b5fffff,TRUE,354,-22.84177794,-43.27313876,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2711387611 -22.841777938, -43.271148391646655 -22.84197397228066, -43.27117719053919 -22.842168118644032, -43.271224880428534 -22.842358507354508, -43.27129100203498 -22.84254330486473, -43.271374918571304 -22.84272073147365, -43.2714758218754 -22.84288907846604, -43.27159274019328 -22.843046724568328, -43.27172454753763 -22.843192151562373, -43.271869974531675 -22.843323958906726, -43.27202762063396 -22.843440877224605, -43.272195967626345 -22.843541780528696, -43.27237339423527 -22.843625697065022, -43.27255819174549 -22.843691818671463, -43.27274858045597 -22.843739508560805, -43.27294272681934 -22.843768307453345, -43.2731387611 -22.843777938, -43.27333479538066 -22.843768307453345, -43.27352894174403 -22.843739508560805, -43.27371933045451 -22.843691818671463, -43.273904127964734 -22.843625697065022, -43.274081554573655 -22.843541780528696, -43.27424990156604 -22.843440877224605, -43.274407547668325 -22.843323958906726, -43.27455297466237 -22.843192151562373, -43.27468478200672 -22.843046724568328, -43.2748017003246 -22.84288907846604, -43.274902603628696 -22.84272073147365, -43.27498652016502 -22.84254330486473, -43.27505264177147 -22.842358507354508, -43.27510033166081 -22.842168118644032, -43.275129130553346 -22.84197397228066, -43.2751387611 -22.841777938, -43.275129130553346 -22.84158190371934, -43.27510033166081 -22.841387757355967, -43.27505264177147 -22.841197368645492, -43.27498652016502 -22.84101257113527, -43.274902603628696 -22.84083514452635, -43.2748017003246 -22.84066679753396, -43.27468478200672 -22.84050915143167, -43.27455297466237 -22.840363724437626, -43.274407547668325 -22.840231917093273, -43.27424990156604 -22.840114998775395, -43.274081554573655 -22.840014095471304, -43.273904127964734 -22.839930178934978, -43.27371933045451 -22.839864057328537, -43.27352894174403 -22.839816367439195, -43.27333479538066 -22.839787568546654, -43.2731387611 -22.839777938, -43.27294272681934 -22.839787568546654, -43.27274858045597 -22.839816367439195, -43.27255819174549 -22.839864057328537, -43.27237339423527 -22.839930178934978, -43.272195967626345 -22.840014095471304, -43.27202762063396 -22.840114998775395, -43.271869974531675 -22.840231917093273, -43.27172454753763 -22.840363724437626, -43.27159274019328 -22.84050915143167, -43.2714758218754 -22.84066679753396, -43.271374918571304 -22.84083514452635, -43.27129100203498 -22.84101257113527, -43.271224880428534 -22.841197368645492, -43.27117719053919 -22.841387757355967, -43.271148391646655 -22.84158190371934, -43.2711387611 -22.841777938))" +000138,Estácio,Centro,88a8a06167fffff,,,,,,,, +000139,São Cristóvão,Centro,88a8a06127fffff,,,,,,,, +000142,Mangueira,Centro,88a8a06101fffff,,,,,,,, +000143,Penha,Zona Norte,88a8a061b3fffff,TRUE,362,-22.84052846,-43.2802093,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.27820930034862 -22.84052845940852, -43.27821893089528 -22.84072449368918, -43.278247729787815 -22.840918640052553, -43.27829541967716 -22.84110902876303, -43.2783615412836 -22.84129382627325, -43.27844545781993 -22.841471252882172, -43.27854636112402 -22.84163959987456, -43.2786632794419 -22.84179724597685, -43.27879508678625 -22.841942672970895, -43.2789405137803 -22.842074480315247, -43.27909815988259 -22.842191398633126, -43.27926650687497 -22.842292301937217, -43.27944393348389 -22.842376218473543, -43.27962873099411 -22.842442340079984, -43.27981911970459 -22.842490029969326, -43.28001326606796 -22.842518828861866, -43.28020930034862 -22.84252845940852, -43.280405334629286 -22.842518828861866, -43.280599480992656 -22.842490029969326, -43.280789869703135 -22.842442340079984, -43.28097466721336 -22.842376218473543, -43.28115209382228 -22.842292301937217, -43.28132044081466 -22.842191398633126, -43.28147808691695 -22.842074480315247, -43.28162351391099 -22.841942672970895, -43.281755321255346 -22.84179724597685, -43.281872239573225 -22.84163959987456, -43.28197314287732 -22.841471252882172, -43.282057059413646 -22.84129382627325, -43.28212318102009 -22.84110902876303, -43.28217087090943 -22.840918640052553, -43.28219966980197 -22.84072449368918, -43.282209300348626 -22.84052845940852, -43.28219966980197 -22.840332425127862, -43.28217087090943 -22.84013827876449, -43.28212318102009 -22.839947890054013, -43.282057059413646 -22.83976309254379, -43.28197314287732 -22.83958566593487, -43.281872239573225 -22.83941731894248, -43.281755321255346 -22.839259672840193, -43.28162351391099 -22.839114245846147, -43.28147808691695 -22.838982438501795, -43.28132044081466 -22.838865520183916, -43.28115209382228 -22.838764616879825, -43.28097466721336 -22.8386807003435, -43.280789869703135 -22.838614578737058, -43.280599480992656 -22.838566888847716, -43.280405334629286 -22.838538089955176, -43.28020930034862 -22.838528459408522, -43.28001326606796 -22.838538089955176, -43.27981911970459 -22.838566888847716, -43.27962873099411 -22.838614578737058, -43.27944393348389 -22.8386807003435, -43.27926650687497 -22.838764616879825, -43.27909815988259 -22.838865520183916, -43.2789405137803 -22.838982438501795, -43.27879508678625 -22.839114245846147, -43.2786632794419 -22.839259672840193, -43.27854636112402 -22.83941731894248, -43.27844545781993 -22.83958566593487, -43.2783615412836 -22.83976309254379, -43.27829541967716 -22.839947890054013, -43.278247729787815 -22.84013827876449, -43.27821893089528 -22.840332425127862, -43.27820930034862 -22.84052845940852))" +000145,Manguinhos,Zona Norte,88a8a06137fffff,,,,,,,, +000146,Bonsucesso,Zona Norte,88a8a06ad3fffff,TRUE,267,-22.86370696,-43.24771386,PO,G,Rio Ramos,"POLYGON ((-43.2457138619 -22.8637069634, -43.24572349244666 -22.863902997680658, -43.245752291339194 -22.86409714404403, -43.24579998122854 -22.864287532754506, -43.24586610283498 -22.86447233026473, -43.24595001937131 -22.86464975687365, -43.2460509226754 -22.86481810386604, -43.24616784099328 -22.864975749968327, -43.24629964833763 -22.865121176962372, -43.24644507533168 -22.865252984306725, -43.246602721433966 -22.865369902624604, -43.24677106842635 -22.865470805928695, -43.24694849503527 -22.86555472246502, -43.24713329254549 -22.86562084407146, -43.24732368125597 -22.865668533960804, -43.24751782761934 -22.865697332853344, -43.2477138619 -22.865706963399997, -43.247909896180666 -22.865697332853344, -43.248104042544036 -22.865668533960804, -43.248294431254514 -22.86562084407146, -43.24847922876474 -22.86555472246502, -43.24865665537366 -22.865470805928695, -43.24882500236604 -22.865369902624604, -43.24898264846833 -22.865252984306725, -43.24912807546237 -22.865121176962372, -43.249259882806726 -22.864975749968327, -43.249376801124605 -22.86481810386604, -43.2494777044287 -22.86464975687365, -43.249561620965025 -22.86447233026473, -43.24962774257147 -22.864287532754506, -43.24967543246081 -22.86409714404403, -43.24970423135335 -22.863902997680658, -43.249713861900005 -22.8637069634, -43.24970423135335 -22.86351092911934, -43.24967543246081 -22.863316782755966, -43.24962774257147 -22.86312639404549, -43.249561620965025 -22.86294159653527, -43.2494777044287 -22.862764169926347, -43.249376801124605 -22.862595822933958, -43.249259882806726 -22.86243817683167, -43.24912807546237 -22.862292749837625, -43.24898264846833 -22.862160942493272, -43.24882500236604 -22.862044024175393, -43.24865665537366 -22.861943120871302, -43.24847922876474 -22.861859204334976, -43.248294431254514 -22.861793082728536, -43.248104042544036 -22.861745392839193, -43.247909896180666 -22.861716593946653, -43.2477138619 -22.8617069634, -43.24751782761934 -22.861716593946653, -43.24732368125597 -22.861745392839193, -43.24713329254549 -22.861793082728536, -43.24694849503527 -22.861859204334976, -43.24677106842635 -22.861943120871302, -43.246602721433966 -22.862044024175393, -43.24644507533168 -22.862160942493272, -43.24629964833763 -22.862292749837625, -43.24616784099328 -22.86243817683167, -43.2460509226754 -22.862595822933958, -43.24595001937131 -22.862764169926347, -43.24586610283498 -22.86294159653527, -43.24579998122854 -22.86312639404549, -43.245752291339194 -22.863316782755966, -43.24572349244666 -22.86351092911934, -43.2457138619 -22.8637069634))" +000147,Maré,Zona Norte,88a8a06a9bfffff,TRUE,17,-22.84651414,-43.24614291,PC,G,Rio Ramos,"POLYGON ((-43.244142914 -22.8465141438, -43.24415254454666 -22.84671017808066, -43.244181343439195 -22.846904324444033, -43.24422903332854 -22.847094713154508, -43.24429515493498 -22.84727951066473, -43.24437907147131 -22.847456937273652, -43.2444799747754 -22.84762528426604, -43.24459689309328 -22.84778293036833, -43.24472870043763 -22.847928357362374, -43.24487412743168 -22.848060164706727, -43.24503177353397 -22.848177083024606, -43.24520012052635 -22.848277986328696, -43.24537754713527 -22.848361902865022, -43.24556234464549 -22.848428024471463, -43.24575273335597 -22.848475714360806, -43.24594687971934 -22.848504513253346, -43.246142914 -22.8485141438, -43.246338948280666 -22.848504513253346, -43.246533094644036 -22.848475714360806, -43.246723483354515 -22.848428024471463, -43.24690828086474 -22.848361902865022, -43.24708570747366 -22.848277986328696, -43.24725405446604 -22.848177083024606, -43.24741170056833 -22.848060164706727, -43.247557127562374 -22.847928357362374, -43.247688934906726 -22.84778293036833, -43.247805853224605 -22.84762528426604, -43.2479067565287 -22.847456937273652, -43.247990673065026 -22.84727951066473, -43.24805679467147 -22.847094713154508, -43.24810448456081 -22.846904324444033, -43.24813328345335 -22.84671017808066, -43.248142914000006 -22.8465141438, -43.24813328345335 -22.84631810951934, -43.24810448456081 -22.846123963155968, -43.24805679467147 -22.845933574445493, -43.247990673065026 -22.84574877693527, -43.2479067565287 -22.84557135032635, -43.247805853224605 -22.84540300333396, -43.247688934906726 -22.845245357231672, -43.247557127562374 -22.845099930237627, -43.24741170056833 -22.844968122893274, -43.24725405446604 -22.844851204575395, -43.24708570747366 -22.844750301271304, -43.24690828086474 -22.84466638473498, -43.246723483354515 -22.844600263128537, -43.246533094644036 -22.844552573239195, -43.246338948280666 -22.844523774346655, -43.246142914 -22.8445141438, -43.24594687971934 -22.844523774346655, -43.24575273335597 -22.844552573239195, -43.24556234464549 -22.844600263128537, -43.24537754713527 -22.84466638473498, -43.24520012052635 -22.844750301271304, -43.24503177353397 -22.844851204575395, -43.24487412743168 -22.844968122893274, -43.24472870043763 -22.845099930237627, -43.24459689309328 -22.845245357231672, -43.2444799747754 -22.84540300333396, -43.24437907147131 -22.84557135032635, -43.24429515493498 -22.84574877693527, -43.24422903332854 -22.845933574445493, -43.244181343439195 -22.846123963155968, -43.24415254454666 -22.84631810951934, -43.244142914 -22.8465141438))" +000148,Penha Circular,Zona Norte,88a8a06f5dfffff,,,,,,,, +000150,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,273,-22.90986773,-43.20536305,PO,G,Canal do Mangue,"POLYGON ((-43.2033630511 -22.9098677325, -43.203372681646655 -22.91006376678066, -43.20340148053919 -22.910257913144033, -43.203449170428534 -22.910448301854508, -43.20351529203498 -22.91063309936473, -43.203599208571305 -22.910810525973652, -43.2037001118754 -22.91097887296604, -43.20381703019328 -22.91113651906833, -43.20394883753763 -22.911281946062374, -43.204094264531676 -22.911413753406727, -43.204251910633964 -22.911530671724606, -43.204420257626346 -22.911631575028697, -43.20459768423527 -22.911715491565023, -43.20478248174549 -22.911781613171463, -43.20497287045597 -22.911829303060806, -43.20516701681934 -22.911858101953346, -43.2053630511 -22.9118677325, -43.20555908538066 -22.911858101953346, -43.20575323174403 -22.911829303060806, -43.20594362045451 -22.911781613171463, -43.206128417964734 -22.911715491565023, -43.206305844573656 -22.911631575028697, -43.20647419156604 -22.911530671724606, -43.206631837668326 -22.911413753406727, -43.20677726466237 -22.911281946062374, -43.206909072006724 -22.91113651906833, -43.2070259903246 -22.91097887296604, -43.2071268936287 -22.910810525973652, -43.20721081016502 -22.91063309936473, -43.20727693177147 -22.910448301854508, -43.20732462166081 -22.910257913144033, -43.207353420553346 -22.91006376678066, -43.2073630511 -22.9098677325, -43.207353420553346 -22.90967169821934, -43.20732462166081 -22.909477551855968, -43.20727693177147 -22.909287163145493, -43.20721081016502 -22.90910236563527, -43.2071268936287 -22.90892493902635, -43.2070259903246 -22.90875659203396, -43.206909072006724 -22.908598945931672, -43.20677726466237 -22.908453518937627, -43.206631837668326 -22.908321711593274, -43.20647419156604 -22.908204793275395, -43.206305844573656 -22.908103889971304, -43.206128417964734 -22.90801997343498, -43.20594362045451 -22.907953851828537, -43.20575323174403 -22.907906161939195, -43.20555908538066 -22.907877363046655, -43.2053630511 -22.9078677325, -43.20516701681934 -22.907877363046655, -43.20497287045597 -22.907906161939195, -43.20478248174549 -22.907953851828537, -43.20459768423527 -22.90801997343498, -43.204420257626346 -22.908103889971304, -43.204251910633964 -22.908204793275395, -43.204094264531676 -22.908321711593274, -43.20394883753763 -22.908453518937627, -43.20381703019328 -22.908598945931672, -43.2037001118754 -22.90875659203396, -43.203599208571305 -22.90892493902635, -43.20351529203498 -22.90910236563527, -43.203449170428534 -22.909287163145493, -43.20340148053919 -22.909477551855968, -43.203372681646655 -22.90967169821934, -43.2033630511 -22.9098677325))" +000151,Penha Circular,Zona Norte,88a8a061b3fffff,,,,,,,, +000153,Coelho Neto,Zona Norte,88a8a06e5bfffff,,,,,,,, +000155,Realengo,Grande Bangu,88a8a06717fffff,,,,,,,, +000156,Bangu,Grande Bangu,88a8a066ebfffff,,,,,,,, +000158,Santa Cruz,Zona Oeste,88a8a02ab3fffff,,,,,,,, +000159,Campo Grande,Zona Oeste,88a8a02917fffff,TRUE,280,-22.88835115,-43.5597789,PO,S,Rio Campinho,"POLYGON ((-43.5577789045 -22.8883511455, -43.557788535046654 -22.88854717978066, -43.55781733393919 -22.888741326144032, -43.55786502382853 -22.888931714854508, -43.55793114543498 -22.88911651236473, -43.558015061971304 -22.88929393897365, -43.5581159652754 -22.88946228596604, -43.55823288359328 -22.889619932068328, -43.55836469093763 -22.889765359062373, -43.558510117931675 -22.889897166406726, -43.55866776403396 -22.890014084724605, -43.558836111026345 -22.890114988028696, -43.559013537635266 -22.890198904565022, -43.55919833514549 -22.890265026171463, -43.55938872385597 -22.890312716060805, -43.55958287021934 -22.890341514953345, -43.5597789045 -22.8903511455, -43.55997493878066 -22.890341514953345, -43.56016908514403 -22.890312716060805, -43.56035947385451 -22.890265026171463, -43.56054427136473 -22.890198904565022, -43.560721697973655 -22.890114988028696, -43.56089004496604 -22.890014084724605, -43.561047691068325 -22.889897166406726, -43.56119311806237 -22.889765359062373, -43.56132492540672 -22.889619932068328, -43.5614418437246 -22.88946228596604, -43.561542747028696 -22.88929393897365, -43.56162666356502 -22.88911651236473, -43.561692785171466 -22.888931714854508, -43.56174047506081 -22.888741326144032, -43.561769273953345 -22.88854717978066, -43.5617789045 -22.8883511455, -43.561769273953345 -22.88815511121934, -43.56174047506081 -22.887960964855967, -43.561692785171466 -22.887770576145492, -43.56162666356502 -22.88758577863527, -43.561542747028696 -22.88740835202635, -43.5614418437246 -22.88724000503396, -43.56132492540672 -22.88708235893167, -43.56119311806237 -22.886936931937626, -43.561047691068325 -22.886805124593273, -43.56089004496604 -22.886688206275394, -43.560721697973655 -22.886587302971304, -43.56054427136473 -22.886503386434978, -43.56035947385451 -22.886437264828537, -43.56016908514403 -22.886389574939194, -43.55997493878066 -22.886360776046654, -43.5597789045 -22.8863511455, -43.55958287021934 -22.886360776046654, -43.55938872385597 -22.886389574939194, -43.55919833514549 -22.886437264828537, -43.559013537635266 -22.886503386434978, -43.558836111026345 -22.886587302971304, -43.55866776403396 -22.886688206275394, -43.558510117931675 -22.886805124593273, -43.55836469093763 -22.886936931937626, -43.55823288359328 -22.88708235893167, -43.5581159652754 -22.88724000503396, -43.558015061971304 -22.88740835202635, -43.55793114543498 -22.88758577863527, -43.55786502382853 -22.887770576145492, -43.55781733393919 -22.887960964855967, -43.557788535046654 -22.88815511121934, -43.5577789045 -22.8883511455))" +000161,São Cristóvão,Centro,88a8a06ac9fffff,,,,,,,, +000162,São Cristóvão,Centro,88a8a06123fffff,TRUE,62,-22.89493066,-43.21975158,PC,G,Canal do Cunha,"POLYGON ((-43.217751576699996 -22.8949306631, -43.21776120724665 -22.895126697380658, -43.21779000613919 -22.89532084374403, -43.21783769602853 -22.895511232454506, -43.217903817634976 -22.89569602996473, -43.2179877341713 -22.89587345657365, -43.2180886374754 -22.89604180356604, -43.218205555793276 -22.896199449668327, -43.21833736313763 -22.896344876662372, -43.218482790131674 -22.896476684006725, -43.21864043623396 -22.896593602324604, -43.21880878322634 -22.896694505628695, -43.218986209835265 -22.89677842216502, -43.21917100734549 -22.89684454377146, -43.219361396055966 -22.896892233660804, -43.219555542419336 -22.896921032553344, -43.2197515767 -22.896930663099997, -43.21994761098066 -22.896921032553344, -43.22014175734403 -22.896892233660804, -43.22033214605451 -22.89684454377146, -43.22051694356473 -22.89677842216502, -43.22069437017365 -22.896694505628695, -43.220862717166035 -22.896593602324604, -43.22102036326832 -22.896476684006725, -43.22116579026237 -22.896344876662372, -43.22129759760672 -22.896199449668327, -43.2214145159246 -22.89604180356604, -43.221515419228695 -22.89587345657365, -43.22159933576502 -22.89569602996473, -43.221665457371465 -22.895511232454506, -43.22171314726081 -22.89532084374403, -43.221741946153344 -22.895126697380658, -43.2217515767 -22.8949306631, -43.221741946153344 -22.89473462881934, -43.22171314726081 -22.894540482455966, -43.221665457371465 -22.89435009374549, -43.22159933576502 -22.89416529623527, -43.221515419228695 -22.893987869626347, -43.2214145159246 -22.893819522633958, -43.22129759760672 -22.89366187653167, -43.22116579026237 -22.893516449537625, -43.22102036326832 -22.893384642193272, -43.220862717166035 -22.893267723875393, -43.22069437017365 -22.893166820571302, -43.22051694356473 -22.893082904034976, -43.22033214605451 -22.893016782428536, -43.22014175734403 -22.892969092539193, -43.21994761098066 -22.892940293646653, -43.2197515767 -22.8929306631, -43.219555542419336 -22.892940293646653, -43.219361396055966 -22.892969092539193, -43.21917100734549 -22.893016782428536, -43.218986209835265 -22.893082904034976, -43.21880878322634 -22.893166820571302, -43.21864043623396 -22.893267723875393, -43.218482790131674 -22.893384642193272, -43.21833736313763 -22.893516449537625, -43.218205555793276 -22.89366187653167, -43.2180886374754 -22.893819522633958, -43.2179877341713 -22.893987869626347, -43.217903817634976 -22.89416529623527, -43.21783769602853 -22.89435009374549, -43.21779000613919 -22.894540482455966, -43.21776120724665 -22.89473462881934, -43.217751576699996 -22.8949306631))" +000168,Penha Circular,Zona Norte,88a8a06e6dfffff,,,,,,,, +000169,São Cristóvão,Centro,88a8a06135fffff,TRUE,315,-22.88636999,-43.22588612,PO,G,Canal do Cunha,"POLYGON ((-43.223886117199996 -22.886369987, -43.22389574774665 -22.886566021280657, -43.22392454663919 -22.88676016764403, -43.22397223652853 -22.886950556354506, -43.224038358134976 -22.88713535386473, -43.2241222746713 -22.88731278047365, -43.2242231779754 -22.88748112746604, -43.224340096293275 -22.887638773568327, -43.22447190363763 -22.887784200562372, -43.22461733063167 -22.887916007906725, -43.22477497673396 -22.888032926224604, -43.22494332372634 -22.888133829528694, -43.225120750335265 -22.88821774606502, -43.22530554784549 -22.88828386767146, -43.225495936555966 -22.888331557560804, -43.225690082919336 -22.888360356453344, -43.2258861172 -22.888369986999997, -43.22608215148066 -22.888360356453344, -43.22627629784403 -22.888331557560804, -43.22646668655451 -22.88828386767146, -43.22665148406473 -22.88821774606502, -43.22682891067365 -22.888133829528694, -43.226997257666035 -22.888032926224604, -43.22715490376832 -22.887916007906725, -43.22730033076237 -22.887784200562372, -43.22743213810672 -22.887638773568327, -43.2275490564246 -22.88748112746604, -43.227649959728694 -22.88731278047365, -43.22773387626502 -22.88713535386473, -43.227799997871465 -22.886950556354506, -43.22784768776081 -22.88676016764403, -43.227876486653344 -22.886566021280657, -43.2278861172 -22.886369987, -43.227876486653344 -22.88617395271934, -43.22784768776081 -22.885979806355966, -43.227799997871465 -22.88578941764549, -43.22773387626502 -22.88560462013527, -43.227649959728694 -22.885427193526347, -43.2275490564246 -22.885258846533958, -43.22743213810672 -22.88510120043167, -43.22730033076237 -22.884955773437625, -43.22715490376832 -22.884823966093272, -43.226997257666035 -22.884707047775393, -43.22682891067365 -22.884606144471302, -43.22665148406473 -22.884522227934976, -43.22646668655451 -22.884456106328535, -43.22627629784403 -22.884408416439193, -43.22608215148066 -22.884379617546653, -43.2258861172 -22.884369987, -43.225690082919336 -22.884379617546653, -43.225495936555966 -22.884408416439193, -43.22530554784549 -22.884456106328535, -43.225120750335265 -22.884522227934976, -43.22494332372634 -22.884606144471302, -43.22477497673396 -22.884707047775393, -43.22461733063167 -22.884823966093272, -43.22447190363763 -22.884955773437625, -43.224340096293275 -22.88510120043167, -43.2242231779754 -22.885258846533958, -43.2241222746713 -22.885427193526347, -43.224038358134976 -22.88560462013527, -43.22397223652853 -22.88578941764549, -43.22392454663919 -22.885979806355966, -43.22389574774665 -22.88617395271934, -43.223886117199996 -22.886369987))" +000171,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +000173,Benfica,Centro,88a8a06135fffff,TRUE,268,-22.88667197,-43.23212286,PC,G,Canal do Cunha,"POLYGON ((-43.2301228642 -22.8866719722, -43.230132494746655 -22.886868006480658, -43.23016129363919 -22.88706215284403, -43.230208983528534 -22.887252541554506, -43.23027510513498 -22.88743733906473, -43.230359021671305 -22.88761476567365, -43.2304599249754 -22.88778311266604, -43.23057684329328 -22.887940758768327, -43.23070865063763 -22.888086185762372, -43.230854077631676 -22.888217993106725, -43.231011723733964 -22.888334911424604, -43.231180070726346 -22.888435814728695, -43.23135749733527 -22.88851973126502, -43.23154229484549 -22.88858585287146, -43.23173268355597 -22.888633542760804, -43.23192682991934 -22.888662341653344, -43.2321228642 -22.888671972199997, -43.23231889848066 -22.888662341653344, -43.23251304484403 -22.888633542760804, -43.23270343355451 -22.88858585287146, -43.232888231064734 -22.88851973126502, -43.233065657673656 -22.888435814728695, -43.23323400466604 -22.888334911424604, -43.233391650768326 -22.888217993106725, -43.23353707776237 -22.888086185762372, -43.233668885106724 -22.887940758768327, -43.2337858034246 -22.88778311266604, -43.2338867067287 -22.88761476567365, -43.23397062326502 -22.88743733906473, -43.23403674487147 -22.887252541554506, -43.23408443476081 -22.88706215284403, -43.234113233653346 -22.886868006480658, -43.2341228642 -22.8866719722, -43.234113233653346 -22.88647593791934, -43.23408443476081 -22.886281791555966, -43.23403674487147 -22.88609140284549, -43.23397062326502 -22.88590660533527, -43.2338867067287 -22.885729178726347, -43.2337858034246 -22.885560831733958, -43.233668885106724 -22.88540318563167, -43.23353707776237 -22.885257758637625, -43.233391650768326 -22.885125951293272, -43.23323400466604 -22.885009032975393, -43.233065657673656 -22.884908129671302, -43.232888231064734 -22.884824213134976, -43.23270343355451 -22.884758091528536, -43.23251304484403 -22.884710401639193, -43.23231889848066 -22.884681602746653, -43.2321228642 -22.8846719722, -43.23192682991934 -22.884681602746653, -43.23173268355597 -22.884710401639193, -43.23154229484549 -22.884758091528536, -43.23135749733527 -22.884824213134976, -43.231180070726346 -22.884908129671302, -43.231011723733964 -22.885009032975393, -43.230854077631676 -22.885125951293272, -43.23070865063763 -22.885257758637625, -43.23057684329328 -22.88540318563167, -43.2304599249754 -22.885560831733958, -43.230359021671305 -22.885729178726347, -43.23027510513498 -22.88590660533527, -43.230208983528534 -22.88609140284549, -43.23016129363919 -22.886281791555966, -43.230132494746655 -22.88647593791934, -43.2301228642 -22.8866719722))" +000174,Barra da Tijuca,Barra da Tijuca,88a8a07545fffff,,,,,,,, +000175,Maracanã,Grande Tijuca,88a8a06163fffff,,,,,,,, +000176,Mangueira,Centro,88a8a06103fffff,TRUE,293,-22.90437937,-43.24011513,PO,G,Canal do Cunha,"POLYGON ((-43.2381151342 -22.9043793736, -43.23812476474666 -22.90457540788066, -43.238153563639194 -22.904769554244034, -43.23820125352854 -22.90495994295451, -43.23826737513498 -22.90514474046473, -43.23835129167131 -22.905322167073653, -43.2384521949754 -22.90549051406604, -43.23856911329328 -22.90564816016833, -43.23870092063763 -22.905793587162375, -43.23884634763168 -22.905925394506728, -43.23900399373397 -22.906042312824606, -43.23917234072635 -22.906143216128697, -43.23934976733527 -22.906227132665023, -43.23953456484549 -22.906293254271464, -43.23972495355597 -22.906340944160807, -43.23991909991934 -22.906369743053347, -43.2401151342 -22.9063793736, -43.240311168480666 -22.906369743053347, -43.240505314844036 -22.906340944160807, -43.240695703554515 -22.906293254271464, -43.24088050106474 -22.906227132665023, -43.24105792767366 -22.906143216128697, -43.24122627466604 -22.906042312824606, -43.24138392076833 -22.905925394506728, -43.24152934776237 -22.905793587162375, -43.241661155106726 -22.90564816016833, -43.241778073424605 -22.90549051406604, -43.2418789767287 -22.905322167073653, -43.241962893265026 -22.90514474046473, -43.24202901487147 -22.90495994295451, -43.24207670476081 -22.904769554244034, -43.24210550365335 -22.90457540788066, -43.242115134200006 -22.9043793736, -43.24210550365335 -22.904183339319342, -43.24207670476081 -22.90398919295597, -43.24202901487147 -22.903798804245493, -43.241962893265026 -22.90361400673527, -43.2418789767287 -22.90343658012635, -43.241778073424605 -22.90326823313396, -43.241661155106726 -22.903110587031673, -43.24152934776237 -22.902965160037628, -43.24138392076833 -22.902833352693275, -43.24122627466604 -22.902716434375396, -43.24105792767366 -22.902615531071305, -43.24088050106474 -22.90253161453498, -43.240695703554515 -22.90246549292854, -43.240505314844036 -22.902417803039196, -43.240311168480666 -22.902389004146656, -43.2401151342 -22.902379373600002, -43.23991909991934 -22.902389004146656, -43.23972495355597 -22.902417803039196, -43.23953456484549 -22.90246549292854, -43.23934976733527 -22.90253161453498, -43.23917234072635 -22.902615531071305, -43.23900399373397 -22.902716434375396, -43.23884634763168 -22.902833352693275, -43.23870092063763 -22.902965160037628, -43.23856911329328 -22.903110587031673, -43.2384521949754 -22.90326823313396, -43.23835129167131 -22.90343658012635, -43.23826737513498 -22.90361400673527, -43.23820125352854 -22.903798804245493, -43.238153563639194 -22.90398919295597, -43.23812476474666 -22.904183339319342, -43.2381151342 -22.9043793736))" +000178,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +000179,Penha Circular,Zona Norte,88a8a06e6dfffff,,,,,,,, +000181,Centro,Centro,88a8a06a55fffff,,,,,,,, +000182,Botafogo,Zona Sul,88a8a07887fffff,,,,,,,, +000183,Praça da Bandeira,Grande Tijuca,88a8a06a5bfffff,,,,,,,, +000184,Vila Kosmos,Zona Norte,88a8a06197fffff,,,,,,,, +000186,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +000189,Madureira,Zona Norte,88a8a06085fffff,TRUE,422,-22.87602805,-43.33536402,PO,G,,"POLYGON ((-43.333364019053995 -22.8760280520269, -43.33337364960065 -22.87622408630756, -43.33340244849319 -22.876418232670932, -43.33345013838253 -22.876608621381408, -43.333516259988976 -22.87679341889163, -43.3336001765253 -22.87697084550055, -43.333701079829396 -22.87713919249294, -43.333817998147275 -22.877296838595228, -43.33394980549163 -22.877442265589274, -43.33409523248567 -22.877574072933626, -43.33425287858796 -22.877690991251505, -43.33442122558034 -22.877791894555596, -43.334598652189264 -22.877875811091922, -43.334783449699486 -22.877941932698363, -43.334973838409965 -22.877989622587705, -43.335167984773335 -22.878018421480245, -43.335364019054 -22.8780280520269, -43.33556005333466 -22.878018421480245, -43.33575419969803 -22.877989622587705, -43.33594458840851 -22.877941932698363, -43.33612938591873 -22.877875811091922, -43.33630681252765 -22.877791894555596, -43.336475159520035 -22.877690991251505, -43.33663280562232 -22.877574072933626, -43.33677823261637 -22.877442265589274, -43.33691003996072 -22.877296838595228, -43.3370269582786 -22.87713919249294, -43.337127861582694 -22.87697084550055, -43.33721177811902 -22.87679341889163, -43.337277899725464 -22.876608621381408, -43.33732558961481 -22.876418232670932, -43.33735438850734 -22.87622408630756, -43.337364019054 -22.8760280520269, -43.33735438850734 -22.87583201774624, -43.33732558961481 -22.875637871382867, -43.337277899725464 -22.875447482672392, -43.33721177811902 -22.87526268516217, -43.337127861582694 -22.87508525855325, -43.3370269582786 -22.87491691156086, -43.33691003996072 -22.87475926545857, -43.33677823261637 -22.874613838464526, -43.33663280562232 -22.874482031120174, -43.336475159520035 -22.874365112802295, -43.33630681252765 -22.874264209498204, -43.33612938591873 -22.874180292961878, -43.33594458840851 -22.874114171355437, -43.33575419969803 -22.874066481466095, -43.33556005333466 -22.874037682573555, -43.335364019054 -22.8740280520269, -43.335167984773335 -22.874037682573555, -43.334973838409965 -22.874066481466095, -43.334783449699486 -22.874114171355437, -43.334598652189264 -22.874180292961878, -43.33442122558034 -22.874264209498204, -43.33425287858796 -22.874365112802295, -43.33409523248567 -22.874482031120174, -43.33394980549163 -22.874613838464526, -43.333817998147275 -22.87475926545857, -43.333701079829396 -22.87491691156086, -43.3336001765253 -22.87508525855325, -43.333516259988976 -22.87526268516217, -43.33345013838253 -22.875447482672392, -43.33340244849319 -22.875637871382867, -43.33337364960065 -22.87583201774624, -43.333364019053995 -22.8760280520269))" +000190,Praça Seca,Jacarepaguá,88a8a060c3fffff,TRUE,20,-22.89198607,-43.34845331,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.346453313999994 -22.89198607, -43.34646294454665 -22.89218210428066, -43.34649174343919 -22.892376250644034, -43.34653943332853 -22.89256663935451, -43.346605554934975 -22.89275143686473, -43.3466894714713 -22.892928863473653, -43.346790374775395 -22.893097210466042, -43.346907293093274 -22.89325485656833, -43.34703910043763 -22.893400283562375, -43.34718452743167 -22.893532090906728, -43.34734217353396 -22.893649009224607, -43.34751052052634 -22.893749912528698, -43.34768794713526 -22.893833829065024, -43.347872744645485 -22.893899950671464, -43.348063133355964 -22.893947640560807, -43.348257279719334 -22.893976439453347, -43.348453314 -22.89398607, -43.34864934828066 -22.893976439453347, -43.34884349464403 -22.893947640560807, -43.34903388335451 -22.893899950671464, -43.34921868086473 -22.893833829065024, -43.34939610747365 -22.893749912528698, -43.349564454466034 -22.893649009224607, -43.34972210056832 -22.893532090906728, -43.34986752756237 -22.893400283562375, -43.34999933490672 -22.89325485656833, -43.3501162532246 -22.893097210466042, -43.35021715652869 -22.892928863473653, -43.35030107306502 -22.89275143686473, -43.35036719467146 -22.89256663935451, -43.350414884560806 -22.892376250644034, -43.35044368345334 -22.89218210428066, -43.350453314 -22.89198607, -43.35044368345334 -22.891790035719342, -43.350414884560806 -22.89159588935597, -43.35036719467146 -22.891405500645494, -43.35030107306502 -22.89122070313527, -43.35021715652869 -22.89104327652635, -43.3501162532246 -22.89087492953396, -43.34999933490672 -22.890717283431673, -43.34986752756237 -22.890571856437628, -43.34972210056832 -22.890440049093275, -43.349564454466034 -22.890323130775396, -43.34939610747365 -22.890222227471305, -43.34921868086473 -22.89013831093498, -43.34903388335451 -22.89007218932854, -43.34884349464403 -22.890024499439196, -43.34864934828066 -22.889995700546656, -43.348453314 -22.889986070000003, -43.348257279719334 -22.889995700546656, -43.348063133355964 -22.890024499439196, -43.347872744645485 -22.89007218932854, -43.34768794713526 -22.89013831093498, -43.34751052052634 -22.890222227471305, -43.34734217353396 -22.890323130775396, -43.34718452743167 -22.890440049093275, -43.34703910043763 -22.890571856437628, -43.346907293093274 -22.890717283431673, -43.346790374775395 -22.89087492953396, -43.3466894714713 -22.89104327652635, -43.346605554934975 -22.89122070313527, -43.34653943332853 -22.891405500645494, -43.34649174343919 -22.89159588935597, -43.34646294454665 -22.891790035719342, -43.346453313999994 -22.89198607))" +000191,Praça Seca,Jacarepaguá,88a8a060c1fffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +000192,Praça Seca,Jacarepaguá,88a8a062b5fffff,TRUE,184,-22.90345613,-43.35738219,PC,J,Rio Grande,"POLYGON ((-43.3553821947 -22.9034561343, -43.355391825246656 -22.90365216858066, -43.35542062413919 -22.903846314944033, -43.355468314028535 -22.90403670365451, -43.35553443563498 -22.90422150116473, -43.355618352171305 -22.904398927773652, -43.3557192554754 -22.90456727476604, -43.35583617379328 -22.90472492086833, -43.35596798113763 -22.904870347862374, -43.35611340813168 -22.905002155206727, -43.356271054233964 -22.905119073524606, -43.356439401226346 -22.905219976828697, -43.35661682783527 -22.905303893365023, -43.35680162534549 -22.905370014971464, -43.35699201405597 -22.905417704860806, -43.35718616041934 -22.905446503753346, -43.3573821947 -22.9054561343, -43.357578228980664 -22.905446503753346, -43.357772375344034 -22.905417704860806, -43.35796276405451 -22.905370014971464, -43.358147561564735 -22.905303893365023, -43.358324988173656 -22.905219976828697, -43.35849333516604 -22.905119073524606, -43.358650981268326 -22.905002155206727, -43.35879640826237 -22.904870347862374, -43.358928215606724 -22.90472492086833, -43.3590451339246 -22.90456727476604, -43.3591460372287 -22.904398927773652, -43.35922995376502 -22.90422150116473, -43.35929607537147 -22.90403670365451, -43.35934376526081 -22.903846314944033, -43.35937256415335 -22.90365216858066, -43.359382194700004 -22.9034561343, -43.35937256415335 -22.90326010001934, -43.35934376526081 -22.903065953655968, -43.35929607537147 -22.902875564945493, -43.35922995376502 -22.90269076743527, -43.3591460372287 -22.90251334082635, -43.3590451339246 -22.90234499383396, -43.358928215606724 -22.902187347731672, -43.35879640826237 -22.902041920737627, -43.358650981268326 -22.901910113393274, -43.35849333516604 -22.901793195075395, -43.358324988173656 -22.901692291771305, -43.358147561564735 -22.90160837523498, -43.35796276405451 -22.901542253628538, -43.357772375344034 -22.901494563739195, -43.357578228980664 -22.901465764846655, -43.3573821947 -22.901456134300002, -43.35718616041934 -22.901465764846655, -43.35699201405597 -22.901494563739195, -43.35680162534549 -22.901542253628538, -43.35661682783527 -22.90160837523498, -43.356439401226346 -22.901692291771305, -43.356271054233964 -22.901793195075395, -43.35611340813168 -22.901910113393274, -43.35596798113763 -22.902041920737627, -43.35583617379328 -22.902187347731672, -43.3557192554754 -22.90234499383396, -43.355618352171305 -22.90251334082635, -43.35553443563498 -22.90269076743527, -43.355468314028535 -22.902875564945493, -43.35542062413919 -22.903065953655968, -43.355391825246656 -22.90326010001934, -43.3553821947 -22.9034561343))" +000193,Tanque,Jacarepaguá,88a8a062bdfffff,TRUE,183,-22.91205022,-43.36102821,PC,J,Rio Grande,"POLYGON ((-43.359028205399994 -22.9120502153, -43.35903783594665 -22.912246249580658, -43.35906663483919 -22.91244039594403, -43.35911432472853 -22.912630784654507, -43.359180446334975 -22.91281558216473, -43.3592643628713 -22.91299300877365, -43.359365266175395 -22.91316135576604, -43.359482184493274 -22.913319001868327, -43.35961399183763 -22.913464428862373, -43.35975941883167 -22.913596236206725, -43.35991706493396 -22.913713154524604, -43.36008541192634 -22.913814057828695, -43.36026283853526 -22.91389797436502, -43.360447636045485 -22.913964095971462, -43.360638024755964 -22.914011785860804, -43.360832171119334 -22.914040584753344, -43.3610282054 -22.914050215299998, -43.36122423968066 -22.914040584753344, -43.36141838604403 -22.914011785860804, -43.36160877475451 -22.913964095971462, -43.36179357226473 -22.91389797436502, -43.36197099887365 -22.913814057828695, -43.362139345866034 -22.913713154524604, -43.36229699196832 -22.913596236206725, -43.36244241896237 -22.913464428862373, -43.36257422630672 -22.913319001868327, -43.3626911446246 -22.91316135576604, -43.36279204792869 -22.91299300877365, -43.36287596446502 -22.91281558216473, -43.36294208607146 -22.912630784654507, -43.362989775960806 -22.91244039594403, -43.36301857485334 -22.912246249580658, -43.3630282054 -22.9120502153, -43.36301857485334 -22.91185418101934, -43.362989775960806 -22.911660034655966, -43.36294208607146 -22.91146964594549, -43.36287596446502 -22.91128484843527, -43.36279204792869 -22.911107421826348, -43.3626911446246 -22.91093907483396, -43.36257422630672 -22.91078142873167, -43.36244241896237 -22.910636001737625, -43.36229699196832 -22.910504194393273, -43.362139345866034 -22.910387276075394, -43.36197099887365 -22.910286372771303, -43.36179357226473 -22.910202456234977, -43.36160877475451 -22.910136334628536, -43.36141838604403 -22.910088644739194, -43.36122423968066 -22.910059845846654, -43.3610282054 -22.9100502153, -43.360832171119334 -22.910059845846654, -43.360638024755964 -22.910088644739194, -43.360447636045485 -22.910136334628536, -43.36026283853526 -22.910202456234977, -43.36008541192634 -22.910286372771303, -43.35991706493396 -22.910387276075394, -43.35975941883167 -22.910504194393273, -43.35961399183763 -22.910636001737625, -43.359482184493274 -22.91078142873167, -43.359365266175395 -22.91093907483396, -43.3592643628713 -22.911107421826348, -43.359180446334975 -22.91128484843527, -43.35911432472853 -22.91146964594549, -43.35906663483919 -22.911660034655966, -43.35903783594665 -22.91185418101934, -43.359028205399994 -22.9120502153))" +000195,Taquara,Jacarepaguá,88a8a06287fffff,TRUE,185,-22.91825661,-43.36422225,PM,J,Rio Grande,"POLYGON ((-43.362222250399995 -22.9182566061, -43.36223188094665 -22.91845264038066, -43.36226067983919 -22.918646786744034, -43.36230836972853 -22.91883717545451, -43.362374491334975 -22.91902197296473, -43.3624584078713 -22.919199399573653, -43.362559311175396 -22.919367746566042, -43.362676229493275 -22.91952539266833, -43.36280803683763 -22.919670819662375, -43.36295346383167 -22.919802627006728, -43.36311110993396 -22.919919545324607, -43.36327945692634 -22.920020448628698, -43.363456883535264 -22.920104365165024, -43.363641681045486 -22.920170486771465, -43.363832069755965 -22.920218176660807, -43.364026216119335 -22.920246975553347, -43.3642222504 -22.9202566061, -43.36441828468066 -22.920246975553347, -43.36461243104403 -22.920218176660807, -43.36480281975451 -22.920170486771465, -43.36498761726473 -22.920104365165024, -43.36516504387365 -22.920020448628698, -43.365333390866034 -22.919919545324607, -43.36549103696832 -22.919802627006728, -43.36563646396237 -22.919670819662375, -43.36576827130672 -22.91952539266833, -43.3658851896246 -22.919367746566042, -43.36598609292869 -22.919199399573653, -43.36607000946502 -22.91902197296473, -43.366136131071464 -22.91883717545451, -43.366183820960806 -22.918646786744034, -43.36621261985334 -22.91845264038066, -43.3662222504 -22.9182566061, -43.36621261985334 -22.918060571819343, -43.366183820960806 -22.91786642545597, -43.366136131071464 -22.917676036745494, -43.36607000946502 -22.91749123923527, -43.36598609292869 -22.91731381262635, -43.3658851896246 -22.91714546563396, -43.36576827130672 -22.916987819531673, -43.36563646396237 -22.916842392537628, -43.36549103696832 -22.916710585193275, -43.365333390866034 -22.916593666875396, -43.36516504387365 -22.916492763571306, -43.36498761726473 -22.91640884703498, -43.36480281975451 -22.91634272542854, -43.36461243104403 -22.916295035539196, -43.36441828468066 -22.916266236646656, -43.3642222504 -22.916256606100003, -43.364026216119335 -22.916266236646656, -43.363832069755965 -22.916295035539196, -43.363641681045486 -22.91634272542854, -43.363456883535264 -22.91640884703498, -43.36327945692634 -22.916492763571306, -43.36311110993396 -22.916593666875396, -43.36295346383167 -22.916710585193275, -43.36280803683763 -22.916842392537628, -43.362676229493275 -22.916987819531673, -43.362559311175396 -22.91714546563396, -43.3624584078713 -22.91731381262635, -43.362374491334975 -22.91749123923527, -43.36230836972853 -22.917676036745494, -43.36226067983919 -22.91786642545597, -43.36223188094665 -22.918060571819343, -43.362222250399995 -22.9182566061))" +000196,Taquara,Jacarepaguá,88a8a0628bfffff,,,,,,,, +000198,Curicica,Jacarepaguá,88a8a07535fffff,,,,,,,, +000200,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +000201,Rio Comprido,Centro,88a8a06167fffff,,,,,,,, +000203,Cidade Nova,Centro,88a8a06a53fffff,TRUE,273,-22.90986773,-43.20536305,PO,G,Canal do Mangue,"POLYGON ((-43.2033630511 -22.9098677325, -43.203372681646655 -22.91006376678066, -43.20340148053919 -22.910257913144033, -43.203449170428534 -22.910448301854508, -43.20351529203498 -22.91063309936473, -43.203599208571305 -22.910810525973652, -43.2037001118754 -22.91097887296604, -43.20381703019328 -22.91113651906833, -43.20394883753763 -22.911281946062374, -43.204094264531676 -22.911413753406727, -43.204251910633964 -22.911530671724606, -43.204420257626346 -22.911631575028697, -43.20459768423527 -22.911715491565023, -43.20478248174549 -22.911781613171463, -43.20497287045597 -22.911829303060806, -43.20516701681934 -22.911858101953346, -43.2053630511 -22.9118677325, -43.20555908538066 -22.911858101953346, -43.20575323174403 -22.911829303060806, -43.20594362045451 -22.911781613171463, -43.206128417964734 -22.911715491565023, -43.206305844573656 -22.911631575028697, -43.20647419156604 -22.911530671724606, -43.206631837668326 -22.911413753406727, -43.20677726466237 -22.911281946062374, -43.206909072006724 -22.91113651906833, -43.2070259903246 -22.91097887296604, -43.2071268936287 -22.910810525973652, -43.20721081016502 -22.91063309936473, -43.20727693177147 -22.910448301854508, -43.20732462166081 -22.910257913144033, -43.207353420553346 -22.91006376678066, -43.2073630511 -22.9098677325, -43.207353420553346 -22.90967169821934, -43.20732462166081 -22.909477551855968, -43.20727693177147 -22.909287163145493, -43.20721081016502 -22.90910236563527, -43.2071268936287 -22.90892493902635, -43.2070259903246 -22.90875659203396, -43.206909072006724 -22.908598945931672, -43.20677726466237 -22.908453518937627, -43.206631837668326 -22.908321711593274, -43.20647419156604 -22.908204793275395, -43.206305844573656 -22.908103889971304, -43.206128417964734 -22.90801997343498, -43.20594362045451 -22.907953851828537, -43.20575323174403 -22.907906161939195, -43.20555908538066 -22.907877363046655, -43.2053630511 -22.9078677325, -43.20516701681934 -22.907877363046655, -43.20497287045597 -22.907906161939195, -43.20478248174549 -22.907953851828537, -43.20459768423527 -22.90801997343498, -43.204420257626346 -22.908103889971304, -43.204251910633964 -22.908204793275395, -43.204094264531676 -22.908321711593274, -43.20394883753763 -22.908453518937627, -43.20381703019328 -22.908598945931672, -43.2037001118754 -22.90875659203396, -43.203599208571305 -22.90892493902635, -43.20351529203498 -22.90910236563527, -43.203449170428534 -22.909287163145493, -43.20340148053919 -22.909477551855968, -43.203372681646655 -22.90967169821934, -43.2033630511 -22.9098677325))" +000205,Centro,Centro,88a8a06a55fffff,,,,,,,, +000206,São Cristóvão,Centro,88a8a06123fffff,TRUE,62,-22.89493066,-43.21975158,PC,G,Canal do Cunha,"POLYGON ((-43.217751576699996 -22.8949306631, -43.21776120724665 -22.895126697380658, -43.21779000613919 -22.89532084374403, -43.21783769602853 -22.895511232454506, -43.217903817634976 -22.89569602996473, -43.2179877341713 -22.89587345657365, -43.2180886374754 -22.89604180356604, -43.218205555793276 -22.896199449668327, -43.21833736313763 -22.896344876662372, -43.218482790131674 -22.896476684006725, -43.21864043623396 -22.896593602324604, -43.21880878322634 -22.896694505628695, -43.218986209835265 -22.89677842216502, -43.21917100734549 -22.89684454377146, -43.219361396055966 -22.896892233660804, -43.219555542419336 -22.896921032553344, -43.2197515767 -22.896930663099997, -43.21994761098066 -22.896921032553344, -43.22014175734403 -22.896892233660804, -43.22033214605451 -22.89684454377146, -43.22051694356473 -22.89677842216502, -43.22069437017365 -22.896694505628695, -43.220862717166035 -22.896593602324604, -43.22102036326832 -22.896476684006725, -43.22116579026237 -22.896344876662372, -43.22129759760672 -22.896199449668327, -43.2214145159246 -22.89604180356604, -43.221515419228695 -22.89587345657365, -43.22159933576502 -22.89569602996473, -43.221665457371465 -22.895511232454506, -43.22171314726081 -22.89532084374403, -43.221741946153344 -22.895126697380658, -43.2217515767 -22.8949306631, -43.221741946153344 -22.89473462881934, -43.22171314726081 -22.894540482455966, -43.221665457371465 -22.89435009374549, -43.22159933576502 -22.89416529623527, -43.221515419228695 -22.893987869626347, -43.2214145159246 -22.893819522633958, -43.22129759760672 -22.89366187653167, -43.22116579026237 -22.893516449537625, -43.22102036326832 -22.893384642193272, -43.220862717166035 -22.893267723875393, -43.22069437017365 -22.893166820571302, -43.22051694356473 -22.893082904034976, -43.22033214605451 -22.893016782428536, -43.22014175734403 -22.892969092539193, -43.21994761098066 -22.892940293646653, -43.2197515767 -22.8929306631, -43.219555542419336 -22.892940293646653, -43.219361396055966 -22.892969092539193, -43.21917100734549 -22.893016782428536, -43.218986209835265 -22.893082904034976, -43.21880878322634 -22.893166820571302, -43.21864043623396 -22.893267723875393, -43.218482790131674 -22.893384642193272, -43.21833736313763 -22.893516449537625, -43.218205555793276 -22.89366187653167, -43.2180886374754 -22.893819522633958, -43.2179877341713 -22.893987869626347, -43.217903817634976 -22.89416529623527, -43.21783769602853 -22.89435009374549, -43.21779000613919 -22.894540482455966, -43.21776120724665 -22.89473462881934, -43.217751576699996 -22.8949306631))" +000207,Centro,Centro,88a8a06a09fffff,,,,,,,, +000209,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +000211,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +000212,Centro,Centro,88a8a06a09fffff,,,,,,,, +000214,Rio Comprido,Centro,88a8a06165fffff,TRUE,10,-22.92433106,-43.20929746,PC,G,Canal do Mangue,"POLYGON ((-43.207297456199996 -22.924331062, -43.20730708674665 -22.92452709628066, -43.20733588563919 -22.924721242644033, -43.20738357552853 -22.924911631354508, -43.207449697134976 -22.92509642886473, -43.2075336136713 -22.92527385547365, -43.207634516975396 -22.92544220246604, -43.207751435293275 -22.92559984856833, -43.20788324263763 -22.925745275562374, -43.20802866963167 -22.925877082906727, -43.20818631573396 -22.925994001224606, -43.20835466272634 -22.926094904528696, -43.208532089335264 -22.926178821065022, -43.20871688684549 -22.926244942671463, -43.208907275555966 -22.926292632560806, -43.209101421919335 -22.926321431453346, -43.2092974562 -22.926331062, -43.20949349048066 -22.926321431453346, -43.20968763684403 -22.926292632560806, -43.20987802555451 -22.926244942671463, -43.21006282306473 -22.926178821065022, -43.21024024967365 -22.926094904528696, -43.210408596666035 -22.925994001224606, -43.21056624276832 -22.925877082906727, -43.21071166976237 -22.925745275562374, -43.21084347710672 -22.92559984856833, -43.2109603954246 -22.92544220246604, -43.211061298728694 -22.92527385547365, -43.21114521526502 -22.92509642886473, -43.211211336871465 -22.924911631354508, -43.21125902676081 -22.924721242644033, -43.21128782565334 -22.92452709628066, -43.2112974562 -22.924331062, -43.21128782565334 -22.92413502771934, -43.21125902676081 -22.923940881355968, -43.211211336871465 -22.923750492645492, -43.21114521526502 -22.92356569513527, -43.211061298728694 -22.92338826852635, -43.2109603954246 -22.92321992153396, -43.21084347710672 -22.923062275431672, -43.21071166976237 -22.922916848437627, -43.21056624276832 -22.922785041093274, -43.210408596666035 -22.922668122775395, -43.21024024967365 -22.922567219471304, -43.21006282306473 -22.922483302934978, -43.20987802555451 -22.922417181328537, -43.20968763684403 -22.922369491439195, -43.20949349048066 -22.922340692546655, -43.2092974562 -22.922331062, -43.209101421919335 -22.922340692546655, -43.208907275555966 -22.922369491439195, -43.20871688684549 -22.922417181328537, -43.208532089335264 -22.922483302934978, -43.20835466272634 -22.922567219471304, -43.20818631573396 -22.922668122775395, -43.20802866963167 -22.922785041093274, -43.20788324263763 -22.922916848437627, -43.207751435293275 -22.923062275431672, -43.207634516975396 -22.92321992153396, -43.2075336136713 -22.92338826852635, -43.207449697134976 -22.92356569513527, -43.20738357552853 -22.923750492645492, -43.20733588563919 -22.923940881355968, -43.20730708674665 -22.92413502771934, -43.207297456199996 -22.924331062))" +000217,Caju,Centro,88a8a06127fffff,,,,,,,, +000218,São Cristóvão,Centro,88a8a06127fffff,,,,,,,, +000219,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +000220,Centro,Centro,88a8a06a09fffff,,,,,,,, +000221,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +000222,Estácio,Centro,88a8a06a51fffff,,,,,,,, +000224,Centro,Centro,88a8a06a51fffff,,,,,,,, +000225,Centro,Centro,88a8a06a55fffff,,,,,,,, +000226,Centro,Centro,88a8a06a57fffff,,,,,,,, +000228,Centro,Centro,88a8a06a55fffff,,,,,,,, +000229,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +000230,São Cristóvão,Centro,88a8a0612bfffff,,,,,,,, +000235,Lagoa,Zona Sul,88a8a078d1fffff,TRUE,344,-22.96601933,-43.21615058,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.214150578499996 -22.9660193267, -43.21416020904665 -22.96621536098066, -43.21418900793919 -22.966409507344032, -43.21423669782853 -22.966599896054507, -43.21430281943498 -22.96678469356473, -43.2143867359713 -22.96696212017365, -43.2144876392754 -22.96713046716604, -43.214604557593276 -22.967288113268328, -43.21473636493763 -22.967433540262373, -43.214881791931674 -22.967565347606726, -43.21503943803396 -22.967682265924605, -43.215207785026344 -22.967783169228696, -43.215385211635265 -22.967867085765022, -43.21557000914549 -22.967933207371463, -43.215760397855966 -22.967980897260805, -43.215954544219336 -22.968009696153345, -43.2161505785 -22.9680193267, -43.21634661278066 -22.968009696153345, -43.21654075914403 -22.967980897260805, -43.21673114785451 -22.967933207371463, -43.21691594536473 -22.967867085765022, -43.217093371973654 -22.967783169228696, -43.217261718966036 -22.967682265924605, -43.217419365068324 -22.967565347606726, -43.21756479206237 -22.967433540262373, -43.21769659940672 -22.967288113268328, -43.2178135177246 -22.96713046716604, -43.217914421028695 -22.96696212017365, -43.21799833756502 -22.96678469356473, -43.218064459171465 -22.966599896054507, -43.21811214906081 -22.966409507344032, -43.218140947953344 -22.96621536098066, -43.2181505785 -22.9660193267, -43.218140947953344 -22.96582329241934, -43.21811214906081 -22.965629146055967, -43.218064459171465 -22.965438757345492, -43.21799833756502 -22.96525395983527, -43.217914421028695 -22.96507653322635, -43.2178135177246 -22.96490818623396, -43.21769659940672 -22.96475054013167, -43.21756479206237 -22.964605113137626, -43.217419365068324 -22.964473305793273, -43.217261718966036 -22.964356387475394, -43.217093371973654 -22.964255484171304, -43.21691594536473 -22.964171567634978, -43.21673114785451 -22.964105446028537, -43.21654075914403 -22.964057756139194, -43.21634661278066 -22.964028957246654, -43.2161505785 -22.9640193267, -43.215954544219336 -22.964028957246654, -43.215760397855966 -22.964057756139194, -43.21557000914549 -22.964105446028537, -43.215385211635265 -22.964171567634978, -43.215207785026344 -22.964255484171304, -43.21503943803396 -22.964356387475394, -43.214881791931674 -22.964473305793273, -43.21473636493763 -22.964605113137626, -43.214604557593276 -22.96475054013167, -43.2144876392754 -22.96490818623396, -43.2143867359713 -22.96507653322635, -43.21430281943498 -22.96525395983527, -43.21423669782853 -22.965438757345492, -43.21418900793919 -22.965629146055967, -43.21416020904665 -22.96582329241934, -43.214150578499996 -22.9660193267))" +000236,Cosme Velho,Zona Sul,88a8a078b9fffff,,,,,,,, +000239,Leblon,Zona Sul,88a8a07ab3fffff,,,,,,,, +000240,Botafogo,Zona Sul,88a8a07885fffff,TRUE,61,-22.95778211,-43.1908425,PC,G,Botafogo,"POLYGON ((-43.1888425032 -22.9577821066, -43.18885213374666 -22.95797814088066, -43.188880932639194 -22.958172287244032, -43.188928622528536 -22.958362675954508, -43.18899474413498 -22.95854747346473, -43.189078660671306 -22.95872490007365, -43.1891795639754 -22.95889324706604, -43.18929648229328 -22.959050893168328, -43.18942828963763 -22.959196320162373, -43.18957371663168 -22.959328127506726, -43.189731362733966 -22.959445045824605, -43.18989970972635 -22.959545949128696, -43.19007713633527 -22.959629865665022, -43.19026193384549 -22.959695987271463, -43.19045232255597 -22.959743677160805, -43.19064646891934 -22.959772476053345, -43.1908425032 -22.9597821066, -43.191038537480665 -22.959772476053345, -43.191232683844035 -22.959743677160805, -43.191423072554514 -22.959695987271463, -43.191607870064736 -22.959629865665022, -43.19178529667366 -22.959545949128696, -43.19195364366604 -22.959445045824605, -43.19211128976833 -22.959328127506726, -43.19225671676237 -22.959196320162373, -43.192388524106725 -22.959050893168328, -43.192505442424604 -22.95889324706604, -43.1926063457287 -22.95872490007365, -43.192690262265025 -22.95854747346473, -43.19275638387147 -22.958362675954508, -43.19280407376081 -22.958172287244032, -43.19283287265335 -22.95797814088066, -43.192842503200005 -22.9577821066, -43.19283287265335 -22.95758607231934, -43.19280407376081 -22.957391925955967, -43.19275638387147 -22.957201537245492, -43.192690262265025 -22.95701673973527, -43.1926063457287 -22.95683931312635, -43.192505442424604 -22.95667096613396, -43.192388524106725 -22.95651332003167, -43.19225671676237 -22.956367893037626, -43.19211128976833 -22.956236085693273, -43.19195364366604 -22.956119167375395, -43.19178529667366 -22.956018264071304, -43.191607870064736 -22.955934347534978, -43.191423072554514 -22.955868225928537, -43.191232683844035 -22.955820536039194, -43.191038537480665 -22.955791737146654, -43.1908425032 -22.9557821066, -43.19064646891934 -22.955791737146654, -43.19045232255597 -22.955820536039194, -43.19026193384549 -22.955868225928537, -43.19007713633527 -22.955934347534978, -43.18989970972635 -22.956018264071304, -43.189731362733966 -22.956119167375395, -43.18957371663168 -22.956236085693273, -43.18942828963763 -22.956367893037626, -43.18929648229328 -22.95651332003167, -43.1891795639754 -22.95667096613396, -43.189078660671306 -22.95683931312635, -43.18899474413498 -22.95701673973527, -43.188928622528536 -22.957201537245492, -43.188880932639194 -22.957391925955967, -43.18885213374666 -22.95758607231934, -43.1888425032 -22.9577821066))" +000241,Vidigal,Zona Sul,88a8a07a9bfffff,,,,,,,, +000242,Jardim Botânico,Zona Sul,88a8a0788bfffff,,,,,,,, +000243,Lagoa,Zona Sul,88a8a078d5fffff,TRUE,210,-22.96186133,-43.21023106,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2082310594 -22.9618613319, -43.208240689946656 -22.96205736618066, -43.20826948883919 -22.962251512544032, -43.208317178728535 -22.962441901254508, -43.20838330033498 -22.96262669876473, -43.208467216871306 -22.96280412537365, -43.2085681201754 -22.96297247236604, -43.20868503849328 -22.963130118468328, -43.20881684583763 -22.963275545462373, -43.20896227283168 -22.963407352806726, -43.209119918933965 -22.963524271124605, -43.20928826592635 -22.963625174428696, -43.20946569253527 -22.963709090965022, -43.20965049004549 -22.963775212571463, -43.20984087875597 -22.963822902460805, -43.21003502511934 -22.963851701353345, -43.2102310594 -22.9638613319, -43.210427093680664 -22.963851701353345, -43.210621240044034 -22.963822902460805, -43.21081162875451 -22.963775212571463, -43.210996426264735 -22.963709090965022, -43.21117385287366 -22.963625174428696, -43.21134219986604 -22.963524271124605, -43.211499845968326 -22.963407352806726, -43.21164527296237 -22.963275545462373, -43.211777080306724 -22.963130118468328, -43.2118939986246 -22.96297247236604, -43.2119949019287 -22.96280412537365, -43.212078818465024 -22.96262669876473, -43.21214494007147 -22.962441901254508, -43.21219262996081 -22.962251512544032, -43.21222142885335 -22.96205736618066, -43.212231059400004 -22.9618613319, -43.21222142885335 -22.96166529761934, -43.21219262996081 -22.961471151255967, -43.21214494007147 -22.961280762545492, -43.212078818465024 -22.96109596503527, -43.2119949019287 -22.96091853842635, -43.2118939986246 -22.96075019143396, -43.211777080306724 -22.96059254533167, -43.21164527296237 -22.960447118337626, -43.211499845968326 -22.960315310993273, -43.21134219986604 -22.960198392675395, -43.21117385287366 -22.960097489371304, -43.210996426264735 -22.960013572834978, -43.21081162875451 -22.959947451228537, -43.210621240044034 -22.959899761339194, -43.210427093680664 -22.959870962446654, -43.2102310594 -22.9598613319, -43.21003502511934 -22.959870962446654, -43.20984087875597 -22.959899761339194, -43.20965049004549 -22.959947451228537, -43.20946569253527 -22.960013572834978, -43.20928826592635 -22.960097489371304, -43.209119918933965 -22.960198392675395, -43.20896227283168 -22.960315310993273, -43.20881684583763 -22.960447118337626, -43.20868503849328 -22.96059254533167, -43.2085681201754 -22.96075019143396, -43.208467216871306 -22.96091853842635, -43.20838330033498 -22.96109596503527, -43.208317178728535 -22.961280762545492, -43.20826948883919 -22.961471151255967, -43.208240689946656 -22.96166529761934, -43.2082310594 -22.9618613319))" +000245,Leblon,Zona Sul,88a8a07abbfffff,,,,,,,, +000247,Centro,Centro,88a8a06a0bfffff,,,,,,,, +000249,Leblon,Zona Sul,88a8a07ab7fffff,,,,,,,, +000250,Gávea,Zona Sul,88a8a06365fffff,,,,,,,, +000252,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +000253,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +000254,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +000255,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000256,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +000257,Leme,Zona Sul,88a8a078e5fffff,TRUE,93,-22.9624021,-43.16993847,PC,ZS,Praia de Copacabana,"POLYGON ((-43.1679384705 -22.9624020977, -43.167948101046655 -22.96259813198066, -43.16797689993919 -22.962792278344033, -43.16802458982853 -22.962982667054508, -43.16809071143498 -22.96316746456473, -43.168174627971304 -22.96334489117365, -43.1682755312754 -22.96351323816604, -43.16839244959328 -22.96367088426833, -43.16852425693763 -22.963816311262374, -43.168669683931675 -22.963948118606726, -43.16882733003396 -22.964065036924605, -43.168995677026345 -22.964165940228696, -43.169173103635266 -22.964249856765022, -43.16935790114549 -22.964315978371463, -43.16954828985597 -22.964363668260805, -43.16974243621934 -22.964392467153345, -43.1699384705 -22.9644020977, -43.17013450478066 -22.964392467153345, -43.17032865114403 -22.964363668260805, -43.17051903985451 -22.964315978371463, -43.170703837364734 -22.964249856765022, -43.170881263973655 -22.964165940228696, -43.17104961096604 -22.964065036924605, -43.171207257068325 -22.963948118606726, -43.17135268406237 -22.963816311262374, -43.17148449140672 -22.96367088426833, -43.1716014097246 -22.96351323816604, -43.171702313028696 -22.96334489117365, -43.17178622956502 -22.96316746456473, -43.17185235117147 -22.962982667054508, -43.17190004106081 -22.962792278344033, -43.171928839953345 -22.96259813198066, -43.1719384705 -22.9624020977, -43.171928839953345 -22.96220606341934, -43.17190004106081 -22.962011917055968, -43.17185235117147 -22.961821528345492, -43.17178622956502 -22.96163673083527, -43.171702313028696 -22.96145930422635, -43.1716014097246 -22.96129095723396, -43.17148449140672 -22.96113331113167, -43.17135268406237 -22.960987884137626, -43.171207257068325 -22.960856076793274, -43.17104961096604 -22.960739158475395, -43.170881263973655 -22.960638255171304, -43.170703837364734 -22.960554338634978, -43.17051903985451 -22.960488217028537, -43.17032865114403 -22.960440527139195, -43.17013450478066 -22.960411728246655, -43.1699384705 -22.9604020977, -43.16974243621934 -22.960411728246655, -43.16954828985597 -22.960440527139195, -43.16935790114549 -22.960488217028537, -43.169173103635266 -22.960554338634978, -43.168995677026345 -22.960638255171304, -43.16882733003396 -22.960739158475395, -43.168669683931675 -22.960856076793274, -43.16852425693763 -22.960987884137626, -43.16839244959328 -22.96113331113167, -43.1682755312754 -22.96129095723396, -43.168174627971304 -22.96145930422635, -43.16809071143498 -22.96163673083527, -43.16802458982853 -22.961821528345492, -43.16797689993919 -22.962011917055968, -43.167948101046655 -22.96220606341934, -43.1679384705 -22.9624020977))" +000259,Lagoa,Zona Sul,88a8a078ddfffff,TRUE,87,-22.9728625,-43.21738326,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2153832583 -22.9728625016, -43.21539288884666 -22.97305853588066, -43.215421687739195 -22.973252682244034, -43.21546937762854 -22.97344307095451, -43.21553549923498 -22.97362786846473, -43.21561941577131 -22.973805295073653, -43.2157203190754 -22.973973642066042, -43.21583723739328 -22.97413128816833, -43.21596904473763 -22.974276715162375, -43.21611447173168 -22.974408522506728, -43.21627211783397 -22.974525440824607, -43.21644046482635 -22.974626344128698, -43.21661789143527 -22.974710260665024, -43.21680268894549 -22.974776382271465, -43.21699307765597 -22.974824072160807, -43.21718722401934 -22.974852871053347, -43.2173832583 -22.9748625016, -43.217579292580666 -22.974852871053347, -43.217773438944036 -22.974824072160807, -43.217963827654515 -22.974776382271465, -43.21814862516474 -22.974710260665024, -43.21832605177366 -22.974626344128698, -43.21849439876604 -22.974525440824607, -43.21865204486833 -22.974408522506728, -43.21879747186237 -22.974276715162375, -43.218929279206726 -22.97413128816833, -43.219046197524605 -22.973973642066042, -43.2191471008287 -22.973805295073653, -43.219231017365026 -22.97362786846473, -43.21929713897147 -22.97344307095451, -43.21934482886081 -22.973252682244034, -43.21937362775335 -22.97305853588066, -43.219383258300006 -22.9728625016, -43.21937362775335 -22.972666467319343, -43.21934482886081 -22.97247232095597, -43.21929713897147 -22.972281932245494, -43.219231017365026 -22.97209713473527, -43.2191471008287 -22.97191970812635, -43.219046197524605 -22.97175136113396, -43.218929279206726 -22.971593715031673, -43.21879747186237 -22.971448288037628, -43.21865204486833 -22.971316480693275, -43.21849439876604 -22.971199562375396, -43.21832605177366 -22.971098659071306, -43.21814862516474 -22.97101474253498, -43.217963827654515 -22.97094862092854, -43.217773438944036 -22.970900931039196, -43.217579292580666 -22.970872132146656, -43.2173832583 -22.970862501600003, -43.21718722401934 -22.970872132146656, -43.21699307765597 -22.970900931039196, -43.21680268894549 -22.97094862092854, -43.21661789143527 -22.97101474253498, -43.21644046482635 -22.971098659071306, -43.21627211783397 -22.971199562375396, -43.21611447173168 -22.971316480693275, -43.21596904473763 -22.971448288037628, -43.21583723739328 -22.971593715031673, -43.2157203190754 -22.97175136113396, -43.21561941577131 -22.97191970812635, -43.21553549923498 -22.97209713473527, -43.21546937762854 -22.972281932245494, -43.215421687739195 -22.97247232095597, -43.21539288884666 -22.972666467319343, -43.2153832583 -22.9728625016))" +000260,Botafogo,Zona Sul,88a8a078abfffff,TRUE,2,-22.94936755,-43.18484537,PC,G,Praia de Botafogo,"POLYGON ((-43.182845371199996 -22.9493675527, -43.18285500174665 -22.94956358698066, -43.18288380063919 -22.949757733344033, -43.18293149052853 -22.949948122054508, -43.182997612134976 -22.95013291956473, -43.1830815286713 -22.95031034617365, -43.183182431975396 -22.95047869316604, -43.183299350293275 -22.95063633926833, -43.18343115763763 -22.950781766262374, -43.18357658463167 -22.950913573606726, -43.18373423073396 -22.951030491924605, -43.18390257772634 -22.951131395228696, -43.184080004335264 -22.951215311765022, -43.18426480184549 -22.951281433371463, -43.184455190555965 -22.951329123260805, -43.184649336919335 -22.951357922153345, -43.1848453712 -22.9513675527, -43.18504140548066 -22.951357922153345, -43.18523555184403 -22.951329123260805, -43.18542594055451 -22.951281433371463, -43.18561073806473 -22.951215311765022, -43.18578816467365 -22.951131395228696, -43.185956511666035 -22.951030491924605, -43.18611415776832 -22.950913573606726, -43.18625958476237 -22.950781766262374, -43.18639139210672 -22.95063633926833, -43.1865083104246 -22.95047869316604, -43.186609213728694 -22.95031034617365, -43.18669313026502 -22.95013291956473, -43.186759251871464 -22.949948122054508, -43.18680694176081 -22.949757733344033, -43.18683574065334 -22.94956358698066, -43.1868453712 -22.9493675527, -43.18683574065334 -22.94917151841934, -43.18680694176081 -22.948977372055968, -43.186759251871464 -22.948786983345492, -43.18669313026502 -22.94860218583527, -43.186609213728694 -22.94842475922635, -43.1865083104246 -22.94825641223396, -43.18639139210672 -22.94809876613167, -43.18625958476237 -22.947953339137626, -43.18611415776832 -22.947821531793274, -43.185956511666035 -22.947704613475395, -43.18578816467365 -22.947603710171304, -43.18561073806473 -22.947519793634978, -43.18542594055451 -22.947453672028537, -43.18523555184403 -22.947405982139195, -43.18504140548066 -22.947377183246655, -43.1848453712 -22.9473675527, -43.184649336919335 -22.947377183246655, -43.184455190555965 -22.947405982139195, -43.18426480184549 -22.947453672028537, -43.184080004335264 -22.947519793634978, -43.18390257772634 -22.947603710171304, -43.18373423073396 -22.947704613475395, -43.18357658463167 -22.947821531793274, -43.18343115763763 -22.947953339137626, -43.183299350293275 -22.94809876613167, -43.183182431975396 -22.94825641223396, -43.1830815286713 -22.94842475922635, -43.182997612134976 -22.94860218583527, -43.18293149052853 -22.948786983345492, -43.18288380063919 -22.948977372055968, -43.18285500174665 -22.94917151841934, -43.182845371199996 -22.9493675527))" +000261,Botafogo,Zona Sul,88a8a07885fffff,TRUE,3,-22.9545708,-43.18746808,PC,G,Praia de Botafogo,"POLYGON ((-43.185468082499995 -22.9545708016, -43.18547771304665 -22.95476683588066, -43.18550651193919 -22.95496098224403, -43.18555420182853 -22.955151370954507, -43.185620323434975 -22.95533616846473, -43.1857042399713 -22.95551359507365, -43.185805143275395 -22.95568194206604, -43.185922061593274 -22.955839588168327, -43.18605386893763 -22.955985015162373, -43.18619929593167 -22.956116822506726, -43.18635694203396 -22.956233740824604, -43.18652528902634 -22.956334644128695, -43.18670271563526 -22.95641856066502, -43.186887513145486 -22.956484682271462, -43.187077901855965 -22.956532372160805, -43.187272048219334 -22.956561171053345, -43.1874680825 -22.956570801599998, -43.18766411678066 -22.956561171053345, -43.18785826314403 -22.956532372160805, -43.18804865185451 -22.956484682271462, -43.18823344936473 -22.95641856066502, -43.18841087597365 -22.956334644128695, -43.188579222966034 -22.956233740824604, -43.18873686906832 -22.956116822506726, -43.18888229606237 -22.955985015162373, -43.18901410340672 -22.955839588168327, -43.1891310217246 -22.95568194206604, -43.18923192502869 -22.95551359507365, -43.18931584156502 -22.95533616846473, -43.18938196317146 -22.955151370954507, -43.189429653060806 -22.95496098224403, -43.18945845195334 -22.95476683588066, -43.1894680825 -22.9545708016, -43.18945845195334 -22.95437476731934, -43.189429653060806 -22.954180620955967, -43.18938196317146 -22.95399023224549, -43.18931584156502 -22.95380543473527, -43.18923192502869 -22.953628008126348, -43.1891310217246 -22.95345966113396, -43.18901410340672 -22.95330201503167, -43.18888229606237 -22.953156588037626, -43.18873686906832 -22.953024780693273, -43.188579222966034 -22.952907862375394, -43.18841087597365 -22.952806959071303, -43.18823344936473 -22.952723042534977, -43.18804865185451 -22.952656920928536, -43.18785826314403 -22.952609231039194, -43.18766411678066 -22.952580432146654, -43.1874680825 -22.9525708016, -43.187272048219334 -22.952580432146654, -43.187077901855965 -22.952609231039194, -43.186887513145486 -22.952656920928536, -43.18670271563526 -22.952723042534977, -43.18652528902634 -22.952806959071303, -43.18635694203396 -22.952907862375394, -43.18619929593167 -22.953024780693273, -43.18605386893763 -22.953156588037626, -43.185922061593274 -22.95330201503167, -43.185805143275395 -22.95345966113396, -43.1857042399713 -22.953628008126348, -43.185620323434975 -22.95380543473527, -43.18555420182853 -22.95399023224549, -43.18550651193919 -22.954180620955967, -43.18547771304665 -22.95437476731934, -43.185468082499995 -22.9545708016))" +000262,Botafogo,Zona Sul,88a8a078abfffff,,,,,,,, +000263,Botafogo,Zona Sul,88a8a078abfffff,TRUE,310,-22.94645425,-43.18171682,PO,ZS,Praia de Botafogo,"POLYGON ((-43.1797168186 -22.9464542504, -43.179726449146656 -22.946650284680658, -43.17975524803919 -22.94684443104403, -43.179802937928535 -22.947034819754506, -43.17986905953498 -22.94721961726473, -43.179952976071306 -22.94739704387365, -43.1800538793754 -22.94756539086604, -43.18017079769328 -22.947723036968327, -43.18030260503763 -22.947868463962372, -43.18044803203168 -22.948000271306725, -43.180605678133965 -22.948117189624604, -43.18077402512635 -22.948218092928695, -43.18095145173527 -22.94830200946502, -43.18113624924549 -22.94836813107146, -43.18132663795597 -22.948415820960804, -43.18152078431934 -22.948444619853344, -43.1817168186 -22.948454250399998, -43.181912852880664 -22.948444619853344, -43.182106999244034 -22.948415820960804, -43.18229738795451 -22.94836813107146, -43.182482185464735 -22.94830200946502, -43.18265961207366 -22.948218092928695, -43.18282795906604 -22.948117189624604, -43.18298560516833 -22.948000271306725, -43.18313103216237 -22.947868463962372, -43.183262839506725 -22.947723036968327, -43.1833797578246 -22.94756539086604, -43.1834806611287 -22.94739704387365, -43.183564577665024 -22.94721961726473, -43.18363069927147 -22.947034819754506, -43.18367838916081 -22.94684443104403, -43.18370718805335 -22.946650284680658, -43.183716818600004 -22.9464542504, -43.18370718805335 -22.94625821611934, -43.18367838916081 -22.946064069755966, -43.18363069927147 -22.94587368104549, -43.183564577665024 -22.94568888353527, -43.1834806611287 -22.945511456926347, -43.1833797578246 -22.945343109933958, -43.183262839506725 -22.94518546383167, -43.18313103216237 -22.945040036837625, -43.18298560516833 -22.944908229493272, -43.18282795906604 -22.944791311175393, -43.18265961207366 -22.944690407871303, -43.182482185464735 -22.944606491334977, -43.18229738795451 -22.944540369728536, -43.182106999244034 -22.944492679839193, -43.181912852880664 -22.944463880946653, -43.1817168186 -22.9444542504, -43.18152078431934 -22.944463880946653, -43.18132663795597 -22.944492679839193, -43.18113624924549 -22.944540369728536, -43.18095145173527 -22.944606491334977, -43.18077402512635 -22.944690407871303, -43.180605678133965 -22.944791311175393, -43.18044803203168 -22.944908229493272, -43.18030260503763 -22.945040036837625, -43.18017079769328 -22.94518546383167, -43.1800538793754 -22.945343109933958, -43.179952976071306 -22.945511456926347, -43.17986905953498 -22.94568888353527, -43.179802937928535 -22.94587368104549, -43.17975524803919 -22.946064069755966, -43.179726449146656 -22.94625821611934, -43.1797168186 -22.9464542504))" +000264,Botafogo,Zona Sul,88a8a078abfffff,TRUE,310,-22.94645425,-43.18171682,PO,ZS,Praia de Botafogo,"POLYGON ((-43.1797168186 -22.9464542504, -43.179726449146656 -22.946650284680658, -43.17975524803919 -22.94684443104403, -43.179802937928535 -22.947034819754506, -43.17986905953498 -22.94721961726473, -43.179952976071306 -22.94739704387365, -43.1800538793754 -22.94756539086604, -43.18017079769328 -22.947723036968327, -43.18030260503763 -22.947868463962372, -43.18044803203168 -22.948000271306725, -43.180605678133965 -22.948117189624604, -43.18077402512635 -22.948218092928695, -43.18095145173527 -22.94830200946502, -43.18113624924549 -22.94836813107146, -43.18132663795597 -22.948415820960804, -43.18152078431934 -22.948444619853344, -43.1817168186 -22.948454250399998, -43.181912852880664 -22.948444619853344, -43.182106999244034 -22.948415820960804, -43.18229738795451 -22.94836813107146, -43.182482185464735 -22.94830200946502, -43.18265961207366 -22.948218092928695, -43.18282795906604 -22.948117189624604, -43.18298560516833 -22.948000271306725, -43.18313103216237 -22.947868463962372, -43.183262839506725 -22.947723036968327, -43.1833797578246 -22.94756539086604, -43.1834806611287 -22.94739704387365, -43.183564577665024 -22.94721961726473, -43.18363069927147 -22.947034819754506, -43.18367838916081 -22.94684443104403, -43.18370718805335 -22.946650284680658, -43.183716818600004 -22.9464542504, -43.18370718805335 -22.94625821611934, -43.18367838916081 -22.946064069755966, -43.18363069927147 -22.94587368104549, -43.183564577665024 -22.94568888353527, -43.1834806611287 -22.945511456926347, -43.1833797578246 -22.945343109933958, -43.183262839506725 -22.94518546383167, -43.18313103216237 -22.945040036837625, -43.18298560516833 -22.944908229493272, -43.18282795906604 -22.944791311175393, -43.18265961207366 -22.944690407871303, -43.182482185464735 -22.944606491334977, -43.18229738795451 -22.944540369728536, -43.182106999244034 -22.944492679839193, -43.181912852880664 -22.944463880946653, -43.1817168186 -22.9444542504, -43.18152078431934 -22.944463880946653, -43.18132663795597 -22.944492679839193, -43.18113624924549 -22.944540369728536, -43.18095145173527 -22.944606491334977, -43.18077402512635 -22.944690407871303, -43.180605678133965 -22.944791311175393, -43.18044803203168 -22.944908229493272, -43.18030260503763 -22.945040036837625, -43.18017079769328 -22.94518546383167, -43.1800538793754 -22.945343109933958, -43.179952976071306 -22.945511456926347, -43.17986905953498 -22.94568888353527, -43.179802937928535 -22.94587368104549, -43.17975524803919 -22.946064069755966, -43.179726449146656 -22.94625821611934, -43.1797168186 -22.9464542504))" +000266,Laranjeiras,Zona Sul,88a8a078bdfffff,,,,,,,, +000267,São Conrado,Zona Sul,88a8a07a93fffff,TRUE,306,-22.99173247,-43.25010428,PO,ZS,Praia de Sao Conrado,"POLYGON ((-43.2481042831 -22.9917324729, -43.248113913646655 -22.99192850718066, -43.24814271253919 -22.992122653544033, -43.248190402428534 -22.99231304225451, -43.24825652403498 -22.99249783976473, -43.248340440571305 -22.992675266373652, -43.2484413438754 -22.99284361336604, -43.24855826219328 -22.99300125946833, -43.24869006953763 -22.993146686462374, -43.248835496531676 -22.993278493806727, -43.248993142633964 -22.993395412124606, -43.249161489626346 -22.993496315428697, -43.24933891623527 -22.993580231965023, -43.24952371374549 -22.993646353571464, -43.24971410245597 -22.993694043460806, -43.24990824881934 -22.993722842353346, -43.2501042831 -22.9937324729, -43.25030031738066 -22.993722842353346, -43.25049446374403 -22.993694043460806, -43.25068485245451 -22.993646353571464, -43.250869649964734 -22.993580231965023, -43.251047076573656 -22.993496315428697, -43.25121542356604 -22.993395412124606, -43.251373069668325 -22.993278493806727, -43.25151849666237 -22.993146686462374, -43.25165030400672 -22.99300125946833, -43.2517672223246 -22.99284361336604, -43.2518681256287 -22.992675266373652, -43.25195204216502 -22.99249783976473, -43.25201816377147 -22.99231304225451, -43.25206585366081 -22.992122653544033, -43.252094652553346 -22.99192850718066, -43.2521042831 -22.9917324729, -43.252094652553346 -22.99153643861934, -43.25206585366081 -22.99134229225597, -43.25201816377147 -22.991151903545493, -43.25195204216502 -22.99096710603527, -43.2518681256287 -22.99078967942635, -43.2517672223246 -22.99062133243396, -43.25165030400672 -22.990463686331672, -43.25151849666237 -22.990318259337627, -43.251373069668325 -22.990186451993274, -43.25121542356604 -22.990069533675396, -43.251047076573656 -22.989968630371305, -43.250869649964734 -22.98988471383498, -43.25068485245451 -22.989818592228538, -43.25049446374403 -22.989770902339195, -43.25030031738066 -22.989742103446655, -43.2501042831 -22.989732472900002, -43.24990824881934 -22.989742103446655, -43.24971410245597 -22.989770902339195, -43.24952371374549 -22.989818592228538, -43.24933891623527 -22.98988471383498, -43.249161489626346 -22.989968630371305, -43.248993142633964 -22.990069533675396, -43.248835496531676 -22.990186451993274, -43.24869006953763 -22.990318259337627, -43.24855826219328 -22.990463686331672, -43.2484413438754 -22.99062133243396, -43.248340440571305 -22.99078967942635, -43.24825652403498 -22.99096710603527, -43.248190402428534 -22.991151903545493, -43.24814271253919 -22.99134229225597, -43.248113913646655 -22.99153643861934, -43.2481042831 -22.9917324729))" +000268,Catete,Zona Sul,88a8a06a49fffff,TRUE,5,-22.92977593,-43.17739661,PC,G,Rio Carioca,"POLYGON ((-43.1753966127 -22.9297759342, -43.175406243246655 -22.929971968480658, -43.17543504213919 -22.93016611484403, -43.175482732028534 -22.930356503554506, -43.17554885363498 -22.93054130106473, -43.175632770171305 -22.93071872767365, -43.1757336734754 -22.93088707466604, -43.17585059179328 -22.931044720768327, -43.17598239913763 -22.931190147762372, -43.176127826131676 -22.931321955106725, -43.176285472233964 -22.931438873424604, -43.176453819226346 -22.931539776728695, -43.17663124583527 -22.93162369326502, -43.17681604334549 -22.93168981487146, -43.17700643205597 -22.931737504760804, -43.17720057841934 -22.931766303653344, -43.1773966127 -22.931775934199997, -43.17759264698066 -22.931766303653344, -43.17778679334403 -22.931737504760804, -43.17797718205451 -22.93168981487146, -43.178161979564734 -22.93162369326502, -43.178339406173656 -22.931539776728695, -43.17850775316604 -22.931438873424604, -43.178665399268326 -22.931321955106725, -43.17881082626237 -22.931190147762372, -43.178942633606724 -22.931044720768327, -43.1790595519246 -22.93088707466604, -43.1791604552287 -22.93071872767365, -43.17924437176502 -22.93054130106473, -43.17931049337147 -22.930356503554506, -43.17935818326081 -22.93016611484403, -43.179386982153346 -22.929971968480658, -43.1793966127 -22.9297759342, -43.179386982153346 -22.92957989991934, -43.17935818326081 -22.929385753555966, -43.17931049337147 -22.92919536484549, -43.17924437176502 -22.92901056733527, -43.1791604552287 -22.928833140726347, -43.1790595519246 -22.928664793733958, -43.178942633606724 -22.92850714763167, -43.17881082626237 -22.928361720637625, -43.178665399268326 -22.928229913293272, -43.17850775316604 -22.928112994975393, -43.178339406173656 -22.928012091671302, -43.178161979564734 -22.927928175134976, -43.17797718205451 -22.927862053528536, -43.17778679334403 -22.927814363639193, -43.17759264698066 -22.927785564746653, -43.1773966127 -22.9277759342, -43.17720057841934 -22.927785564746653, -43.17700643205597 -22.927814363639193, -43.17681604334549 -22.927862053528536, -43.17663124583527 -22.927928175134976, -43.176453819226346 -22.928012091671302, -43.176285472233964 -22.928112994975393, -43.176127826131676 -22.928229913293272, -43.17598239913763 -22.928361720637625, -43.17585059179328 -22.92850714763167, -43.1757336734754 -22.928664793733958, -43.175632770171305 -22.928833140726347, -43.17554885363498 -22.92901056733527, -43.175482732028534 -22.92919536484549, -43.17543504213919 -22.929385753555966, -43.175406243246655 -22.92957989991934, -43.1753966127 -22.9297759342))" +000269,Botafogo,Zona Sul,88a8a0788dfffff,TRUE,61,-22.95778211,-43.1908425,PC,G,Botafogo,"POLYGON ((-43.1888425032 -22.9577821066, -43.18885213374666 -22.95797814088066, -43.188880932639194 -22.958172287244032, -43.188928622528536 -22.958362675954508, -43.18899474413498 -22.95854747346473, -43.189078660671306 -22.95872490007365, -43.1891795639754 -22.95889324706604, -43.18929648229328 -22.959050893168328, -43.18942828963763 -22.959196320162373, -43.18957371663168 -22.959328127506726, -43.189731362733966 -22.959445045824605, -43.18989970972635 -22.959545949128696, -43.19007713633527 -22.959629865665022, -43.19026193384549 -22.959695987271463, -43.19045232255597 -22.959743677160805, -43.19064646891934 -22.959772476053345, -43.1908425032 -22.9597821066, -43.191038537480665 -22.959772476053345, -43.191232683844035 -22.959743677160805, -43.191423072554514 -22.959695987271463, -43.191607870064736 -22.959629865665022, -43.19178529667366 -22.959545949128696, -43.19195364366604 -22.959445045824605, -43.19211128976833 -22.959328127506726, -43.19225671676237 -22.959196320162373, -43.192388524106725 -22.959050893168328, -43.192505442424604 -22.95889324706604, -43.1926063457287 -22.95872490007365, -43.192690262265025 -22.95854747346473, -43.19275638387147 -22.958362675954508, -43.19280407376081 -22.958172287244032, -43.19283287265335 -22.95797814088066, -43.192842503200005 -22.9577821066, -43.19283287265335 -22.95758607231934, -43.19280407376081 -22.957391925955967, -43.19275638387147 -22.957201537245492, -43.192690262265025 -22.95701673973527, -43.1926063457287 -22.95683931312635, -43.192505442424604 -22.95667096613396, -43.192388524106725 -22.95651332003167, -43.19225671676237 -22.956367893037626, -43.19211128976833 -22.956236085693273, -43.19195364366604 -22.956119167375395, -43.19178529667366 -22.956018264071304, -43.191607870064736 -22.955934347534978, -43.191423072554514 -22.955868225928537, -43.191232683844035 -22.955820536039194, -43.191038537480665 -22.955791737146654, -43.1908425032 -22.9557821066, -43.19064646891934 -22.955791737146654, -43.19045232255597 -22.955820536039194, -43.19026193384549 -22.955868225928537, -43.19007713633527 -22.955934347534978, -43.18989970972635 -22.956018264071304, -43.189731362733966 -22.956119167375395, -43.18957371663168 -22.956236085693273, -43.18942828963763 -22.956367893037626, -43.18929648229328 -22.95651332003167, -43.1891795639754 -22.95667096613396, -43.189078660671306 -22.95683931312635, -43.18899474413498 -22.95701673973527, -43.188928622528536 -22.957201537245492, -43.188880932639194 -22.957391925955967, -43.18885213374666 -22.95758607231934, -43.1888425032 -22.9577821066))" +000270,Ipanema,Zona Sul,88a8a07ab7fffff,,,,,,,, +000272,Ipanema,Zona Sul,88a8a078c9fffff,,,,,,,, +000275,Lagoa,Zona Sul,88a8a078c1fffff,TRUE,338,-22.97734814,-43.19794411,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.1959441127 -22.9773481427, -43.195953743246655 -22.977544176980658, -43.19598254213919 -22.97773832334403, -43.196030232028534 -22.977928712054506, -43.19609635363498 -22.97811350956473, -43.196180270171304 -22.97829093617365, -43.1962811734754 -22.97845928316604, -43.19639809179328 -22.978616929268327, -43.19652989913763 -22.978762356262372, -43.196675326131675 -22.978894163606725, -43.19683297223396 -22.979011081924604, -43.197001319226345 -22.979111985228695, -43.19717874583527 -22.97919590176502, -43.19736354334549 -22.97926202337146, -43.19755393205597 -22.979309713260804, -43.19774807841934 -22.979338512153344, -43.1979441127 -22.979348142699997, -43.19814014698066 -22.979338512153344, -43.19833429334403 -22.979309713260804, -43.19852468205451 -22.97926202337146, -43.198709479564734 -22.97919590176502, -43.198886906173655 -22.979111985228695, -43.19905525316604 -22.979011081924604, -43.199212899268325 -22.978894163606725, -43.19935832626237 -22.978762356262372, -43.19949013360672 -22.978616929268327, -43.1996070519246 -22.97845928316604, -43.199707955228696 -22.97829093617365, -43.19979187176502 -22.97811350956473, -43.19985799337147 -22.977928712054506, -43.19990568326081 -22.97773832334403, -43.199934482153346 -22.977544176980658, -43.1999441127 -22.9773481427, -43.199934482153346 -22.97715210841934, -43.19990568326081 -22.976957962055966, -43.19985799337147 -22.97676757334549, -43.19979187176502 -22.97658277583527, -43.199707955228696 -22.976405349226347, -43.1996070519246 -22.976237002233958, -43.19949013360672 -22.97607935613167, -43.19935832626237 -22.975933929137625, -43.199212899268325 -22.975802121793272, -43.19905525316604 -22.975685203475393, -43.198886906173655 -22.975584300171302, -43.198709479564734 -22.975500383634976, -43.19852468205451 -22.975434262028536, -43.19833429334403 -22.975386572139193, -43.19814014698066 -22.975357773246653, -43.1979441127 -22.9753481427, -43.19774807841934 -22.975357773246653, -43.19755393205597 -22.975386572139193, -43.19736354334549 -22.975434262028536, -43.19717874583527 -22.975500383634976, -43.197001319226345 -22.975584300171302, -43.19683297223396 -22.975685203475393, -43.196675326131675 -22.975802121793272, -43.19652989913763 -22.975933929137625, -43.19639809179328 -22.97607935613167, -43.1962811734754 -22.976237002233958, -43.196180270171304 -22.976405349226347, -43.19609635363498 -22.97658277583527, -43.196030232028534 -22.97676757334549, -43.19598254213919 -22.976957962055966, -43.195953743246655 -22.97715210841934, -43.1959441127 -22.9773481427))" +000276,Ipanema,Zona Sul,88a8a078c9fffff,,,,,,,, +000277,Copacabana,Zona Sul,88a8a078e7fffff,,,,,,,, +000278,Copacabana,Zona Sul,88a8a078ebfffff,TRUE,85,-22.96619496,-43.18590674,PC,ZS,Praia de Copacabana,"POLYGON ((-43.183906740999994 -22.9661949618, -43.18391637154665 -22.96639099608066, -43.18394517043919 -22.966585142444032, -43.18399286032853 -22.966775531154507, -43.184058981934974 -22.96696032866473, -43.1841428984713 -22.96713775527365, -43.184243801775395 -22.96730610226604, -43.184360720093274 -22.967463748368328, -43.18449252743763 -22.967609175362373, -43.18463795443167 -22.967740982706726, -43.18479560053396 -22.967857901024605, -43.18496394752634 -22.967958804328696, -43.18514137413526 -22.96804272086502, -43.185326171645485 -22.968108842471462, -43.185516560355964 -22.968156532360805, -43.185710706719334 -22.968185331253345, -43.185906741 -22.9681949618, -43.18610277528066 -22.968185331253345, -43.18629692164403 -22.968156532360805, -43.18648731035451 -22.968108842471462, -43.18667210786473 -22.96804272086502, -43.18684953447365 -22.967958804328696, -43.18701788146603 -22.967857901024605, -43.18717552756832 -22.967740982706726, -43.18732095456237 -22.967609175362373, -43.18745276190672 -22.967463748368328, -43.1875696802246 -22.96730610226604, -43.18767058352869 -22.96713775527365, -43.18775450006502 -22.96696032866473, -43.18782062167146 -22.966775531154507, -43.187868311560806 -22.966585142444032, -43.18789711045334 -22.96639099608066, -43.187906741 -22.9661949618, -43.18789711045334 -22.96599892751934, -43.187868311560806 -22.965804781155967, -43.18782062167146 -22.96561439244549, -43.18775450006502 -22.96542959493527, -43.18767058352869 -22.965252168326348, -43.1875696802246 -22.96508382133396, -43.18745276190672 -22.96492617523167, -43.18732095456237 -22.964780748237626, -43.18717552756832 -22.964648940893273, -43.18701788146603 -22.964532022575394, -43.18684953447365 -22.964431119271303, -43.18667210786473 -22.964347202734977, -43.18648731035451 -22.964281081128536, -43.18629692164403 -22.964233391239194, -43.18610277528066 -22.964204592346654, -43.185906741 -22.9641949618, -43.185710706719334 -22.964204592346654, -43.185516560355964 -22.964233391239194, -43.185326171645485 -22.964281081128536, -43.18514137413526 -22.964347202734977, -43.18496394752634 -22.964431119271303, -43.18479560053396 -22.964532022575394, -43.18463795443167 -22.964648940893273, -43.18449252743763 -22.964780748237626, -43.184360720093274 -22.96492617523167, -43.184243801775395 -22.96508382133396, -43.1841428984713 -22.965252168326348, -43.184058981934974 -22.96542959493527, -43.18399286032853 -22.96561439244549, -43.18394517043919 -22.965804781155967, -43.18391637154665 -22.96599892751934, -43.183906740999994 -22.9661949618))" +000279,Botafogo,Zona Sul,88a8a07885fffff,TRUE,3,-22.9545708,-43.18746808,PC,G,Praia de Botafogo,"POLYGON ((-43.185468082499995 -22.9545708016, -43.18547771304665 -22.95476683588066, -43.18550651193919 -22.95496098224403, -43.18555420182853 -22.955151370954507, -43.185620323434975 -22.95533616846473, -43.1857042399713 -22.95551359507365, -43.185805143275395 -22.95568194206604, -43.185922061593274 -22.955839588168327, -43.18605386893763 -22.955985015162373, -43.18619929593167 -22.956116822506726, -43.18635694203396 -22.956233740824604, -43.18652528902634 -22.956334644128695, -43.18670271563526 -22.95641856066502, -43.186887513145486 -22.956484682271462, -43.187077901855965 -22.956532372160805, -43.187272048219334 -22.956561171053345, -43.1874680825 -22.956570801599998, -43.18766411678066 -22.956561171053345, -43.18785826314403 -22.956532372160805, -43.18804865185451 -22.956484682271462, -43.18823344936473 -22.95641856066502, -43.18841087597365 -22.956334644128695, -43.188579222966034 -22.956233740824604, -43.18873686906832 -22.956116822506726, -43.18888229606237 -22.955985015162373, -43.18901410340672 -22.955839588168327, -43.1891310217246 -22.95568194206604, -43.18923192502869 -22.95551359507365, -43.18931584156502 -22.95533616846473, -43.18938196317146 -22.955151370954507, -43.189429653060806 -22.95496098224403, -43.18945845195334 -22.95476683588066, -43.1894680825 -22.9545708016, -43.18945845195334 -22.95437476731934, -43.189429653060806 -22.954180620955967, -43.18938196317146 -22.95399023224549, -43.18931584156502 -22.95380543473527, -43.18923192502869 -22.953628008126348, -43.1891310217246 -22.95345966113396, -43.18901410340672 -22.95330201503167, -43.18888229606237 -22.953156588037626, -43.18873686906832 -22.953024780693273, -43.188579222966034 -22.952907862375394, -43.18841087597365 -22.952806959071303, -43.18823344936473 -22.952723042534977, -43.18804865185451 -22.952656920928536, -43.18785826314403 -22.952609231039194, -43.18766411678066 -22.952580432146654, -43.1874680825 -22.9525708016, -43.187272048219334 -22.952580432146654, -43.187077901855965 -22.952609231039194, -43.186887513145486 -22.952656920928536, -43.18670271563526 -22.952723042534977, -43.18652528902634 -22.952806959071303, -43.18635694203396 -22.952907862375394, -43.18619929593167 -22.953024780693273, -43.18605386893763 -22.953156588037626, -43.185922061593274 -22.95330201503167, -43.185805143275395 -22.95345966113396, -43.1857042399713 -22.953628008126348, -43.185620323434975 -22.95380543473527, -43.18555420182853 -22.95399023224549, -43.18550651193919 -22.954180620955967, -43.18547771304665 -22.95437476731934, -43.185468082499995 -22.9545708016))" +000281,Ipanema,Zona Sul,88a8a07ab5fffff,,,,,,,, +000282,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000283,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000284,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +000286,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +000287,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +000289,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +000290,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +000291,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000292,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000293,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +000294,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000295,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +000296,Copacabana,Zona Sul,88a8a078e3fffff,,,,,,,, +000297,Botafogo,Zona Sul,88a8a07887fffff,,,,,,,, +000298,Lagoa,Zona Sul,88a8a078cbfffff,TRUE,92,-22.97915686,-43.20207383,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.200073830099996 -22.9791568554, -43.20008346064665 -22.97935288968066, -43.20011225953919 -22.979547036044032, -43.20015994942853 -22.979737424754507, -43.200226071034976 -22.97992222226473, -43.2003099875713 -22.98009964887365, -43.200410890875396 -22.98026799586604, -43.200527809193275 -22.980425641968328, -43.20065961653763 -22.980571068962373, -43.20080504353167 -22.980702876306726, -43.20096268963396 -22.980819794624605, -43.20113103662634 -22.980920697928696, -43.201308463235264 -22.98100461446502, -43.20149326074549 -22.981070736071462, -43.201683649455966 -22.981118425960805, -43.201877795819335 -22.981147224853345, -43.2020738301 -22.9811568554, -43.20226986438066 -22.981147224853345, -43.20246401074403 -22.981118425960805, -43.20265439945451 -22.981070736071462, -43.20283919696473 -22.98100461446502, -43.20301662357365 -22.980920697928696, -43.203184970566035 -22.980819794624605, -43.20334261666832 -22.980702876306726, -43.20348804366237 -22.980571068962373, -43.20361985100672 -22.980425641968328, -43.2037367693246 -22.98026799586604, -43.203837672628694 -22.98009964887365, -43.20392158916502 -22.97992222226473, -43.203987710771464 -22.979737424754507, -43.20403540066081 -22.979547036044032, -43.20406419955334 -22.97935288968066, -43.2040738301 -22.9791568554, -43.20406419955334 -22.97896082111934, -43.20403540066081 -22.978766674755967, -43.203987710771464 -22.97857628604549, -43.20392158916502 -22.97839148853527, -43.203837672628694 -22.978214061926348, -43.2037367693246 -22.97804571493396, -43.20361985100672 -22.97788806883167, -43.20348804366237 -22.977742641837626, -43.20334261666832 -22.977610834493273, -43.203184970566035 -22.977493916175394, -43.20301662357365 -22.977393012871303, -43.20283919696473 -22.977309096334977, -43.20265439945451 -22.977242974728536, -43.20246401074403 -22.977195284839194, -43.20226986438066 -22.977166485946654, -43.2020738301 -22.9771568554, -43.201877795819335 -22.977166485946654, -43.201683649455966 -22.977195284839194, -43.20149326074549 -22.977242974728536, -43.201308463235264 -22.977309096334977, -43.20113103662634 -22.977393012871303, -43.20096268963396 -22.977493916175394, -43.20080504353167 -22.977610834493273, -43.20065961653763 -22.977742641837626, -43.200527809193275 -22.97788806883167, -43.200410890875396 -22.97804571493396, -43.2003099875713 -22.978214061926348, -43.200226071034976 -22.97839148853527, -43.20015994942853 -22.97857628604549, -43.20011225953919 -22.978766674755967, -43.20008346064665 -22.97896082111934, -43.200073830099996 -22.9791568554))" +000299,Botafogo,Zona Sul,88a8a078abfffff,TRUE,1,-22.94557694,-43.1837652,PC,G,Praia de Botafogo,"POLYGON ((-43.181765198099995 -22.9455769427, -43.18177482864665 -22.94577297698066, -43.18180362753919 -22.945967123344033, -43.18185131742853 -22.94615751205451, -43.181917439034976 -22.94634230956473, -43.1820013555713 -22.946519736173652, -43.182102258875396 -22.94668808316604, -43.182219177193275 -22.94684572926833, -43.18235098453763 -22.946991156262374, -43.18249641153167 -22.947122963606727, -43.18265405763396 -22.947239881924606, -43.18282240462634 -22.947340785228697, -43.182999831235264 -22.947424701765023, -43.18318462874549 -22.947490823371464, -43.183375017455965 -22.947538513260806, -43.183569163819335 -22.947567312153346, -43.1837651981 -22.9475769427, -43.18396123238066 -22.947567312153346, -43.18415537874403 -22.947538513260806, -43.18434576745451 -22.947490823371464, -43.18453056496473 -22.947424701765023, -43.18470799157365 -22.947340785228697, -43.184876338566035 -22.947239881924606, -43.18503398466832 -22.947122963606727, -43.18517941166237 -22.946991156262374, -43.18531121900672 -22.94684572926833, -43.1854281373246 -22.94668808316604, -43.185529040628694 -22.946519736173652, -43.18561295716502 -22.94634230956473, -43.185679078771464 -22.94615751205451, -43.18572676866081 -22.945967123344033, -43.18575556755334 -22.94577297698066, -43.1857651981 -22.9455769427, -43.18575556755334 -22.94538090841934, -43.18572676866081 -22.945186762055968, -43.185679078771464 -22.944996373345493, -43.18561295716502 -22.94481157583527, -43.185529040628694 -22.94463414922635, -43.1854281373246 -22.94446580223396, -43.18531121900672 -22.944308156131672, -43.18517941166237 -22.944162729137627, -43.18503398466832 -22.944030921793274, -43.184876338566035 -22.943914003475395, -43.18470799157365 -22.943813100171305, -43.18453056496473 -22.94372918363498, -43.18434576745451 -22.943663062028538, -43.18415537874403 -22.943615372139195, -43.18396123238066 -22.943586573246655, -43.1837651981 -22.943576942700002, -43.183569163819335 -22.943586573246655, -43.183375017455965 -22.943615372139195, -43.18318462874549 -22.943663062028538, -43.182999831235264 -22.94372918363498, -43.18282240462634 -22.943813100171305, -43.18265405763396 -22.943914003475395, -43.18249641153167 -22.944030921793274, -43.18235098453763 -22.944162729137627, -43.182219177193275 -22.944308156131672, -43.182102258875396 -22.94446580223396, -43.1820013555713 -22.94463414922635, -43.181917439034976 -22.94481157583527, -43.18185131742853 -22.944996373345493, -43.18180362753919 -22.945186762055968, -43.18177482864665 -22.94538090841934, -43.181765198099995 -22.9455769427))" +000300,Botafogo,Zona Sul,88a8a078abfffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +000302,Botafogo,Zona Sul,88a8a078abfffff,TRUE,1,-22.94557694,-43.1837652,PC,G,Praia de Botafogo,"POLYGON ((-43.181765198099995 -22.9455769427, -43.18177482864665 -22.94577297698066, -43.18180362753919 -22.945967123344033, -43.18185131742853 -22.94615751205451, -43.181917439034976 -22.94634230956473, -43.1820013555713 -22.946519736173652, -43.182102258875396 -22.94668808316604, -43.182219177193275 -22.94684572926833, -43.18235098453763 -22.946991156262374, -43.18249641153167 -22.947122963606727, -43.18265405763396 -22.947239881924606, -43.18282240462634 -22.947340785228697, -43.182999831235264 -22.947424701765023, -43.18318462874549 -22.947490823371464, -43.183375017455965 -22.947538513260806, -43.183569163819335 -22.947567312153346, -43.1837651981 -22.9475769427, -43.18396123238066 -22.947567312153346, -43.18415537874403 -22.947538513260806, -43.18434576745451 -22.947490823371464, -43.18453056496473 -22.947424701765023, -43.18470799157365 -22.947340785228697, -43.184876338566035 -22.947239881924606, -43.18503398466832 -22.947122963606727, -43.18517941166237 -22.946991156262374, -43.18531121900672 -22.94684572926833, -43.1854281373246 -22.94668808316604, -43.185529040628694 -22.946519736173652, -43.18561295716502 -22.94634230956473, -43.185679078771464 -22.94615751205451, -43.18572676866081 -22.945967123344033, -43.18575556755334 -22.94577297698066, -43.1857651981 -22.9455769427, -43.18575556755334 -22.94538090841934, -43.18572676866081 -22.945186762055968, -43.185679078771464 -22.944996373345493, -43.18561295716502 -22.94481157583527, -43.185529040628694 -22.94463414922635, -43.1854281373246 -22.94446580223396, -43.18531121900672 -22.944308156131672, -43.18517941166237 -22.944162729137627, -43.18503398466832 -22.944030921793274, -43.184876338566035 -22.943914003475395, -43.18470799157365 -22.943813100171305, -43.18453056496473 -22.94372918363498, -43.18434576745451 -22.943663062028538, -43.18415537874403 -22.943615372139195, -43.18396123238066 -22.943586573246655, -43.1837651981 -22.943576942700002, -43.183569163819335 -22.943586573246655, -43.183375017455965 -22.943615372139195, -43.18318462874549 -22.943663062028538, -43.182999831235264 -22.94372918363498, -43.18282240462634 -22.943813100171305, -43.18265405763396 -22.943914003475395, -43.18249641153167 -22.944030921793274, -43.18235098453763 -22.944162729137627, -43.182219177193275 -22.944308156131672, -43.182102258875396 -22.94446580223396, -43.1820013555713 -22.94463414922635, -43.181917439034976 -22.94481157583527, -43.18185131742853 -22.944996373345493, -43.18180362753919 -22.945186762055968, -43.18177482864665 -22.94538090841934, -43.181765198099995 -22.9455769427))" +000303,Botafogo,Zona Sul,88a8a078abfffff,TRUE,2,-22.94936755,-43.18484537,PC,G,Praia de Botafogo,"POLYGON ((-43.182845371199996 -22.9493675527, -43.18285500174665 -22.94956358698066, -43.18288380063919 -22.949757733344033, -43.18293149052853 -22.949948122054508, -43.182997612134976 -22.95013291956473, -43.1830815286713 -22.95031034617365, -43.183182431975396 -22.95047869316604, -43.183299350293275 -22.95063633926833, -43.18343115763763 -22.950781766262374, -43.18357658463167 -22.950913573606726, -43.18373423073396 -22.951030491924605, -43.18390257772634 -22.951131395228696, -43.184080004335264 -22.951215311765022, -43.18426480184549 -22.951281433371463, -43.184455190555965 -22.951329123260805, -43.184649336919335 -22.951357922153345, -43.1848453712 -22.9513675527, -43.18504140548066 -22.951357922153345, -43.18523555184403 -22.951329123260805, -43.18542594055451 -22.951281433371463, -43.18561073806473 -22.951215311765022, -43.18578816467365 -22.951131395228696, -43.185956511666035 -22.951030491924605, -43.18611415776832 -22.950913573606726, -43.18625958476237 -22.950781766262374, -43.18639139210672 -22.95063633926833, -43.1865083104246 -22.95047869316604, -43.186609213728694 -22.95031034617365, -43.18669313026502 -22.95013291956473, -43.186759251871464 -22.949948122054508, -43.18680694176081 -22.949757733344033, -43.18683574065334 -22.94956358698066, -43.1868453712 -22.9493675527, -43.18683574065334 -22.94917151841934, -43.18680694176081 -22.948977372055968, -43.186759251871464 -22.948786983345492, -43.18669313026502 -22.94860218583527, -43.186609213728694 -22.94842475922635, -43.1865083104246 -22.94825641223396, -43.18639139210672 -22.94809876613167, -43.18625958476237 -22.947953339137626, -43.18611415776832 -22.947821531793274, -43.185956511666035 -22.947704613475395, -43.18578816467365 -22.947603710171304, -43.18561073806473 -22.947519793634978, -43.18542594055451 -22.947453672028537, -43.18523555184403 -22.947405982139195, -43.18504140548066 -22.947377183246655, -43.1848453712 -22.9473675527, -43.184649336919335 -22.947377183246655, -43.184455190555965 -22.947405982139195, -43.18426480184549 -22.947453672028537, -43.184080004335264 -22.947519793634978, -43.18390257772634 -22.947603710171304, -43.18373423073396 -22.947704613475395, -43.18357658463167 -22.947821531793274, -43.18343115763763 -22.947953339137626, -43.183299350293275 -22.94809876613167, -43.183182431975396 -22.94825641223396, -43.1830815286713 -22.94842475922635, -43.182997612134976 -22.94860218583527, -43.18293149052853 -22.948786983345492, -43.18288380063919 -22.948977372055968, -43.18285500174665 -22.94917151841934, -43.182845371199996 -22.9493675527))" +000305,Urca,Zona Sul,88a8a078adfffff,,,,,,,, +000306,Urca,Zona Sul,88a8a078a9fffff,TRUE,305,-22.95105933,-43.17452325,PO,ZS,Praia de Botafogo,"POLYGON ((-43.1725232489 -22.9510593309, -43.172532879446656 -22.95125536518066, -43.17256167833919 -22.951449511544034, -43.172609368228535 -22.95163990025451, -43.17267548983498 -22.95182469776473, -43.172759406371306 -22.952002124373653, -43.1728603096754 -22.952170471366042, -43.17297722799328 -22.95232811746833, -43.17310903533763 -22.952473544462375, -43.17325446233168 -22.952605351806728, -43.173412108433965 -22.952722270124607, -43.17358045542635 -22.952823173428698, -43.17375788203527 -22.952907089965024, -43.17394267954549 -22.952973211571464, -43.17413306825597 -22.953020901460807, -43.17432721461934 -22.953049700353347, -43.1745232489 -22.9530593309, -43.174719283180664 -22.953049700353347, -43.174913429544034 -22.953020901460807, -43.17510381825451 -22.952973211571464, -43.175288615764735 -22.952907089965024, -43.17546604237366 -22.952823173428698, -43.17563438936604 -22.952722270124607, -43.175792035468326 -22.952605351806728, -43.17593746246237 -22.952473544462375, -43.176069269806725 -22.95232811746833, -43.1761861881246 -22.952170471366042, -43.1762870914287 -22.952002124373653, -43.176371007965024 -22.95182469776473, -43.17643712957147 -22.95163990025451, -43.17648481946081 -22.951449511544034, -43.17651361835335 -22.95125536518066, -43.176523248900004 -22.9510593309, -43.17651361835335 -22.950863296619342, -43.17648481946081 -22.95066915025597, -43.17643712957147 -22.950478761545494, -43.176371007965024 -22.95029396403527, -43.1762870914287 -22.95011653742635, -43.1761861881246 -22.94994819043396, -43.176069269806725 -22.949790544331673, -43.17593746246237 -22.949645117337628, -43.175792035468326 -22.949513309993275, -43.17563438936604 -22.949396391675396, -43.17546604237366 -22.949295488371305, -43.175288615764735 -22.94921157183498, -43.17510381825451 -22.94914545022854, -43.174913429544034 -22.949097760339196, -43.174719283180664 -22.949068961446656, -43.1745232489 -22.949059330900003, -43.17432721461934 -22.949068961446656, -43.17413306825597 -22.949097760339196, -43.17394267954549 -22.94914545022854, -43.17375788203527 -22.94921157183498, -43.17358045542635 -22.949295488371305, -43.173412108433965 -22.949396391675396, -43.17325446233168 -22.949513309993275, -43.17310903533763 -22.949645117337628, -43.17297722799328 -22.949790544331673, -43.1728603096754 -22.94994819043396, -43.172759406371306 -22.95011653742635, -43.17267548983498 -22.95029396403527, -43.172609368228535 -22.950478761545494, -43.17256167833919 -22.95066915025597, -43.172532879446656 -22.950863296619342, -43.1725232489 -22.9510593309))" +000308,Flamengo,Zona Sul,88a8a078a7fffff,,,,,,,, +000310,Catete,Zona Sul,88a8a06a49fffff,,,,,,,, +000311,Flamengo,Zona Sul,88a8a06a49fffff,,,,,,,, +000312,Catete,Zona Sul,88a8a06a41fffff,TRUE,6,-22.92470001,-43.17620286,PC,G,Rio Carioca,"POLYGON ((-43.1742028606 -22.9247000079, -43.174212491146655 -22.92489604218066, -43.17424129003919 -22.925090188544033, -43.174288979928534 -22.925280577254508, -43.17435510153498 -22.92546537476473, -43.174439018071304 -22.92564280137365, -43.1745399213754 -22.92581114836604, -43.17465683969328 -22.92596879446833, -43.17478864703763 -22.926114221462374, -43.174934074031675 -22.926246028806727, -43.17509172013396 -22.926362947124606, -43.175260067126345 -22.926463850428696, -43.17543749373527 -22.926547766965022, -43.17562229124549 -22.926613888571463, -43.17581267995597 -22.926661578460806, -43.17600682631934 -22.926690377353346, -43.1762028606 -22.9267000079, -43.17639889488066 -22.926690377353346, -43.17659304124403 -22.926661578460806, -43.17678342995451 -22.926613888571463, -43.176968227464734 -22.926547766965022, -43.177145654073655 -22.926463850428696, -43.17731400106604 -22.926362947124606, -43.177471647168325 -22.926246028806727, -43.17761707416237 -22.926114221462374, -43.17774888150672 -22.92596879446833, -43.1778657998246 -22.92581114836604, -43.177966703128696 -22.92564280137365, -43.17805061966502 -22.92546537476473, -43.17811674127147 -22.925280577254508, -43.17816443116081 -22.925090188544033, -43.178193230053346 -22.92489604218066, -43.1782028606 -22.9247000079, -43.178193230053346 -22.92450397361934, -43.17816443116081 -22.924309827255968, -43.17811674127147 -22.924119438545492, -43.17805061966502 -22.92393464103527, -43.177966703128696 -22.92375721442635, -43.1778657998246 -22.92358886743396, -43.17774888150672 -22.923431221331672, -43.17761707416237 -22.923285794337627, -43.177471647168325 -22.923153986993274, -43.17731400106604 -22.923037068675395, -43.177145654073655 -22.922936165371304, -43.176968227464734 -22.922852248834978, -43.17678342995451 -22.922786127228537, -43.17659304124403 -22.922738437339195, -43.17639889488066 -22.922709638446655, -43.1762028606 -22.9227000079, -43.17600682631934 -22.922709638446655, -43.17581267995597 -22.922738437339195, -43.17562229124549 -22.922786127228537, -43.17543749373527 -22.922852248834978, -43.175260067126345 -22.922936165371304, -43.17509172013396 -22.923037068675395, -43.174934074031675 -22.923153986993274, -43.17478864703763 -22.923285794337627, -43.17465683969328 -22.923431221331672, -43.1745399213754 -22.92358886743396, -43.174439018071304 -22.92375721442635, -43.17435510153498 -22.92393464103527, -43.174288979928534 -22.924119438545492, -43.17424129003919 -22.924309827255968, -43.174212491146655 -22.92450397361934, -43.1742028606 -22.9247000079))" +000313,Catete,Zona Sul,88a8a06a41fffff,TRUE,6,-22.92470001,-43.17620286,PC,G,Rio Carioca,"POLYGON ((-43.1742028606 -22.9247000079, -43.174212491146655 -22.92489604218066, -43.17424129003919 -22.925090188544033, -43.174288979928534 -22.925280577254508, -43.17435510153498 -22.92546537476473, -43.174439018071304 -22.92564280137365, -43.1745399213754 -22.92581114836604, -43.17465683969328 -22.92596879446833, -43.17478864703763 -22.926114221462374, -43.174934074031675 -22.926246028806727, -43.17509172013396 -22.926362947124606, -43.175260067126345 -22.926463850428696, -43.17543749373527 -22.926547766965022, -43.17562229124549 -22.926613888571463, -43.17581267995597 -22.926661578460806, -43.17600682631934 -22.926690377353346, -43.1762028606 -22.9267000079, -43.17639889488066 -22.926690377353346, -43.17659304124403 -22.926661578460806, -43.17678342995451 -22.926613888571463, -43.176968227464734 -22.926547766965022, -43.177145654073655 -22.926463850428696, -43.17731400106604 -22.926362947124606, -43.177471647168325 -22.926246028806727, -43.17761707416237 -22.926114221462374, -43.17774888150672 -22.92596879446833, -43.1778657998246 -22.92581114836604, -43.177966703128696 -22.92564280137365, -43.17805061966502 -22.92546537476473, -43.17811674127147 -22.925280577254508, -43.17816443116081 -22.925090188544033, -43.178193230053346 -22.92489604218066, -43.1782028606 -22.9247000079, -43.178193230053346 -22.92450397361934, -43.17816443116081 -22.924309827255968, -43.17811674127147 -22.924119438545492, -43.17805061966502 -22.92393464103527, -43.177966703128696 -22.92375721442635, -43.1778657998246 -22.92358886743396, -43.17774888150672 -22.923431221331672, -43.17761707416237 -22.923285794337627, -43.177471647168325 -22.923153986993274, -43.17731400106604 -22.923037068675395, -43.177145654073655 -22.922936165371304, -43.176968227464734 -22.922852248834978, -43.17678342995451 -22.922786127228537, -43.17659304124403 -22.922738437339195, -43.17639889488066 -22.922709638446655, -43.1762028606 -22.9227000079, -43.17600682631934 -22.922709638446655, -43.17581267995597 -22.922738437339195, -43.17562229124549 -22.922786127228537, -43.17543749373527 -22.922852248834978, -43.175260067126345 -22.922936165371304, -43.17509172013396 -22.923037068675395, -43.174934074031675 -22.923153986993274, -43.17478864703763 -22.923285794337627, -43.17465683969328 -22.923431221331672, -43.1745399213754 -22.92358886743396, -43.174439018071304 -22.92375721442635, -43.17435510153498 -22.92393464103527, -43.174288979928534 -22.924119438545492, -43.17424129003919 -22.924309827255968, -43.174212491146655 -22.92450397361934, -43.1742028606 -22.9247000079))" +000314,Flamengo,Zona Sul,88a8a06a41fffff,,,,,,,, +000315,Glória,Centro,88a8a06a41fffff,TRUE,298,-22.91920668,-43.17685138,PO,G,Centro,"POLYGON ((-43.1748513775 -22.9192066825, -43.174861008046655 -22.91940271678066, -43.17488980693919 -22.919596863144033, -43.174937496828534 -22.91978725185451, -43.17500361843498 -22.91997204936473, -43.175087534971304 -22.920149475973652, -43.1751884382754 -22.92031782296604, -43.17530535659328 -22.92047546906833, -43.17543716393763 -22.920620896062374, -43.175582590931675 -22.920752703406727, -43.17574023703396 -22.920869621724606, -43.175908584026345 -22.920970525028697, -43.17608601063527 -22.921054441565023, -43.17627080814549 -22.921120563171463, -43.17646119685597 -22.921168253060806, -43.17665534321934 -22.921197051953346, -43.1768513775 -22.9212066825, -43.17704741178066 -22.921197051953346, -43.17724155814403 -22.921168253060806, -43.17743194685451 -22.921120563171463, -43.177616744364734 -22.921054441565023, -43.177794170973655 -22.920970525028697, -43.17796251796604 -22.920869621724606, -43.178120164068325 -22.920752703406727, -43.17826559106237 -22.920620896062374, -43.17839739840672 -22.92047546906833, -43.1785143167246 -22.92031782296604, -43.178615220028696 -22.920149475973652, -43.17869913656502 -22.91997204936473, -43.17876525817147 -22.91978725185451, -43.17881294806081 -22.919596863144033, -43.178841746953346 -22.91940271678066, -43.1788513775 -22.9192066825, -43.178841746953346 -22.91901064821934, -43.17881294806081 -22.918816501855968, -43.17876525817147 -22.918626113145493, -43.17869913656502 -22.91844131563527, -43.178615220028696 -22.91826388902635, -43.1785143167246 -22.91809554203396, -43.17839739840672 -22.917937895931672, -43.17826559106237 -22.917792468937627, -43.178120164068325 -22.917660661593274, -43.17796251796604 -22.917543743275395, -43.177794170973655 -22.917442839971304, -43.177616744364734 -22.91735892343498, -43.17743194685451 -22.917292801828538, -43.17724155814403 -22.917245111939195, -43.17704741178066 -22.917216313046655, -43.1768513775 -22.9172066825, -43.17665534321934 -22.917216313046655, -43.17646119685597 -22.917245111939195, -43.17627080814549 -22.917292801828538, -43.17608601063527 -22.91735892343498, -43.175908584026345 -22.917442839971304, -43.17574023703396 -22.917543743275395, -43.175582590931675 -22.917660661593274, -43.17543716393763 -22.917792468937627, -43.17530535659328 -22.917937895931672, -43.1751884382754 -22.91809554203396, -43.175087534971304 -22.91826388902635, -43.17500361843498 -22.91844131563527, -43.174937496828534 -22.918626113145493, -43.17488980693919 -22.918816501855968, -43.174861008046655 -22.91901064821934, -43.1748513775 -22.9192066825))" +000318,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +000319,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +000320,Copacabana,Zona Sul,88a8a0788dfffff,,,,,,,, +000321,Ipanema,Zona Sul,88a8a078c9fffff,,,,,,,, +000322,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +000323,Copacabana,Zona Sul,88a8a078c7fffff,,,,,,,, +000324,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +000325,Humaitá,Zona Sul,88a8a07881fffff,,,,,,,, +000326,Lagoa,Zona Sul,88a8a0788bfffff,TRUE,91,-22.96221596,-43.20386245,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2018624531 -22.9622159606, -43.201872083646656 -22.962411994880657, -43.20190088253919 -22.96260614124403, -43.201948572428535 -22.962796529954506, -43.20201469403498 -22.96298132746473, -43.202098610571305 -22.96315875407365, -43.2021995138754 -22.96332710106604, -43.20231643219328 -22.963484747168327, -43.20244823953763 -22.963630174162372, -43.202593666531676 -22.963761981506725, -43.202751312633964 -22.963878899824604, -43.202919659626346 -22.963979803128694, -43.20309708623527 -22.96406371966502, -43.20328188374549 -22.96412984127146, -43.20347227245597 -22.964177531160804, -43.20366641881934 -22.964206330053344, -43.2038624531 -22.964215960599997, -43.204058487380664 -22.964206330053344, -43.204252633744034 -22.964177531160804, -43.20444302245451 -22.96412984127146, -43.204627819964735 -22.96406371966502, -43.204805246573656 -22.963979803128694, -43.20497359356604 -22.963878899824604, -43.205131239668326 -22.963761981506725, -43.20527666666237 -22.963630174162372, -43.205408474006724 -22.963484747168327, -43.2055253923246 -22.96332710106604, -43.2056262956287 -22.96315875407365, -43.20571021216502 -22.96298132746473, -43.20577633377147 -22.962796529954506, -43.20582402366081 -22.96260614124403, -43.20585282255335 -22.962411994880657, -43.2058624531 -22.9622159606, -43.20585282255335 -22.96201992631934, -43.20582402366081 -22.961825779955966, -43.20577633377147 -22.96163539124549, -43.20571021216502 -22.961450593735268, -43.2056262956287 -22.961273167126347, -43.2055253923246 -22.961104820133958, -43.205408474006724 -22.96094717403167, -43.20527666666237 -22.960801747037625, -43.205131239668326 -22.960669939693272, -43.20497359356604 -22.960553021375393, -43.204805246573656 -22.960452118071302, -43.204627819964735 -22.960368201534976, -43.20444302245451 -22.960302079928535, -43.204252633744034 -22.960254390039193, -43.204058487380664 -22.960225591146653, -43.2038624531 -22.9602159606, -43.20366641881934 -22.960225591146653, -43.20347227245597 -22.960254390039193, -43.20328188374549 -22.960302079928535, -43.20309708623527 -22.960368201534976, -43.202919659626346 -22.960452118071302, -43.202751312633964 -22.960553021375393, -43.202593666531676 -22.960669939693272, -43.20244823953763 -22.960801747037625, -43.20231643219328 -22.96094717403167, -43.2021995138754 -22.961104820133958, -43.202098610571305 -22.961273167126347, -43.20201469403498 -22.961450593735268, -43.201948572428535 -22.96163539124549, -43.20190088253919 -22.961825779955966, -43.201872083646656 -22.96201992631934, -43.2018624531 -22.9622159606))" +000328,São Conrado,Zona Sul,88a8a07a93fffff,TRUE,306,-22.99173247,-43.25010428,PO,ZS,Praia de Sao Conrado,"POLYGON ((-43.2481042831 -22.9917324729, -43.248113913646655 -22.99192850718066, -43.24814271253919 -22.992122653544033, -43.248190402428534 -22.99231304225451, -43.24825652403498 -22.99249783976473, -43.248340440571305 -22.992675266373652, -43.2484413438754 -22.99284361336604, -43.24855826219328 -22.99300125946833, -43.24869006953763 -22.993146686462374, -43.248835496531676 -22.993278493806727, -43.248993142633964 -22.993395412124606, -43.249161489626346 -22.993496315428697, -43.24933891623527 -22.993580231965023, -43.24952371374549 -22.993646353571464, -43.24971410245597 -22.993694043460806, -43.24990824881934 -22.993722842353346, -43.2501042831 -22.9937324729, -43.25030031738066 -22.993722842353346, -43.25049446374403 -22.993694043460806, -43.25068485245451 -22.993646353571464, -43.250869649964734 -22.993580231965023, -43.251047076573656 -22.993496315428697, -43.25121542356604 -22.993395412124606, -43.251373069668325 -22.993278493806727, -43.25151849666237 -22.993146686462374, -43.25165030400672 -22.99300125946833, -43.2517672223246 -22.99284361336604, -43.2518681256287 -22.992675266373652, -43.25195204216502 -22.99249783976473, -43.25201816377147 -22.99231304225451, -43.25206585366081 -22.992122653544033, -43.252094652553346 -22.99192850718066, -43.2521042831 -22.9917324729, -43.252094652553346 -22.99153643861934, -43.25206585366081 -22.99134229225597, -43.25201816377147 -22.991151903545493, -43.25195204216502 -22.99096710603527, -43.2518681256287 -22.99078967942635, -43.2517672223246 -22.99062133243396, -43.25165030400672 -22.990463686331672, -43.25151849666237 -22.990318259337627, -43.251373069668325 -22.990186451993274, -43.25121542356604 -22.990069533675396, -43.251047076573656 -22.989968630371305, -43.250869649964734 -22.98988471383498, -43.25068485245451 -22.989818592228538, -43.25049446374403 -22.989770902339195, -43.25030031738066 -22.989742103446655, -43.2501042831 -22.989732472900002, -43.24990824881934 -22.989742103446655, -43.24971410245597 -22.989770902339195, -43.24952371374549 -22.989818592228538, -43.24933891623527 -22.98988471383498, -43.249161489626346 -22.989968630371305, -43.248993142633964 -22.990069533675396, -43.248835496531676 -22.990186451993274, -43.24869006953763 -22.990318259337627, -43.24855826219328 -22.990463686331672, -43.2484413438754 -22.99062133243396, -43.248340440571305 -22.99078967942635, -43.24825652403498 -22.99096710603527, -43.248190402428534 -22.991151903545493, -43.24814271253919 -22.99134229225597, -43.248113913646655 -22.99153643861934, -43.2481042831 -22.9917324729))" +000329,São Conrado,Zona Sul,88a8a06349fffff,,,,,,,, +000330,Ipanema,Zona Sul,88a8a07ab5fffff,,,,,,,, +000331,Lagoa,Zona Sul,88a8a078c3fffff,TRUE,221,-22.97275468,-43.20246142,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2004614174 -22.9727546821, -43.20047104794666 -22.97295071638066, -43.20049984683919 -22.973144862744032, -43.200547536728536 -22.973335251454507, -43.20061365833498 -22.97352004896473, -43.200697574871306 -22.97369747557365, -43.2007984781754 -22.97386582256604, -43.20091539649328 -22.974023468668328, -43.20104720383763 -22.974168895662373, -43.20119263083168 -22.974300703006726, -43.201350276933965 -22.974417621324605, -43.20151862392635 -22.974518524628696, -43.20169605053527 -22.974602441165022, -43.20188084804549 -22.974668562771463, -43.20207123675597 -22.974716252660805, -43.20226538311934 -22.974745051553345, -43.2024614174 -22.9747546821, -43.202657451680665 -22.974745051553345, -43.202851598044035 -22.974716252660805, -43.20304198675451 -22.974668562771463, -43.203226784264736 -22.974602441165022, -43.20340421087366 -22.974518524628696, -43.20357255786604 -22.974417621324605, -43.20373020396833 -22.974300703006726, -43.20387563096237 -22.974168895662373, -43.204007438306725 -22.974023468668328, -43.204124356624604 -22.97386582256604, -43.2042252599287 -22.97369747557365, -43.204309176465024 -22.97352004896473, -43.20437529807147 -22.973335251454507, -43.20442298796081 -22.973144862744032, -43.20445178685335 -22.97295071638066, -43.204461417400005 -22.9727546821, -43.20445178685335 -22.97255864781934, -43.20442298796081 -22.972364501455967, -43.20437529807147 -22.972174112745492, -43.204309176465024 -22.97198931523527, -43.2042252599287 -22.97181188862635, -43.204124356624604 -22.97164354163396, -43.204007438306725 -22.97148589553167, -43.20387563096237 -22.971340468537626, -43.20373020396833 -22.971208661193273, -43.20357255786604 -22.971091742875394, -43.20340421087366 -22.970990839571304, -43.203226784264736 -22.970906923034978, -43.20304198675451 -22.970840801428537, -43.202851598044035 -22.970793111539194, -43.202657451680665 -22.970764312646654, -43.2024614174 -22.9707546821, -43.20226538311934 -22.970764312646654, -43.20207123675597 -22.970793111539194, -43.20188084804549 -22.970840801428537, -43.20169605053527 -22.970906923034978, -43.20151862392635 -22.970990839571304, -43.201350276933965 -22.971091742875394, -43.20119263083168 -22.971208661193273, -43.20104720383763 -22.971340468537626, -43.20091539649328 -22.97148589553167, -43.2007984781754 -22.97164354163396, -43.200697574871306 -22.97181188862635, -43.20061365833498 -22.97198931523527, -43.200547536728536 -22.972174112745492, -43.20049984683919 -22.972364501455967, -43.20047104794666 -22.97255864781934, -43.2004614174 -22.9727546821))" +000333,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +000334,Tijuca,Grande Tijuca,88a8a06161fffff,TRUE,44,-22.9209589,-43.22230828,PC,G,Canal do Mangue,"POLYGON ((-43.2203082792 -22.9209589031, -43.220317909746655 -22.92115493738066, -43.22034670863919 -22.921349083744033, -43.22039439852853 -22.92153947245451, -43.22046052013498 -22.92172426996473, -43.220544436671304 -22.921901696573652, -43.2206453399754 -22.92207004356604, -43.22076225829328 -22.92222768966833, -43.22089406563763 -22.922373116662374, -43.221039492631675 -22.922504924006727, -43.22119713873396 -22.922621842324606, -43.221365485726345 -22.922722745628697, -43.221542912335266 -22.922806662165023, -43.22172770984549 -22.922872783771464, -43.22191809855597 -22.922920473660806, -43.22211224491934 -22.922949272553346, -43.2223082792 -22.9229589031, -43.22250431348066 -22.922949272553346, -43.22269845984403 -22.922920473660806, -43.22288884855451 -22.922872783771464, -43.223073646064734 -22.922806662165023, -43.223251072673655 -22.922722745628697, -43.22341941966604 -22.922621842324606, -43.223577065768325 -22.922504924006727, -43.22372249276237 -22.922373116662374, -43.22385430010672 -22.92222768966833, -43.2239712184246 -22.92207004356604, -43.224072121728696 -22.921901696573652, -43.22415603826502 -22.92172426996473, -43.224222159871466 -22.92153947245451, -43.22426984976081 -22.921349083744033, -43.224298648653345 -22.92115493738066, -43.2243082792 -22.9209589031, -43.224298648653345 -22.92076286881934, -43.22426984976081 -22.920568722455968, -43.224222159871466 -22.920378333745493, -43.22415603826502 -22.92019353623527, -43.224072121728696 -22.92001610962635, -43.2239712184246 -22.91984776263396, -43.22385430010672 -22.919690116531672, -43.22372249276237 -22.919544689537627, -43.223577065768325 -22.919412882193274, -43.22341941966604 -22.919295963875395, -43.223251072673655 -22.919195060571305, -43.223073646064734 -22.91911114403498, -43.22288884855451 -22.919045022428538, -43.22269845984403 -22.918997332539195, -43.22250431348066 -22.918968533646655, -43.2223082792 -22.918958903100002, -43.22211224491934 -22.918968533646655, -43.22191809855597 -22.918997332539195, -43.22172770984549 -22.919045022428538, -43.221542912335266 -22.91911114403498, -43.221365485726345 -22.919195060571305, -43.22119713873396 -22.919295963875395, -43.221039492631675 -22.919412882193274, -43.22089406563763 -22.919544689537627, -43.22076225829328 -22.919690116531672, -43.2206453399754 -22.91984776263396, -43.220544436671304 -22.92001610962635, -43.22046052013498 -22.92019353623527, -43.22039439852853 -22.920378333745493, -43.22034670863919 -22.920568722455968, -43.220317909746655 -22.92076286881934, -43.2203082792 -22.9209589031))" +000335,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +000337,Vila Isabel,Grande Tijuca,88a8a06147fffff,,,,,,,, +000338,Andaraí,Grande Tijuca,88a8a06155fffff,,,,,,,, +000339,Maracanã,Grande Tijuca,88a8a0610dfffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +000341,Tijuca,Grande Tijuca,88a8a06161fffff,TRUE,313,-22.92022129,-43.21651183,PO,G,Canal do Mangue,"POLYGON ((-43.2145118299 -22.9202212893, -43.214521460446655 -22.920417323580658, -43.21455025933919 -22.92061146994403, -43.21459794922853 -22.920801858654507, -43.21466407083498 -22.92098665616473, -43.214747987371304 -22.92116408277365, -43.2148488906754 -22.92133242976604, -43.21496580899328 -22.921490075868327, -43.21509761633763 -22.921635502862372, -43.215243043331675 -22.921767310206725, -43.21540068943396 -22.921884228524604, -43.215569036426345 -22.921985131828695, -43.215746463035266 -22.92206904836502, -43.21593126054549 -22.92213516997146, -43.21612164925597 -22.922182859860804, -43.21631579561934 -22.922211658753344, -43.2165118299 -22.922221289299998, -43.21670786418066 -22.922211658753344, -43.21690201054403 -22.922182859860804, -43.21709239925451 -22.92213516997146, -43.217277196764734 -22.92206904836502, -43.217454623373655 -22.921985131828695, -43.21762297036604 -22.921884228524604, -43.217780616468325 -22.921767310206725, -43.21792604346237 -22.921635502862372, -43.21805785080672 -22.921490075868327, -43.2181747691246 -22.92133242976604, -43.218275672428696 -22.92116408277365, -43.21835958896502 -22.92098665616473, -43.218425710571466 -22.920801858654507, -43.21847340046081 -22.92061146994403, -43.218502199353345 -22.920417323580658, -43.2185118299 -22.9202212893, -43.218502199353345 -22.92002525501934, -43.21847340046081 -22.919831108655966, -43.218425710571466 -22.91964071994549, -43.21835958896502 -22.91945592243527, -43.218275672428696 -22.919278495826347, -43.2181747691246 -22.91911014883396, -43.21805785080672 -22.91895250273167, -43.21792604346237 -22.918807075737625, -43.217780616468325 -22.918675268393272, -43.21762297036604 -22.918558350075394, -43.217454623373655 -22.918457446771303, -43.217277196764734 -22.918373530234977, -43.21709239925451 -22.918307408628536, -43.21690201054403 -22.918259718739193, -43.21670786418066 -22.918230919846653, -43.2165118299 -22.9182212893, -43.21631579561934 -22.918230919846653, -43.21612164925597 -22.918259718739193, -43.21593126054549 -22.918307408628536, -43.215746463035266 -22.918373530234977, -43.215569036426345 -22.918457446771303, -43.21540068943396 -22.918558350075394, -43.215243043331675 -22.918675268393272, -43.21509761633763 -22.918807075737625, -43.21496580899328 -22.91895250273167, -43.2148488906754 -22.91911014883396, -43.214747987371304 -22.919278495826347, -43.21466407083498 -22.91945592243527, -43.21459794922853 -22.91964071994549, -43.21455025933919 -22.919831108655966, -43.214521460446655 -22.92002525501934, -43.2145118299 -22.9202212893))" +000342,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +000345,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +000347,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +000351,Vila Isabel,Grande Tijuca,88a8a06153fffff,TRUE,13,-22.91855178,-43.26236411,PC,G,Canal do Mangue,"POLYGON ((-43.2603641068 -22.9185517816, -43.260373737346654 -22.91874781588066, -43.26040253623919 -22.918941962244034, -43.26045022612853 -22.91913235095451, -43.26051634773498 -22.91931714846473, -43.260600264271304 -22.919494575073653, -43.2607011675754 -22.919662922066042, -43.26081808589328 -22.91982056816833, -43.26094989323763 -22.919965995162375, -43.261095320231675 -22.920097802506728, -43.26125296633396 -22.920214720824607, -43.261421313326345 -22.920315624128698, -43.261598739935266 -22.920399540665024, -43.26178353744549 -22.920465662271464, -43.26197392615597 -22.920513352160807, -43.26216807251934 -22.920542151053347, -43.2623641068 -22.9205517816, -43.26256014108066 -22.920542151053347, -43.26275428744403 -22.920513352160807, -43.26294467615451 -22.920465662271464, -43.26312947366473 -22.920399540665024, -43.263306900273655 -22.920315624128698, -43.26347524726604 -22.920214720824607, -43.263632893368325 -22.920097802506728, -43.26377832036237 -22.919965995162375, -43.26391012770672 -22.91982056816833, -43.2640270460246 -22.919662922066042, -43.264127949328696 -22.919494575073653, -43.26421186586502 -22.91931714846473, -43.264277987471466 -22.91913235095451, -43.26432567736081 -22.918941962244034, -43.264354476253345 -22.91874781588066, -43.2643641068 -22.9185517816, -43.264354476253345 -22.918355747319342, -43.26432567736081 -22.91816160095597, -43.264277987471466 -22.917971212245494, -43.26421186586502 -22.91778641473527, -43.264127949328696 -22.91760898812635, -43.2640270460246 -22.91744064113396, -43.26391012770672 -22.917282995031673, -43.26377832036237 -22.917137568037628, -43.263632893368325 -22.917005760693275, -43.26347524726604 -22.916888842375396, -43.263306900273655 -22.916787939071305, -43.26312947366473 -22.91670402253498, -43.26294467615451 -22.91663790092854, -43.26275428744403 -22.916590211039196, -43.26256014108066 -22.916561412146656, -43.2623641068 -22.916551781600003, -43.26216807251934 -22.916561412146656, -43.26197392615597 -22.916590211039196, -43.26178353744549 -22.91663790092854, -43.261598739935266 -22.91670402253498, -43.261421313326345 -22.916787939071305, -43.26125296633396 -22.916888842375396, -43.261095320231675 -22.917005760693275, -43.26094989323763 -22.917137568037628, -43.26081808589328 -22.917282995031673, -43.2607011675754 -22.91744064113396, -43.260600264271304 -22.91760898812635, -43.26051634773498 -22.91778641473527, -43.26045022612853 -22.917971212245494, -43.26040253623919 -22.91816160095597, -43.260373737346654 -22.918355747319342, -43.2603641068 -22.9185517816))" +000352,Vila Isabel,Grande Tijuca,88a8a06109fffff,,,,,,,, +000353,Vila Isabel,Grande Tijuca,88a8a06109fffff,,,,,,,, +000354,Vila Isabel,Grande Tijuca,88a8a0610dfffff,,,,,,,, +000355,Tijuca,Grande Tijuca,88a8a0610dfffff,,,,,,,, +000356,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +000357,Vila Isabel,Grande Tijuca,88a8a06109fffff,,,,,,,, +000358,Maracanã,Grande Tijuca,88a8a06105fffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +000359,Maracanã,Grande Tijuca,88a8a06101fffff,,,,,,,, +000361,Maracanã,Grande Tijuca,88a8a06167fffff,,,,,,,, +000362,Praça da Bandeira,Grande Tijuca,88a8a06129fffff,,,,,,,, +000363,Irajá,Zona Norte,88a8a06e01fffff,TRUE,353,-22.8224458,-43.31974144,PO,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.317741444 -22.8224458031, -43.317751074546656 -22.822641837380658, -43.31777987343919 -22.82283598374403, -43.317827563328535 -22.823026372454507, -43.31789368493498 -22.82321116996473, -43.317977601471306 -22.82338859657365, -43.3180785047754 -22.82355694356604, -43.31819542309328 -22.823714589668327, -43.31832723043763 -22.823860016662373, -43.31847265743168 -22.823991824006725, -43.318630303533965 -22.824108742324604, -43.31879865052635 -22.824209645628695, -43.31897607713527 -22.82429356216502, -43.31916087464549 -22.824359683771462, -43.31935126335597 -22.824407373660804, -43.31954540971934 -22.824436172553344, -43.319741444 -22.824445803099998, -43.319937478280664 -22.824436172553344, -43.320131624644034 -22.824407373660804, -43.32032201335451 -22.824359683771462, -43.320506810864735 -22.82429356216502, -43.32068423747366 -22.824209645628695, -43.32085258446604 -22.824108742324604, -43.32101023056833 -22.823991824006725, -43.32115565756237 -22.823860016662373, -43.321287464906725 -22.823714589668327, -43.3214043832246 -22.82355694356604, -43.3215052865287 -22.82338859657365, -43.321589203065024 -22.82321116996473, -43.32165532467147 -22.823026372454507, -43.32170301456081 -22.82283598374403, -43.32173181345335 -22.822641837380658, -43.321741444000004 -22.8224458031, -43.32173181345335 -22.82224976881934, -43.32170301456081 -22.822055622455967, -43.32165532467147 -22.82186523374549, -43.321589203065024 -22.82168043623527, -43.3215052865287 -22.821503009626348, -43.3214043832246 -22.82133466263396, -43.321287464906725 -22.82117701653167, -43.32115565756237 -22.821031589537625, -43.32101023056833 -22.820899782193273, -43.32085258446604 -22.820782863875394, -43.32068423747366 -22.820681960571303, -43.320506810864735 -22.820598044034977, -43.32032201335451 -22.820531922428536, -43.320131624644034 -22.820484232539194, -43.319937478280664 -22.820455433646654, -43.319741444 -22.8204458031, -43.31954540971934 -22.820455433646654, -43.31935126335597 -22.820484232539194, -43.31916087464549 -22.820531922428536, -43.31897607713527 -22.820598044034977, -43.31879865052635 -22.820681960571303, -43.318630303533965 -22.820782863875394, -43.31847265743168 -22.820899782193273, -43.31832723043763 -22.821031589537625, -43.31819542309328 -22.82117701653167, -43.3180785047754 -22.82133466263396, -43.317977601471306 -22.821503009626348, -43.31789368493498 -22.82168043623527, -43.317827563328535 -22.82186523374549, -43.31777987343919 -22.822055622455967, -43.317751074546656 -22.82224976881934, -43.317741444 -22.8224458031))" +000364,Vila Isabel,Grande Tijuca,88a8a06157fffff,TRUE,336,-22.91811048,-43.25964713,PO,G,Canal do Mangue,"POLYGON ((-43.2576471313 -22.9181104827, -43.257656761846654 -22.91830651698066, -43.25768556073919 -22.918500663344034, -43.25773325062853 -22.91869105205451, -43.25779937223498 -22.91887584956473, -43.2578832887713 -22.919053276173653, -43.2579841920754 -22.91922162316604, -43.25810111039328 -22.91937926926833, -43.25823291773763 -22.919524696262375, -43.258378344731675 -22.919656503606728, -43.25853599083396 -22.919773421924607, -43.258704337826344 -22.919874325228697, -43.258881764435266 -22.919958241765023, -43.25906656194549 -22.920024363371464, -43.25925695065597 -22.920072053260807, -43.25945109701934 -22.920100852153347, -43.2596471313 -22.9201104827, -43.25984316558066 -22.920100852153347, -43.26003731194403 -22.920072053260807, -43.26022770065451 -22.920024363371464, -43.26041249816473 -22.919958241765023, -43.260589924773655 -22.919874325228697, -43.260758271766036 -22.919773421924607, -43.260915917868324 -22.919656503606728, -43.26106134486237 -22.919524696262375, -43.26119315220672 -22.91937926926833, -43.2613100705246 -22.91922162316604, -43.261410973828696 -22.919053276173653, -43.26149489036502 -22.91887584956473, -43.261561011971466 -22.91869105205451, -43.26160870186081 -22.918500663344034, -43.261637500753345 -22.91830651698066, -43.2616471313 -22.9181104827, -43.261637500753345 -22.917914448419342, -43.26160870186081 -22.91772030205597, -43.261561011971466 -22.917529913345493, -43.26149489036502 -22.91734511583527, -43.261410973828696 -22.91716768922635, -43.2613100705246 -22.91699934223396, -43.26119315220672 -22.916841696131673, -43.26106134486237 -22.916696269137628, -43.260915917868324 -22.916564461793275, -43.260758271766036 -22.916447543475396, -43.260589924773655 -22.916346640171305, -43.26041249816473 -22.91626272363498, -43.26022770065451 -22.91619660202854, -43.26003731194403 -22.916148912139196, -43.25984316558066 -22.916120113246656, -43.2596471313 -22.916110482700002, -43.25945109701934 -22.916120113246656, -43.25925695065597 -22.916148912139196, -43.25906656194549 -22.91619660202854, -43.258881764435266 -22.91626272363498, -43.258704337826344 -22.916346640171305, -43.25853599083396 -22.916447543475396, -43.258378344731675 -22.916564461793275, -43.25823291773763 -22.916696269137628, -43.25810111039328 -22.916841696131673, -43.2579841920754 -22.91699934223396, -43.2578832887713 -22.91716768922635, -43.25779937223498 -22.91734511583527, -43.25773325062853 -22.917529913345493, -43.25768556073919 -22.91772030205597, -43.257656761846654 -22.917914448419342, -43.2576471313 -22.9181104827))" +000365,Tijuca,Grande Tijuca,88a8a06167fffff,,,,,,,, +000366,Vila Isabel,Grande Tijuca,88a8a06147fffff,,,,,,,, +000367,Praça da Bandeira,Grande Tijuca,88a8a06167fffff,,,,,,,, +000368,Tijuca,Grande Tijuca,88a8a0614bfffff,,,,,,,, +000369,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +000370,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +000373,Abolição,Zona Norte,88a8a061ddfffff,TRUE,32,-22.88544581,-43.29728935,PM,G,Canal do Cunha,"POLYGON ((-43.2952893452 -22.8854458051, -43.295298975746654 -22.88564183938066, -43.29532777463919 -22.885835985744034, -43.29537546452853 -22.88602637445451, -43.29544158613498 -22.88621117196473, -43.2955255026713 -22.886388598573653, -43.2956264059754 -22.886556945566042, -43.29574332429328 -22.88671459166833, -43.29587513163763 -22.886860018662375, -43.296020558631675 -22.886991826006728, -43.29617820473396 -22.887108744324607, -43.296346551726344 -22.887209647628698, -43.296523978335266 -22.887293564165024, -43.29670877584549 -22.887359685771465, -43.29689916455597 -22.887407375660807, -43.29709331091934 -22.887436174553347, -43.2972893452 -22.8874458051, -43.29748537948066 -22.887436174553347, -43.29767952584403 -22.887407375660807, -43.29786991455451 -22.887359685771465, -43.29805471206473 -22.887293564165024, -43.298232138673654 -22.887209647628698, -43.298400485666036 -22.887108744324607, -43.298558131768324 -22.886991826006728, -43.29870355876237 -22.886860018662375, -43.29883536610672 -22.88671459166833, -43.2989522844246 -22.886556945566042, -43.299053187728695 -22.886388598573653, -43.29913710426502 -22.88621117196473, -43.299203225871466 -22.88602637445451, -43.29925091576081 -22.885835985744034, -43.299279714653345 -22.88564183938066, -43.2992893452 -22.8854458051, -43.299279714653345 -22.885249770819343, -43.29925091576081 -22.88505562445597, -43.299203225871466 -22.884865235745494, -43.29913710426502 -22.88468043823527, -43.299053187728695 -22.88450301162635, -43.2989522844246 -22.88433466463396, -43.29883536610672 -22.884177018531673, -43.29870355876237 -22.884031591537628, -43.298558131768324 -22.883899784193275, -43.298400485666036 -22.883782865875396, -43.298232138673654 -22.883681962571305, -43.29805471206473 -22.88359804603498, -43.29786991455451 -22.88353192442854, -43.29767952584403 -22.883484234539196, -43.29748537948066 -22.883455435646656, -43.2972893452 -22.883445805100003, -43.29709331091934 -22.883455435646656, -43.29689916455597 -22.883484234539196, -43.29670877584549 -22.88353192442854, -43.296523978335266 -22.88359804603498, -43.296346551726344 -22.883681962571305, -43.29617820473396 -22.883782865875396, -43.296020558631675 -22.883899784193275, -43.29587513163763 -22.884031591537628, -43.29574332429328 -22.884177018531673, -43.2956264059754 -22.88433466463396, -43.2955255026713 -22.88450301162635, -43.29544158613498 -22.88468043823527, -43.29537546452853 -22.884865235745494, -43.29532777463919 -22.88505562445597, -43.295298975746654 -22.885249770819343, -43.2952893452 -22.8854458051))" +000378,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,152,-22.89504469,-43.29443455,PM,G,Canal do Cunha,"POLYGON ((-43.2924345485 -22.8950446886, -43.292444179046655 -22.895240722880658, -43.29247297793919 -22.89543486924403, -43.29252066782853 -22.895625257954507, -43.29258678943498 -22.89581005546473, -43.292670705971304 -22.89598748207365, -43.2927716092754 -22.89615582906604, -43.29288852759328 -22.896313475168327, -43.29302033493763 -22.896458902162372, -43.293165761931675 -22.896590709506725, -43.29332340803396 -22.896707627824604, -43.293491755026345 -22.896808531128695, -43.293669181635266 -22.89689244766502, -43.29385397914549 -22.89695856927146, -43.29404436785597 -22.897006259160804, -43.29423851421934 -22.897035058053344, -43.2944345485 -22.897044688599998, -43.29463058278066 -22.897035058053344, -43.29482472914403 -22.897006259160804, -43.29501511785451 -22.89695856927146, -43.295199915364734 -22.89689244766502, -43.295377341973655 -22.896808531128695, -43.29554568896604 -22.896707627824604, -43.295703335068325 -22.896590709506725, -43.29584876206237 -22.896458902162372, -43.29598056940672 -22.896313475168327, -43.2960974877246 -22.89615582906604, -43.296198391028696 -22.89598748207365, -43.29628230756502 -22.89581005546473, -43.296348429171466 -22.895625257954507, -43.29639611906081 -22.89543486924403, -43.296424917953345 -22.895240722880658, -43.2964345485 -22.8950446886, -43.296424917953345 -22.89484865431934, -43.29639611906081 -22.894654507955966, -43.296348429171466 -22.89446411924549, -43.29628230756502 -22.89427932173527, -43.296198391028696 -22.894101895126347, -43.2960974877246 -22.89393354813396, -43.29598056940672 -22.89377590203167, -43.29584876206237 -22.893630475037625, -43.295703335068325 -22.893498667693272, -43.29554568896604 -22.893381749375393, -43.295377341973655 -22.893280846071303, -43.295199915364734 -22.893196929534977, -43.29501511785451 -22.893130807928536, -43.29482472914403 -22.893083118039193, -43.29463058278066 -22.893054319146653, -43.2944345485 -22.8930446886, -43.29423851421934 -22.893054319146653, -43.29404436785597 -22.893083118039193, -43.29385397914549 -22.893130807928536, -43.293669181635266 -22.893196929534977, -43.293491755026345 -22.893280846071303, -43.29332340803396 -22.893381749375393, -43.293165761931675 -22.893498667693272, -43.29302033493763 -22.893630475037625, -43.29288852759328 -22.89377590203167, -43.2927716092754 -22.89393354813396, -43.292670705971304 -22.894101895126347, -43.29258678943498 -22.89427932173527, -43.29252066782853 -22.89446411924549, -43.29247297793919 -22.894654507955966, -43.292444179046655 -22.89484865431934, -43.2924345485 -22.8950446886))" +000380,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +000381,Cachambi,Zona Norte,88a8a061cdfffff,,,,,,,, +000382,Cachambi,Zona Norte,88a8a061c1fffff,,,,,,,, +000384,Méier,Zona Norte,88a8a06023fffff,,,,,,,, +000386,Madureira,Zona Norte,88a8a06087fffff,,,,,,,, +000388,Méier,Zona Norte,88a8a06027fffff,TRUE,53,-22.90377842,-43.2779202,PC,G,Canal do Cunha,"POLYGON ((-43.2759201991 -22.9037784241, -43.27592982964666 -22.90397445838066, -43.27595862853919 -22.904168604744033, -43.276006318428536 -22.904358993454508, -43.27607244003498 -22.90454379096473, -43.276156356571306 -22.904721217573652, -43.2762572598754 -22.90488956456604, -43.27637417819328 -22.90504721066833, -43.27650598553763 -22.905192637662374, -43.27665141253168 -22.905324445006727, -43.276809058633965 -22.905441363324606, -43.27697740562635 -22.905542266628697, -43.27715483223527 -22.905626183165023, -43.27733962974549 -22.905692304771463, -43.27753001845597 -22.905739994660806, -43.27772416481934 -22.905768793553346, -43.2779201991 -22.9057784241, -43.278116233380665 -22.905768793553346, -43.278310379744035 -22.905739994660806, -43.27850076845451 -22.905692304771463, -43.278685565964736 -22.905626183165023, -43.27886299257366 -22.905542266628697, -43.27903133956604 -22.905441363324606, -43.27918898566833 -22.905324445006727, -43.27933441266237 -22.905192637662374, -43.279466220006725 -22.90504721066833, -43.279583138324604 -22.90488956456604, -43.2796840416287 -22.904721217573652, -43.279767958165024 -22.90454379096473, -43.27983407977147 -22.904358993454508, -43.27988176966081 -22.904168604744033, -43.27991056855335 -22.90397445838066, -43.279920199100005 -22.9037784241, -43.27991056855335 -22.90358238981934, -43.27988176966081 -22.903388243455968, -43.27983407977147 -22.903197854745493, -43.279767958165024 -22.90301305723527, -43.2796840416287 -22.90283563062635, -43.279583138324604 -22.90266728363396, -43.279466220006725 -22.902509637531672, -43.27933441266237 -22.902364210537627, -43.27918898566833 -22.902232403193274, -43.27903133956604 -22.902115484875395, -43.27886299257366 -22.902014581571304, -43.278685565964736 -22.90193066503498, -43.27850076845451 -22.901864543428538, -43.278310379744035 -22.901816853539195, -43.278116233380665 -22.901788054646655, -43.2779201991 -22.9017784241, -43.27772416481934 -22.901788054646655, -43.27753001845597 -22.901816853539195, -43.27733962974549 -22.901864543428538, -43.27715483223527 -22.90193066503498, -43.27697740562635 -22.902014581571304, -43.276809058633965 -22.902115484875395, -43.27665141253168 -22.902232403193274, -43.27650598553763 -22.902364210537627, -43.27637417819328 -22.902509637531672, -43.2762572598754 -22.90266728363396, -43.276156356571306 -22.90283563062635, -43.27607244003498 -22.90301305723527, -43.276006318428536 -22.903197854745493, -43.27595862853919 -22.903388243455968, -43.27592982964666 -22.90358238981934, -43.2759201991 -22.9037784241))" +000389,Turiaçú,Zona Norte,88a8a06087fffff,,,,,,,, +000390,Turiaçú,Zona Norte,88a8a060b9fffff,,,,,,,, +000392,Cachambi,Zona Norte,88a8a061c7fffff,,,,,,,, +000393,Méier,Zona Norte,88a8a06025fffff,,,,,,,, +000394,Méier,Zona Norte,88a8a06023fffff,,,,,,,, +000395,Todos os Santos,Zona Norte,88a8a06027fffff,,,,,,,, +000396,Turiaçú,Zona Norte,88a8a060b9fffff,,,,,,,, +000397,Turiaçú,Zona Norte,88a8a060b9fffff,,,,,,,, +000398,Madureira,Zona Norte,88a8a0608dfffff,,,,,,,, +000401,Engenho Novo,Zona Norte,88a8a0611bfffff,,,,,,,, +000404,Galeão,Ilhas,88a8a06f65fffff,TRUE,345,-22.82433329,-43.23119715,PO,G,Praia do Galeao,"POLYGON ((-43.2291971472 -22.8243332946, -43.229206777746654 -22.824529328880658, -43.22923557663919 -22.82472347524403, -43.22928326652853 -22.824913863954507, -43.22934938813498 -22.82509866146473, -43.2294333046713 -22.82527608807365, -43.2295342079754 -22.82544443506604, -43.22965112629328 -22.825602081168327, -43.22978293363763 -22.825747508162372, -43.229928360631675 -22.825879315506725, -43.23008600673396 -22.825996233824604, -43.230254353726345 -22.826097137128695, -43.230431780335266 -22.82618105366502, -43.23061657784549 -22.82624717527146, -43.23080696655597 -22.826294865160804, -43.23100111291934 -22.826323664053344, -43.2311971472 -22.826333294599998, -43.23139318148066 -22.826323664053344, -43.23158732784403 -22.826294865160804, -43.23177771655451 -22.82624717527146, -43.23196251406473 -22.82618105366502, -43.232139940673655 -22.826097137128695, -43.23230828766604 -22.825996233824604, -43.232465933768324 -22.825879315506725, -43.23261136076237 -22.825747508162372, -43.23274316810672 -22.825602081168327, -43.2328600864246 -22.82544443506604, -43.232960989728696 -22.82527608807365, -43.23304490626502 -22.82509866146473, -43.233111027871466 -22.824913863954507, -43.23315871776081 -22.82472347524403, -43.233187516653345 -22.824529328880658, -43.2331971472 -22.8243332946, -43.233187516653345 -22.82413726031934, -43.23315871776081 -22.823943113955966, -43.233111027871466 -22.82375272524549, -43.23304490626502 -22.82356792773527, -43.232960989728696 -22.823390501126347, -43.2328600864246 -22.82322215413396, -43.23274316810672 -22.82306450803167, -43.23261136076237 -22.822919081037625, -43.232465933768324 -22.822787273693272, -43.23230828766604 -22.822670355375394, -43.232139940673655 -22.822569452071303, -43.23196251406473 -22.822485535534977, -43.23177771655451 -22.822419413928536, -43.23158732784403 -22.822371724039193, -43.23139318148066 -22.822342925146653, -43.2311971472 -22.8223332946, -43.23100111291934 -22.822342925146653, -43.23080696655597 -22.822371724039193, -43.23061657784549 -22.822419413928536, -43.230431780335266 -22.822485535534977, -43.230254353726345 -22.822569452071303, -43.23008600673396 -22.822670355375394, -43.229928360631675 -22.822787273693272, -43.22978293363763 -22.822919081037625, -43.22965112629328 -22.82306450803167, -43.2295342079754 -22.82322215413396, -43.2294333046713 -22.823390501126347, -43.22934938813498 -22.82356792773527, -43.22928326652853 -22.82375272524549, -43.22923557663919 -22.823943113955966, -43.229206777746654 -22.82413726031934, -43.2291971472 -22.8243332946))" +000405,Barra da Tijuca,Barra da Tijuca,88a8a07503fffff,,,,,,,, +000406,Barra da Tijuca,Barra da Tijuca,88a8a07539fffff,TRUE,240,-22.97276823,-43.39221805,PM,J,Lagoa da Tijuca,"POLYGON ((-43.390218047299996 -22.9727682289, -43.39022767784665 -22.97296426318066, -43.39025647673919 -22.973158409544034, -43.39030416662853 -22.97334879825451, -43.390370288234976 -22.97353359576473, -43.3904542047713 -22.973711022373653, -43.3905551080754 -22.973879369366042, -43.390672026393275 -22.97403701546833, -43.39080383373763 -22.974182442462375, -43.390949260731674 -22.974314249806728, -43.39110690683396 -22.974431168124607, -43.39127525382634 -22.974532071428698, -43.391452680435265 -22.974615987965024, -43.39163747794549 -22.974682109571464, -43.391827866655966 -22.974729799460807, -43.392022013019336 -22.974758598353347, -43.3922180473 -22.9747682289, -43.39241408158066 -22.974758598353347, -43.39260822794403 -22.974729799460807, -43.39279861665451 -22.974682109571464, -43.39298341416473 -22.974615987965024, -43.39316084077365 -22.974532071428698, -43.393329187766035 -22.974431168124607, -43.39348683386832 -22.974314249806728, -43.39363226086237 -22.974182442462375, -43.39376406820672 -22.97403701546833, -43.3938809865246 -22.973879369366042, -43.393981889828694 -22.973711022373653, -43.39406580636502 -22.97353359576473, -43.394131927971465 -22.97334879825451, -43.39417961786081 -22.973158409544034, -43.394208416753344 -22.97296426318066, -43.3942180473 -22.9727682289, -43.394208416753344 -22.972572194619342, -43.39417961786081 -22.97237804825597, -43.394131927971465 -22.972187659545494, -43.39406580636502 -22.97200286203527, -43.393981889828694 -22.97182543542635, -43.3938809865246 -22.97165708843396, -43.39376406820672 -22.971499442331673, -43.39363226086237 -22.971354015337628, -43.39348683386832 -22.971222207993275, -43.393329187766035 -22.971105289675396, -43.39316084077365 -22.971004386371305, -43.39298341416473 -22.97092046983498, -43.39279861665451 -22.97085434822854, -43.39260822794403 -22.970806658339196, -43.39241408158066 -22.970777859446656, -43.3922180473 -22.970768228900003, -43.392022013019336 -22.970777859446656, -43.391827866655966 -22.970806658339196, -43.39163747794549 -22.97085434822854, -43.391452680435265 -22.97092046983498, -43.39127525382634 -22.971004386371305, -43.39110690683396 -22.971105289675396, -43.390949260731674 -22.971222207993275, -43.39080383373763 -22.971354015337628, -43.390672026393275 -22.971499442331673, -43.3905551080754 -22.97165708843396, -43.3904542047713 -22.97182543542635, -43.390370288234976 -22.97200286203527, -43.39030416662853 -22.972187659545494, -43.39025647673919 -22.97237804825597, -43.39022767784665 -22.972572194619342, -43.390218047299996 -22.9727682289))" +000407,Bonsucesso,Zona Norte,88a8a061adfffff,,,,,,,, +000410,Jacarepaguá,Jacarepaguá,88a8a0752bfffff,,,,,,,, +000411,Jacarepaguá,Jacarepaguá,88a8a0753dfffff,,,,,,,, +000412,Bonsucesso,Zona Norte,88a8a061adfffff,,,,,,,, +000413,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +000414,Ramos,Zona Norte,88a8a061a5fffff,TRUE,360,-22.85312585,-43.25076091,PO,G,Rio Ramos,"POLYGON ((-43.24876091424077 -22.85312584921595, -43.248770544787426 -22.85332188349661, -43.24879934367996 -22.853516029859982, -43.248847033569305 -22.853706418570457, -43.24891315517575 -22.85389121608068, -43.248997071712076 -22.8540686426896, -43.24909797501617 -22.85423698968199, -43.24921489333405 -22.854394635784278, -43.2493467006784 -22.854540062778323, -43.24949212767245 -22.854671870122676, -43.249649773774735 -22.854788788440555, -43.24981812076712 -22.854889691744646, -43.24999554737604 -22.85497360828097, -43.25018034488626 -22.855039729887412, -43.25037073359674 -22.855087419776755, -43.25056487996011 -22.855116218669295, -43.25076091424077 -22.85512584921595, -43.250956948521434 -22.855116218669295, -43.251151094884804 -22.855087419776755, -43.25134148359528 -22.855039729887412, -43.251526281105505 -22.85497360828097, -43.25170370771443 -22.854889691744646, -43.25187205470681 -22.854788788440555, -43.252029700809096 -22.854671870122676, -43.25217512780314 -22.854540062778323, -43.252306935147494 -22.854394635784278, -43.25242385346537 -22.85423698968199, -43.25252475676947 -22.8540686426896, -43.252608673305794 -22.85389121608068, -43.25267479491224 -22.853706418570457, -43.25272248480158 -22.853516029859982, -43.25275128369412 -22.85332188349661, -43.252760914240774 -22.85312584921595, -43.25275128369412 -22.85292981493529, -43.25272248480158 -22.852735668571917, -43.25267479491224 -22.85254527986144, -43.252608673305794 -22.85236048235122, -43.25252475676947 -22.852183055742298, -43.25242385346537 -22.85201470874991, -43.252306935147494 -22.85185706264762, -43.25217512780314 -22.851711635653576, -43.252029700809096 -22.851579828309223, -43.25187205470681 -22.851462909991344, -43.25170370771443 -22.851362006687253, -43.251526281105505 -22.851278090150927, -43.25134148359528 -22.851211968544487, -43.251151094884804 -22.851164278655144, -43.250956948521434 -22.851135479762604, -43.25076091424077 -22.85112584921595, -43.25056487996011 -22.851135479762604, -43.25037073359674 -22.851164278655144, -43.25018034488626 -22.851211968544487, -43.24999554737604 -22.851278090150927, -43.24981812076712 -22.851362006687253, -43.249649773774735 -22.851462909991344, -43.24949212767245 -22.851579828309223, -43.2493467006784 -22.851711635653576, -43.24921489333405 -22.85185706264762, -43.24909797501617 -22.85201470874991, -43.248997071712076 -22.852183055742298, -43.24891315517575 -22.85236048235122, -43.248847033569305 -22.85254527986144, -43.24879934367996 -22.852735668571917, -43.248770544787426 -22.85292981493529, -43.24876091424077 -22.85312584921595))" +000415,Bonsucesso,Zona Norte,88a8a061adfffff,TRUE,355,-22.862983,-43.252827,PO,G,,"POLYGON ((-43.250827 -22.862983, -43.25083663054666 -22.86317903428066, -43.250865429439195 -22.863373180644032, -43.25091311932854 -22.863563569354508, -43.25097924093498 -22.86374836686473, -43.25106315747131 -22.86392579347365, -43.2511640607754 -22.86409414046604, -43.25128097909328 -22.864251786568328, -43.25141278643763 -22.864397213562373, -43.25155821343168 -22.864529020906726, -43.25171585953397 -22.864645939224605, -43.25188420652635 -22.864746842528696, -43.25206163313527 -22.864830759065022, -43.25224643064549 -22.864896880671463, -43.25243681935597 -22.864944570560805, -43.25263096571934 -22.864973369453345, -43.252827 -22.864983, -43.253023034280666 -22.864973369453345, -43.253217180644036 -22.864944570560805, -43.253407569354515 -22.864896880671463, -43.25359236686474 -22.864830759065022, -43.25376979347366 -22.864746842528696, -43.25393814046604 -22.864645939224605, -43.25409578656833 -22.864529020906726, -43.25424121356237 -22.864397213562373, -43.254373020906726 -22.864251786568328, -43.254489939224605 -22.86409414046604, -43.2545908425287 -22.86392579347365, -43.254674759065026 -22.86374836686473, -43.25474088067147 -22.863563569354508, -43.25478857056081 -22.863373180644032, -43.25481736945335 -22.86317903428066, -43.254827000000006 -22.862983, -43.25481736945335 -22.86278696571934, -43.25478857056081 -22.862592819355967, -43.25474088067147 -22.862402430645492, -43.254674759065026 -22.86221763313527, -43.2545908425287 -22.86204020652635, -43.254489939224605 -22.86187185953396, -43.254373020906726 -22.86171421343167, -43.25424121356237 -22.861568786437626, -43.25409578656833 -22.861436979093273, -43.25393814046604 -22.861320060775395, -43.25376979347366 -22.861219157471304, -43.25359236686474 -22.861135240934978, -43.253407569354515 -22.861069119328537, -43.253217180644036 -22.861021429439194, -43.253023034280666 -22.860992630546654, -43.252827 -22.860983, -43.25263096571934 -22.860992630546654, -43.25243681935597 -22.861021429439194, -43.25224643064549 -22.861069119328537, -43.25206163313527 -22.861135240934978, -43.25188420652635 -22.861219157471304, -43.25171585953397 -22.861320060775395, -43.25155821343168 -22.861436979093273, -43.25141278643763 -22.861568786437626, -43.25128097909328 -22.86171421343167, -43.2511640607754 -22.86187185953396, -43.25106315747131 -22.86204020652635, -43.25097924093498 -22.86221763313527, -43.25091311932854 -22.862402430645492, -43.250865429439195 -22.862592819355967, -43.25083663054666 -22.86278696571934, -43.250827 -22.862983))" +000416,Ramos,Zona Norte,88a8a061a3fffff,,,,,,,, +000418,Olaria,Zona Norte,88a8a061a3fffff,TRUE,296,-22.84690653,-43.26571217,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2637121735 -22.8469065337, -43.263721804046654 -22.84710256798066, -43.26375060293919 -22.847296714344033, -43.26379829282853 -22.847487103054508, -43.26386441443498 -22.84767190056473, -43.2639483309713 -22.847849327173652, -43.2640492342754 -22.84801767416604, -43.264166152593276 -22.84817532026833, -43.26429795993763 -22.848320747262374, -43.264443386931674 -22.848452554606727, -43.26460103303396 -22.848569472924606, -43.264769380026344 -22.848670376228696, -43.264946806635265 -22.848754292765022, -43.26513160414549 -22.848820414371463, -43.26532199285597 -22.848868104260806, -43.265516139219336 -22.848896903153346, -43.2657121735 -22.8489065337, -43.26590820778066 -22.848896903153346, -43.26610235414403 -22.848868104260806, -43.26629274285451 -22.848820414371463, -43.26647754036473 -22.848754292765022, -43.266654966973654 -22.848670376228696, -43.266823313966036 -22.848569472924606, -43.266980960068324 -22.848452554606727, -43.26712638706237 -22.848320747262374, -43.26725819440672 -22.84817532026833, -43.2673751127246 -22.84801767416604, -43.267476016028695 -22.847849327173652, -43.26755993256502 -22.84767190056473, -43.267626054171465 -22.847487103054508, -43.26767374406081 -22.847296714344033, -43.267702542953344 -22.84710256798066, -43.2677121735 -22.8469065337, -43.267702542953344 -22.84671049941934, -43.26767374406081 -22.846516353055968, -43.267626054171465 -22.846325964345493, -43.26755993256502 -22.84614116683527, -43.267476016028695 -22.84596374022635, -43.2673751127246 -22.84579539323396, -43.26725819440672 -22.845637747131672, -43.26712638706237 -22.845492320137627, -43.266980960068324 -22.845360512793274, -43.266823313966036 -22.845243594475395, -43.266654966973654 -22.845142691171304, -43.26647754036473 -22.84505877463498, -43.26629274285451 -22.844992653028537, -43.26610235414403 -22.844944963139195, -43.26590820778066 -22.844916164246655, -43.2657121735 -22.8449065337, -43.265516139219336 -22.844916164246655, -43.26532199285597 -22.844944963139195, -43.26513160414549 -22.844992653028537, -43.264946806635265 -22.84505877463498, -43.264769380026344 -22.845142691171304, -43.26460103303396 -22.845243594475395, -43.264443386931674 -22.845360512793274, -43.26429795993763 -22.845492320137627, -43.264166152593276 -22.845637747131672, -43.2640492342754 -22.84579539323396, -43.2639483309713 -22.84596374022635, -43.26386441443498 -22.84614116683527, -43.26379829282853 -22.846325964345493, -43.26375060293919 -22.846516353055968, -43.263721804046654 -22.84671049941934, -43.2637121735 -22.8469065337))" +000419,Penha Circular,Zona Norte,88a8a06f5dfffff,,,,,,,, +000420,Penha Circular,Zona Norte,88a8a061b3fffff,,,,,,,, +000421,Cidade Universitária,Ilhas,88a8a06a91fffff,,,,,,,, +000422,Manguinhos,Zona Norte,88a8a06adbfffff,TRUE,16,-22.87068547,-43.24521149,PC,G,Canal do Cunha,"POLYGON ((-43.243211486599996 -22.8706854723, -43.24322111714665 -22.87088150658066, -43.24324991603919 -22.871075652944032, -43.24329760592853 -22.871266041654508, -43.24336372753498 -22.87145083916473, -43.2434476440713 -22.87162826577365, -43.2435485473754 -22.87179661276604, -43.243665465693276 -22.87195425886833, -43.24379727303763 -22.872099685862374, -43.243942700031674 -22.872231493206726, -43.24410034613396 -22.872348411524605, -43.244268693126344 -22.872449314828696, -43.244446119735265 -22.872533231365022, -43.24463091724549 -22.872599352971463, -43.244821305955966 -22.872647042860805, -43.245015452319336 -22.872675841753345, -43.2452114866 -22.8726854723, -43.24540752088066 -22.872675841753345, -43.24560166724403 -22.872647042860805, -43.24579205595451 -22.872599352971463, -43.24597685346473 -22.872533231365022, -43.246154280073654 -22.872449314828696, -43.246322627066036 -22.872348411524605, -43.24648027316832 -22.872231493206726, -43.24662570016237 -22.872099685862374, -43.24675750750672 -22.87195425886833, -43.2468744258246 -22.87179661276604, -43.246975329128695 -22.87162826577365, -43.24705924566502 -22.87145083916473, -43.247125367271465 -22.871266041654508, -43.24717305716081 -22.871075652944032, -43.247201856053344 -22.87088150658066, -43.2472114866 -22.8706854723, -43.247201856053344 -22.87048943801934, -43.24717305716081 -22.870295291655967, -43.247125367271465 -22.870104902945492, -43.24705924566502 -22.86992010543527, -43.246975329128695 -22.86974267882635, -43.2468744258246 -22.86957433183396, -43.24675750750672 -22.86941668573167, -43.24662570016237 -22.869271258737626, -43.24648027316832 -22.869139451393274, -43.246322627066036 -22.869022533075395, -43.246154280073654 -22.868921629771304, -43.24597685346473 -22.868837713234978, -43.24579205595451 -22.868771591628537, -43.24560166724403 -22.868723901739195, -43.24540752088066 -22.868695102846655, -43.2452114866 -22.8686854723, -43.245015452319336 -22.868695102846655, -43.244821305955966 -22.868723901739195, -43.24463091724549 -22.868771591628537, -43.244446119735265 -22.868837713234978, -43.244268693126344 -22.868921629771304, -43.24410034613396 -22.869022533075395, -43.243942700031674 -22.869139451393274, -43.24379727303763 -22.869271258737626, -43.243665465693276 -22.86941668573167, -43.2435485473754 -22.86957433183396, -43.2434476440713 -22.86974267882635, -43.24336372753498 -22.86992010543527, -43.24329760592853 -22.870104902945492, -43.24324991603919 -22.870295291655967, -43.24322111714665 -22.87048943801934, -43.243211486599996 -22.8706854723))" +000423,Bonsucesso,Zona Norte,88a8a061e7fffff,TRUE,71,-22.87348768,-43.25287067,PC,G,Canal do Cunha,"POLYGON ((-43.250870665 -22.873487684, -43.25088029554666 -22.87368371828066, -43.250909094439194 -22.873877864644033, -43.25095678432854 -22.87406825335451, -43.25102290593498 -22.87425305086473, -43.25110682247131 -22.874430477473652, -43.2512077257754 -22.87459882446604, -43.25132464409328 -22.87475647056833, -43.25145645143763 -22.874901897562374, -43.25160187843168 -22.875033704906727, -43.251759524533966 -22.875150623224606, -43.25192787152635 -22.875251526528697, -43.25210529813527 -22.875335443065023, -43.25229009564549 -22.875401564671463, -43.25248048435597 -22.875449254560806, -43.25267463071934 -22.875478053453346, -43.252870665 -22.875487684, -43.253066699280666 -22.875478053453346, -43.253260845644036 -22.875449254560806, -43.253451234354515 -22.875401564671463, -43.25363603186474 -22.875335443065023, -43.25381345847366 -22.875251526528697, -43.25398180546604 -22.875150623224606, -43.25413945156833 -22.875033704906727, -43.25428487856237 -22.874901897562374, -43.254416685906726 -22.87475647056833, -43.254533604224605 -22.87459882446604, -43.2546345075287 -22.874430477473652, -43.254718424065025 -22.87425305086473, -43.25478454567147 -22.87406825335451, -43.25483223556081 -22.873877864644033, -43.25486103445335 -22.87368371828066, -43.254870665000006 -22.873487684, -43.25486103445335 -22.87329164971934, -43.25483223556081 -22.873097503355968, -43.25478454567147 -22.872907114645493, -43.254718424065025 -22.87272231713527, -43.2546345075287 -22.87254489052635, -43.254533604224605 -22.87237654353396, -43.254416685906726 -22.872218897431672, -43.25428487856237 -22.872073470437627, -43.25413945156833 -22.871941663093274, -43.25398180546604 -22.871824744775395, -43.25381345847366 -22.871723841471304, -43.25363603186474 -22.87163992493498, -43.253451234354515 -22.871573803328538, -43.253260845644036 -22.871526113439195, -43.253066699280666 -22.871497314546655, -43.252870665 -22.871487684, -43.25267463071934 -22.871497314546655, -43.25248048435597 -22.871526113439195, -43.25229009564549 -22.871573803328538, -43.25210529813527 -22.87163992493498, -43.25192787152635 -22.871723841471304, -43.251759524533966 -22.871824744775395, -43.25160187843168 -22.871941663093274, -43.25145645143763 -22.872073470437627, -43.25132464409328 -22.872218897431672, -43.2512077257754 -22.87237654353396, -43.25110682247131 -22.87254489052635, -43.25102290593498 -22.87272231713527, -43.25095678432854 -22.872907114645493, -43.250909094439194 -22.873097503355968, -43.25088029554666 -22.87329164971934, -43.250870665 -22.873487684))" +000425,Ramos,Zona Norte,88a8a061a5fffff,,,,,,,, +000428,Tauá,Ilhas,88a8a068abfffff,,,,,,,, +000430,Olaria,Zona Norte,88a8a06f41fffff,,,,,,,, +000432,Cidade Universitária,Ilhas,88a8a06a91fffff,,,,,,,, +000442,Vila Kosmos,Zona Norte,88a8a06193fffff,,,,,,,, +000443,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +000446,Pavuna,Zona Norte,88a8a06ec9fffff,,,,,,,, +000448,Barra da Tijuca,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +000450,Irajá,Zona Norte,88a8a06e41fffff,TRUE,272,-22.84735531,-43.32448787,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3224878658 -22.8473553146, -43.32249749634666 -22.84755134888066, -43.32252629523919 -22.847745495244034, -43.322573985128535 -22.84793588395451, -43.32264010673498 -22.84812068146473, -43.322724023271306 -22.848298108073653, -43.3228249265754 -22.848466455066042, -43.32294184489328 -22.84862410116833, -43.32307365223763 -22.848769528162375, -43.32321907923168 -22.848901335506728, -43.323376725333965 -22.849018253824607, -43.32354507232635 -22.849119157128698, -43.32372249893527 -22.849203073665024, -43.32390729644549 -22.849269195271464, -43.32409768515597 -22.849316885160807, -43.32429183151934 -22.849345684053347, -43.3244878658 -22.8493553146, -43.324683900080665 -22.849345684053347, -43.324878046444034 -22.849316885160807, -43.32506843515451 -22.849269195271464, -43.325253232664735 -22.849203073665024, -43.32543065927366 -22.849119157128698, -43.32559900626604 -22.849018253824607, -43.32575665236833 -22.848901335506728, -43.32590207936237 -22.848769528162375, -43.326033886706725 -22.84862410116833, -43.326150805024604 -22.848466455066042, -43.3262517083287 -22.848298108073653, -43.326335624865024 -22.84812068146473, -43.32640174647147 -22.84793588395451, -43.32644943636081 -22.847745495244034, -43.32647823525335 -22.84755134888066, -43.326487865800004 -22.8473553146, -43.32647823525335 -22.847159280319342, -43.32644943636081 -22.84696513395597, -43.32640174647147 -22.846774745245494, -43.326335624865024 -22.84658994773527, -43.3262517083287 -22.84641252112635, -43.326150805024604 -22.84624417413396, -43.326033886706725 -22.846086528031673, -43.32590207936237 -22.845941101037628, -43.32575665236833 -22.845809293693275, -43.32559900626604 -22.845692375375396, -43.32543065927366 -22.845591472071305, -43.325253232664735 -22.84550755553498, -43.32506843515451 -22.84544143392854, -43.324878046444034 -22.845393744039196, -43.324683900080665 -22.845364945146656, -43.3244878658 -22.845355314600003, -43.32429183151934 -22.845364945146656, -43.32409768515597 -22.845393744039196, -43.32390729644549 -22.84544143392854, -43.32372249893527 -22.84550755553498, -43.32354507232635 -22.845591472071305, -43.323376725333965 -22.845692375375396, -43.32321907923168 -22.845809293693275, -43.32307365223763 -22.845941101037628, -43.32294184489328 -22.846086528031673, -43.3228249265754 -22.84624417413396, -43.322724023271306 -22.84641252112635, -43.32264010673498 -22.84658994773527, -43.322573985128535 -22.846774745245494, -43.32252629523919 -22.84696513395597, -43.32249749634666 -22.847159280319342, -43.3224878658 -22.8473553146))" +000451,Vila da Penha,Zona Norte,88a8a06e6bfffff,,,,,,,, +000452,Quintino Bocaiúva,Zona Norte,88a8a061d9fffff,TRUE,396,-22.88508785,-43.3106615,PO,G,,"POLYGON ((-43.308661499118195 -22.8850878506695, -43.30867112966485 -22.88528388495016, -43.30869992855739 -22.885478031313532, -43.30874761844673 -22.885668420024007, -43.308813740053175 -22.88585321753423, -43.3088976565895 -22.88603064414315, -43.308998559893595 -22.88619899113554, -43.309115478211474 -22.886356637237828, -43.30924728555583 -22.886502064231873, -43.30939271254987 -22.886633871576226, -43.30955035865216 -22.886750789894105, -43.30971870564454 -22.886851693198196, -43.30989613225346 -22.886935609734522, -43.310080929763686 -22.887001731340963, -43.310271318474165 -22.887049421230305, -43.310465464837534 -22.887078220122845, -43.3106614991182 -22.8870878506695, -43.31085753339886 -22.887078220122845, -43.31105167976223 -22.887049421230305, -43.31124206847271 -22.887001731340963, -43.31142686598293 -22.886935609734522, -43.31160429259185 -22.886851693198196, -43.311772639584234 -22.886750789894105, -43.31193028568652 -22.886633871576226, -43.31207571268057 -22.886502064231873, -43.31220752002492 -22.886356637237828, -43.3123244383428 -22.88619899113554, -43.31242534164689 -22.88603064414315, -43.31250925818322 -22.88585321753423, -43.31257537978966 -22.885668420024007, -43.312623069679006 -22.885478031313532, -43.31265186857154 -22.88528388495016, -43.3126614991182 -22.8850878506695, -43.31265186857154 -22.88489181638884, -43.312623069679006 -22.884697670025467, -43.31257537978966 -22.884507281314992, -43.31250925818322 -22.88432248380477, -43.31242534164689 -22.88414505719585, -43.3123244383428 -22.88397671020346, -43.31220752002492 -22.88381906410117, -43.31207571268057 -22.883673637107126, -43.31193028568652 -22.883541829762773, -43.311772639584234 -22.883424911444894, -43.31160429259185 -22.883324008140804, -43.31142686598293 -22.883240091604478, -43.31124206847271 -22.883173969998037, -43.31105167976223 -22.883126280108694, -43.31085753339886 -22.883097481216154, -43.3106614991182 -22.8830878506695, -43.310465464837534 -22.883097481216154, -43.310271318474165 -22.883126280108694, -43.310080929763686 -22.883173969998037, -43.30989613225346 -22.883240091604478, -43.30971870564454 -22.883324008140804, -43.30955035865216 -22.883424911444894, -43.30939271254987 -22.883541829762773, -43.30924728555583 -22.883673637107126, -43.309115478211474 -22.88381906410117, -43.308998559893595 -22.88397671020346, -43.3088976565895 -22.88414505719585, -43.308813740053175 -22.88432248380477, -43.30874761844673 -22.884507281314992, -43.30869992855739 -22.884697670025467, -43.30867112966485 -22.88489181638884, -43.308661499118195 -22.8850878506695))" +000454,Bento Ribeiro,Zona Norte,88a8a0608bfffff,,,,,,,, +000455,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +000456,Madureira,Zona Norte,88a8a0608dfffff,,,,,,,, +000457,Cascadura,Zona Norte,88a8a060e3fffff,TRUE,399,-22.88045135,-43.33086016,PO,G,,"POLYGON ((-43.3288601589778 -22.8804513481578, -43.328869789524454 -22.880647382438458, -43.32889858841699 -22.88084152880183, -43.32894627830633 -22.881031917512306, -43.32901239991278 -22.88121671502253, -43.3290963164491 -22.88139414163145, -43.3291972197532 -22.88156248862384, -43.32931413807108 -22.881720134726127, -43.32944594541543 -22.881865561720172, -43.329591372409475 -22.881997369064525, -43.32974901851176 -22.882114287382404, -43.329917365504144 -22.882215190686495, -43.330094792113066 -22.88229910722282, -43.33027958962329 -22.88236522882926, -43.33046997833377 -22.882412918718604, -43.33066412469714 -22.882441717611144, -43.3308601589778 -22.882451348157797, -43.33105619325846 -22.882441717611144, -43.33125033962183 -22.882412918718604, -43.33144072833231 -22.88236522882926, -43.33162552584253 -22.88229910722282, -43.331802952451454 -22.882215190686495, -43.331971299443836 -22.882114287382404, -43.332128945546124 -22.881997369064525, -43.33227437254017 -22.881865561720172, -43.33240617988452 -22.881720134726127, -43.3325230982024 -22.88156248862384, -43.332624001506495 -22.88139414163145, -43.33270791804282 -22.88121671502253, -43.332774039649266 -22.881031917512306, -43.33282172953861 -22.88084152880183, -43.332850528431145 -22.880647382438458, -43.3328601589778 -22.8804513481578, -43.332850528431145 -22.88025531387714, -43.33282172953861 -22.880061167513766, -43.332774039649266 -22.87987077880329, -43.33270791804282 -22.87968598129307, -43.332624001506495 -22.879508554684147, -43.3325230982024 -22.879340207691758, -43.33240617988452 -22.87918256158947, -43.33227437254017 -22.879037134595425, -43.332128945546124 -22.878905327251072, -43.331971299443836 -22.878788408933193, -43.331802952451454 -22.878687505629102, -43.33162552584253 -22.878603589092776, -43.33144072833231 -22.878537467486336, -43.33125033962183 -22.878489777596993, -43.33105619325846 -22.878460978704453, -43.3308601589778 -22.8784513481578, -43.33066412469714 -22.878460978704453, -43.33046997833377 -22.878489777596993, -43.33027958962329 -22.878537467486336, -43.330094792113066 -22.878603589092776, -43.329917365504144 -22.878687505629102, -43.32974901851176 -22.878788408933193, -43.329591372409475 -22.878905327251072, -43.32944594541543 -22.879037134595425, -43.32931413807108 -22.87918256158947, -43.3291972197532 -22.879340207691758, -43.3290963164491 -22.879508554684147, -43.32901239991278 -22.87968598129307, -43.32894627830633 -22.87987077880329, -43.32889858841699 -22.880061167513766, -43.328869789524454 -22.88025531387714, -43.3288601589778 -22.8804513481578))" +000458,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +000460,Madureira,Zona Norte,88a8a06085fffff,TRUE,348,-22.87163213,-43.33568488,PO,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.333684884899995 -22.8716321297, -43.33369451544665 -22.87182816398066, -43.33372331433919 -22.872022310344033, -43.33377100422853 -22.872212699054508, -43.333837125834975 -22.87239749656473, -43.3339210423713 -22.87257492317365, -43.334021945675396 -22.87274327016604, -43.334138863993275 -22.87290091626833, -43.33427067133763 -22.873046343262374, -43.33441609833167 -22.873178150606726, -43.33457374443396 -22.873295068924605, -43.33474209142634 -22.873395972228696, -43.334919518035264 -22.873479888765022, -43.335104315545486 -22.873546010371463, -43.335294704255965 -22.873593700260805, -43.335488850619335 -22.873622499153345, -43.3356848849 -22.8736321297, -43.33588091918066 -22.873622499153345, -43.33607506554403 -22.873593700260805, -43.33626545425451 -22.873546010371463, -43.33645025176473 -22.873479888765022, -43.33662767837365 -22.873395972228696, -43.336796025366034 -22.873295068924605, -43.33695367146832 -22.873178150606726, -43.33709909846237 -22.873046343262374, -43.33723090580672 -22.87290091626833, -43.3373478241246 -22.87274327016604, -43.33744872742869 -22.87257492317365, -43.33753264396502 -22.87239749656473, -43.337598765571464 -22.872212699054508, -43.337646455460806 -22.872022310344033, -43.33767525435334 -22.87182816398066, -43.3376848849 -22.8716321297, -43.33767525435334 -22.87143609541934, -43.337646455460806 -22.871241949055968, -43.337598765571464 -22.871051560345492, -43.33753264396502 -22.87086676283527, -43.33744872742869 -22.87068933622635, -43.3373478241246 -22.87052098923396, -43.33723090580672 -22.87036334313167, -43.33709909846237 -22.870217916137626, -43.33695367146832 -22.870086108793274, -43.336796025366034 -22.869969190475395, -43.33662767837365 -22.869868287171304, -43.33645025176473 -22.869784370634978, -43.33626545425451 -22.869718249028537, -43.33607506554403 -22.869670559139195, -43.33588091918066 -22.869641760246655, -43.3356848849 -22.8696321297, -43.335488850619335 -22.869641760246655, -43.335294704255965 -22.869670559139195, -43.335104315545486 -22.869718249028537, -43.334919518035264 -22.869784370634978, -43.33474209142634 -22.869868287171304, -43.33457374443396 -22.869969190475395, -43.33441609833167 -22.870086108793274, -43.33427067133763 -22.870217916137626, -43.334138863993275 -22.87036334313167, -43.334021945675396 -22.87052098923396, -43.3339210423713 -22.87068933622635, -43.333837125834975 -22.87086676283527, -43.33377100422853 -22.871051560345492, -43.33372331433919 -22.871241949055968, -43.33369451544665 -22.87143609541934, -43.333684884899995 -22.8716321297))" +000462,Madureira,Zona Norte,88a8a06087fffff,,,,,,,, +000464,Barra da Tijuca,Barra da Tijuca,88a8a07557fffff,,,,,,,, +000466,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076edfffff,,,,,,,, +000467,Barra da Tijuca,Barra da Tijuca,88a8a0755dfffff,,,,,,,, +000468,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +000472,Vargem Grande,Barra da Tijuca,88a8a076e9fffff,,,,,,,, +000474,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744dfffff,,,,,,,, +000475,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +000476,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +000480,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,TRUE,350,-23.004144,-43.30396613,PO,J,Rio da Cachoeira,"POLYGON ((-43.3019661326 -23.0041439955, -43.30197576314666 -23.00434002978066, -43.302004562039194 -23.004534176144034, -43.30205225192854 -23.00472456485451, -43.30211837353498 -23.00490936236473, -43.30220229007131 -23.005086788973653, -43.3023031933754 -23.005255135966042, -43.30242011169328 -23.00541278206833, -43.30255191903763 -23.005558209062375, -43.30269734603168 -23.005690016406728, -43.302854992133966 -23.005806934724607, -43.30302333912635 -23.005907838028698, -43.30320076573527 -23.005991754565024, -43.30338556324549 -23.006057876171464, -43.30357595195597 -23.006105566060807, -43.30377009831934 -23.006134364953347, -43.3039661326 -23.0061439955, -43.304162166880666 -23.006134364953347, -43.304356313244035 -23.006105566060807, -43.304546701954514 -23.006057876171464, -43.30473149946474 -23.005991754565024, -43.30490892607366 -23.005907838028698, -43.30507727306604 -23.005806934724607, -43.30523491916833 -23.005690016406728, -43.30538034616237 -23.005558209062375, -43.305512153506726 -23.00541278206833, -43.305629071824605 -23.005255135966042, -43.3057299751287 -23.005086788973653, -43.305813891665025 -23.00490936236473, -43.30588001327147 -23.00472456485451, -43.30592770316081 -23.004534176144034, -43.30595650205335 -23.00434002978066, -43.305966132600005 -23.0041439955, -43.30595650205335 -23.003947961219342, -43.30592770316081 -23.00375381485597, -43.30588001327147 -23.003563426145494, -43.305813891665025 -23.00337862863527, -43.3057299751287 -23.00320120202635, -43.305629071824605 -23.00303285503396, -43.305512153506726 -23.002875208931673, -43.30538034616237 -23.002729781937628, -43.30523491916833 -23.002597974593275, -43.30507727306604 -23.002481056275396, -43.30490892607366 -23.002380152971305, -43.30473149946474 -23.00229623643498, -43.304546701954514 -23.00223011482854, -43.304356313244035 -23.002182424939196, -43.304162166880666 -23.002153626046656, -43.3039661326 -23.002143995500003, -43.30377009831934 -23.002153626046656, -43.30357595195597 -23.002182424939196, -43.30338556324549 -23.00223011482854, -43.30320076573527 -23.00229623643498, -43.30302333912635 -23.002380152971305, -43.302854992133966 -23.002481056275396, -43.30269734603168 -23.002597974593275, -43.30255191903763 -23.002729781937628, -43.30242011169328 -23.002875208931673, -43.3023031933754 -23.00303285503396, -43.30220229007131 -23.00320120202635, -43.30211837353498 -23.00337862863527, -43.30205225192854 -23.003563426145494, -43.302004562039194 -23.00375381485597, -43.30197576314666 -23.003947961219342, -43.3019661326 -23.0041439955))" +000482,Barra da Tijuca,Barra da Tijuca,88a8a0719dfffff,,,,,,,, +000483,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07639fffff,,,,,,,, +000484,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07461fffff,,,,,,,, +000485,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744bfffff,,,,,,,, +000487,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0763dfffff,,,,,,,, +000488,Camorim,Barra da Tijuca,88a8a07519fffff,TRUE,257,-22.97710105,-43.41680485,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.414804847 -22.9771010491, -43.414814477546656 -22.97729708338066, -43.41484327643919 -22.977491229744032, -43.414890966328535 -22.977681618454508, -43.41495708793498 -22.97786641596473, -43.415041004471306 -22.97804384257365, -43.4151419077754 -22.97821218956604, -43.41525882609328 -22.978369835668328, -43.41539063343763 -22.978515262662373, -43.41553606043168 -22.978647070006726, -43.415693706533965 -22.978763988324605, -43.41586205352635 -22.978864891628696, -43.41603948013527 -22.978948808165022, -43.41622427764549 -22.979014929771463, -43.41641466635597 -22.979062619660805, -43.41660881271934 -22.979091418553345, -43.416804847 -22.9791010491, -43.417000881280664 -22.979091418553345, -43.417195027644034 -22.979062619660805, -43.41738541635451 -22.979014929771463, -43.417570213864735 -22.978948808165022, -43.41774764047366 -22.978864891628696, -43.41791598746604 -22.978763988324605, -43.418073633568326 -22.978647070006726, -43.41821906056237 -22.978515262662373, -43.418350867906724 -22.978369835668328, -43.4184677862246 -22.97821218956604, -43.4185686895287 -22.97804384257365, -43.418652606065024 -22.97786641596473, -43.41871872767147 -22.977681618454508, -43.41876641756081 -22.977491229744032, -43.41879521645335 -22.97729708338066, -43.418804847000004 -22.9771010491, -43.41879521645335 -22.97690501481934, -43.41876641756081 -22.976710868455967, -43.41871872767147 -22.976520479745492, -43.418652606065024 -22.97633568223527, -43.4185686895287 -22.97615825562635, -43.4184677862246 -22.97598990863396, -43.418350867906724 -22.97583226253167, -43.41821906056237 -22.975686835537626, -43.418073633568326 -22.975555028193273, -43.41791598746604 -22.975438109875395, -43.41774764047366 -22.975337206571304, -43.417570213864735 -22.975253290034978, -43.41738541635451 -22.975187168428537, -43.417195027644034 -22.975139478539194, -43.417000881280664 -22.975110679646654, -43.416804847 -22.9751010491, -43.41660881271934 -22.975110679646654, -43.41641466635597 -22.975139478539194, -43.41622427764549 -22.975187168428537, -43.41603948013527 -22.975253290034978, -43.41586205352635 -22.975337206571304, -43.415693706533965 -22.975438109875395, -43.41553606043168 -22.975555028193273, -43.41539063343763 -22.975686835537626, -43.41525882609328 -22.97583226253167, -43.4151419077754 -22.97598990863396, -43.415041004471306 -22.97615825562635, -43.41495708793498 -22.97633568223527, -43.414890966328535 -22.976520479745492, -43.41484327643919 -22.976710868455967, -43.414814477546656 -22.97690501481934, -43.414804847 -22.9771010491))" +000490,Barra da Tijuca,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +000493,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +000495,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +000497,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +000498,Inhoaíba,Zona Oeste,88a8a02805fffff,,,,,,,, +000500,Inhoaíba,Zona Oeste,88a8a02829fffff,,,,,,,, +000503,Taquara,Jacarepaguá,88a8a06283fffff,TRUE,204,-22.92208789,-43.37246117,PC,J,Rio Grande,"POLYGON ((-43.3704611736 -22.922087888, -43.370470804146656 -22.92228392228066, -43.37049960303919 -22.922478068644033, -43.370547292928535 -22.922668457354508, -43.37061341453498 -22.92285325486473, -43.370697331071305 -22.92303068147365, -43.3707982343754 -22.92319902846604, -43.37091515269328 -22.92335667456833, -43.37104696003763 -22.923502101562374, -43.37119238703168 -22.923633908906726, -43.371350033133965 -22.923750827224605, -43.371518380126346 -22.923851730528696, -43.37169580673527 -22.923935647065022, -43.37188060424549 -22.924001768671463, -43.37207099295597 -22.924049458560805, -43.37226513931934 -22.924078257453345, -43.3724611736 -22.924087888, -43.372657207880664 -22.924078257453345, -43.372851354244034 -22.924049458560805, -43.37304174295451 -22.924001768671463, -43.373226540464735 -22.923935647065022, -43.373403967073656 -22.923851730528696, -43.37357231406604 -22.923750827224605, -43.373729960168326 -22.923633908906726, -43.37387538716237 -22.923502101562374, -43.374007194506724 -22.92335667456833, -43.3741241128246 -22.92319902846604, -43.3742250161287 -22.92303068147365, -43.37430893266502 -22.92285325486473, -43.37437505427147 -22.922668457354508, -43.37442274416081 -22.922478068644033, -43.37445154305335 -22.92228392228066, -43.374461173600004 -22.922087888, -43.37445154305335 -22.92189185371934, -43.37442274416081 -22.921697707355968, -43.37437505427147 -22.921507318645492, -43.37430893266502 -22.92132252113527, -43.3742250161287 -22.92114509452635, -43.3741241128246 -22.92097674753396, -43.374007194506724 -22.920819101431672, -43.37387538716237 -22.920673674437626, -43.373729960168326 -22.920541867093274, -43.37357231406604 -22.920424948775395, -43.373403967073656 -22.920324045471304, -43.373226540464735 -22.920240128934978, -43.37304174295451 -22.920174007328537, -43.372851354244034 -22.920126317439195, -43.372657207880664 -22.920097518546655, -43.3724611736 -22.920087888, -43.37226513931934 -22.920097518546655, -43.37207099295597 -22.920126317439195, -43.37188060424549 -22.920174007328537, -43.37169580673527 -22.920240128934978, -43.371518380126346 -22.920324045471304, -43.371350033133965 -22.920424948775395, -43.37119238703168 -22.920541867093274, -43.37104696003763 -22.920673674437626, -43.37091515269328 -22.920819101431672, -43.3707982343754 -22.92097674753396, -43.370697331071305 -22.92114509452635, -43.37061341453498 -22.92132252113527, -43.370547292928535 -22.921507318645492, -43.37049960303919 -22.921697707355968, -43.370470804146656 -22.92189185371934, -43.3704611736 -22.922087888))" +000504,Taquara,Jacarepaguá,88a8a06283fffff,TRUE,204,-22.92208789,-43.37246117,PC,J,Rio Grande,"POLYGON ((-43.3704611736 -22.922087888, -43.370470804146656 -22.92228392228066, -43.37049960303919 -22.922478068644033, -43.370547292928535 -22.922668457354508, -43.37061341453498 -22.92285325486473, -43.370697331071305 -22.92303068147365, -43.3707982343754 -22.92319902846604, -43.37091515269328 -22.92335667456833, -43.37104696003763 -22.923502101562374, -43.37119238703168 -22.923633908906726, -43.371350033133965 -22.923750827224605, -43.371518380126346 -22.923851730528696, -43.37169580673527 -22.923935647065022, -43.37188060424549 -22.924001768671463, -43.37207099295597 -22.924049458560805, -43.37226513931934 -22.924078257453345, -43.3724611736 -22.924087888, -43.372657207880664 -22.924078257453345, -43.372851354244034 -22.924049458560805, -43.37304174295451 -22.924001768671463, -43.373226540464735 -22.923935647065022, -43.373403967073656 -22.923851730528696, -43.37357231406604 -22.923750827224605, -43.373729960168326 -22.923633908906726, -43.37387538716237 -22.923502101562374, -43.374007194506724 -22.92335667456833, -43.3741241128246 -22.92319902846604, -43.3742250161287 -22.92303068147365, -43.37430893266502 -22.92285325486473, -43.37437505427147 -22.922668457354508, -43.37442274416081 -22.922478068644033, -43.37445154305335 -22.92228392228066, -43.374461173600004 -22.922087888, -43.37445154305335 -22.92189185371934, -43.37442274416081 -22.921697707355968, -43.37437505427147 -22.921507318645492, -43.37430893266502 -22.92132252113527, -43.3742250161287 -22.92114509452635, -43.3741241128246 -22.92097674753396, -43.374007194506724 -22.920819101431672, -43.37387538716237 -22.920673674437626, -43.373729960168326 -22.920541867093274, -43.37357231406604 -22.920424948775395, -43.373403967073656 -22.920324045471304, -43.373226540464735 -22.920240128934978, -43.37304174295451 -22.920174007328537, -43.372851354244034 -22.920126317439195, -43.372657207880664 -22.920097518546655, -43.3724611736 -22.920087888, -43.37226513931934 -22.920097518546655, -43.37207099295597 -22.920126317439195, -43.37188060424549 -22.920174007328537, -43.37169580673527 -22.920240128934978, -43.371518380126346 -22.920324045471304, -43.371350033133965 -22.920424948775395, -43.37119238703168 -22.920541867093274, -43.37104696003763 -22.920673674437626, -43.37091515269328 -22.920819101431672, -43.3707982343754 -22.92097674753396, -43.370697331071305 -22.92114509452635, -43.37061341453498 -22.92132252113527, -43.370547292928535 -22.921507318645492, -43.37049960303919 -22.921697707355968, -43.370470804146656 -22.92189185371934, -43.3704611736 -22.922087888))" +000505,Taquara,Jacarepaguá,88a8a06295fffff,,,,,,,, +000510,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +000511,Taquara,Jacarepaguá,88a8a06285fffff,,,,,,,, +000512,Pechincha,Jacarepaguá,88a8a062e3fffff,TRUE,202,-22.93584943,-43.35135122,PM,J,Rio Grande,"POLYGON ((-43.3493512215 -22.9358494297, -43.34936085204666 -22.93604546398066, -43.349389650939194 -22.936239610344032, -43.34943734082854 -22.936429999054507, -43.34950346243498 -22.93661479656473, -43.34958737897131 -22.93679222317365, -43.3496882822754 -22.93696057016604, -43.34980520059328 -22.937118216268328, -43.34993700793763 -22.937263643262373, -43.35008243493168 -22.937395450606726, -43.35024008103397 -22.937512368924605, -43.35040842802635 -22.937613272228695, -43.35058585463527 -22.93769718876502, -43.35077065214549 -22.937763310371462, -43.35096104085597 -22.937811000260805, -43.35115518721934 -22.937839799153345, -43.3513512215 -22.937849429699998, -43.351547255780666 -22.937839799153345, -43.351741402144036 -22.937811000260805, -43.351931790854515 -22.937763310371462, -43.35211658836474 -22.93769718876502, -43.35229401497366 -22.937613272228695, -43.35246236196604 -22.937512368924605, -43.35262000806833 -22.937395450606726, -43.35276543506237 -22.937263643262373, -43.352897242406726 -22.937118216268328, -43.353014160724605 -22.93696057016604, -43.3531150640287 -22.93679222317365, -43.353198980565026 -22.93661479656473, -43.35326510217147 -22.936429999054507, -43.35331279206081 -22.936239610344032, -43.35334159095335 -22.93604546398066, -43.353351221500006 -22.9358494297, -43.35334159095335 -22.93565339541934, -43.35331279206081 -22.935459249055967, -43.35326510217147 -22.93526886034549, -43.353198980565026 -22.93508406283527, -43.3531150640287 -22.934906636226348, -43.353014160724605 -22.93473828923396, -43.352897242406726 -22.93458064313167, -43.35276543506237 -22.934435216137626, -43.35262000806833 -22.934303408793273, -43.35246236196604 -22.934186490475394, -43.35229401497366 -22.934085587171303, -43.35211658836474 -22.934001670634977, -43.351931790854515 -22.933935549028536, -43.351741402144036 -22.933887859139194, -43.351547255780666 -22.933859060246654, -43.3513512215 -22.9338494297, -43.35115518721934 -22.933859060246654, -43.35096104085597 -22.933887859139194, -43.35077065214549 -22.933935549028536, -43.35058585463527 -22.934001670634977, -43.35040842802635 -22.934085587171303, -43.35024008103397 -22.934186490475394, -43.35008243493168 -22.934303408793273, -43.34993700793763 -22.934435216137626, -43.34980520059328 -22.93458064313167, -43.3496882822754 -22.93473828923396, -43.34958737897131 -22.934906636226348, -43.34950346243498 -22.93508406283527, -43.34943734082854 -22.93526886034549, -43.349389650939194 -22.935459249055967, -43.34936085204666 -22.93565339541934, -43.3493512215 -22.9358494297))" +000513,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e1fffff,,,,,,,, +000514,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e1fffff,,,,,,,, +000515,Freguesia (Jacarepaguá),Jacarepaguá,88a8a0605bfffff,TRUE,109,-22.93787222,-43.33288889,PC,J,Rio do Anil,"POLYGON ((-43.3308888888889 -22.9378722222222, -43.33089851943556 -22.93806825650286, -43.330927318328094 -22.938262402866233, -43.330975008217436 -22.938452791576708, -43.33104112982388 -22.93863758908693, -43.33112504636021 -22.93881501569585, -43.3312259496643 -22.93898336268824, -43.33134286798218 -22.93914100879053, -43.33147467532653 -22.939286435784574, -43.33162010232058 -22.939418243128927, -43.331777748422866 -22.939535161446805, -43.33194609541525 -22.939636064750896, -43.33212352202417 -22.939719981287222, -43.33230831953439 -22.939786102893663, -43.33249870824487 -22.939833792783006, -43.33269285460824 -22.939862591675546, -43.3328888888889 -22.9398722222222, -43.333084923169565 -22.939862591675546, -43.333279069532935 -22.939833792783006, -43.333469458243414 -22.939786102893663, -43.333654255753636 -22.939719981287222, -43.33383168236256 -22.939636064750896, -43.33400002935494 -22.939535161446805, -43.33415767545723 -22.939418243128927, -43.33430310245127 -22.939286435784574, -43.334434909795625 -22.93914100879053, -43.334551828113504 -22.93898336268824, -43.3346527314176 -22.93881501569585, -43.334736647953925 -22.93863758908693, -43.33480276956037 -22.938452791576708, -43.33485045944971 -22.938262402866233, -43.33487925834225 -22.93806825650286, -43.334888888888905 -22.9378722222222, -43.33487925834225 -22.93767618794154, -43.33485045944971 -22.937482041578168, -43.33480276956037 -22.937291652867692, -43.334736647953925 -22.93710685535747, -43.3346527314176 -22.93692942874855, -43.334551828113504 -22.93676108175616, -43.334434909795625 -22.936603435653872, -43.33430310245127 -22.936458008659827, -43.33415767545723 -22.936326201315474, -43.33400002935494 -22.936209282997595, -43.33383168236256 -22.936108379693504, -43.333654255753636 -22.936024463157178, -43.333469458243414 -22.935958341550737, -43.333279069532935 -22.935910651661395, -43.333084923169565 -22.935881852768855, -43.3328888888889 -22.9358722222222, -43.33269285460824 -22.935881852768855, -43.33249870824487 -22.935910651661395, -43.33230831953439 -22.935958341550737, -43.33212352202417 -22.936024463157178, -43.33194609541525 -22.936108379693504, -43.331777748422866 -22.936209282997595, -43.33162010232058 -22.936326201315474, -43.33147467532653 -22.936458008659827, -43.33134286798218 -22.936603435653872, -43.3312259496643 -22.93676108175616, -43.33112504636021 -22.93692942874855, -43.33104112982388 -22.93710685535747, -43.330975008217436 -22.937291652867692, -43.330927318328094 -22.937482041578168, -43.33089851943556 -22.93767618794154, -43.3308888888889 -22.9378722222222))" +000516,Paciência,Zona Oeste,88a8a02853fffff,,,,,,,, +000517,Paciência,Zona Oeste,88a8a02853fffff,,,,,,,, +000520,Freguesia (Jacarepaguá),Jacarepaguá,88a8a0605bfffff,,,,,,,, +000523,Anil,Jacarepaguá,88a8a062edfffff,,,,,,,, +000525,Anil,Jacarepaguá,88a8a0623bfffff,,,,,,,, +000526,Taquara,Jacarepaguá,88a8a06295fffff,,,,,,,, +000527,Taquara,Jacarepaguá,88a8a06295fffff,TRUE,197,-22.91420837,-43.37915094,PC,J,Rio Grande,"POLYGON ((-43.3771509356 -22.9142083716, -43.37716056614666 -22.91440440588066, -43.37718936503919 -22.914598552244033, -43.377237054928536 -22.91478894095451, -43.37730317653498 -22.91497373846473, -43.377387093071306 -22.915151165073652, -43.3774879963754 -22.91531951206604, -43.37760491469328 -22.91547715816833, -43.37773672203763 -22.915622585162374, -43.37788214903168 -22.915754392506727, -43.378039795133965 -22.915871310824606, -43.37820814212635 -22.915972214128697, -43.37838556873527 -22.916056130665023, -43.37857036624549 -22.916122252271464, -43.37876075495597 -22.916169942160806, -43.37895490131934 -22.916198741053346, -43.3791509356 -22.9162083716, -43.379346969880665 -22.916198741053346, -43.379541116244035 -22.916169942160806, -43.37973150495451 -22.916122252271464, -43.379916302464736 -22.916056130665023, -43.38009372907366 -22.915972214128697, -43.38026207606604 -22.915871310824606, -43.38041972216833 -22.915754392506727, -43.38056514916237 -22.915622585162374, -43.380696956506725 -22.91547715816833, -43.380813874824604 -22.91531951206604, -43.3809147781287 -22.915151165073652, -43.380998694665024 -22.91497373846473, -43.38106481627147 -22.91478894095451, -43.38111250616081 -22.914598552244033, -43.38114130505335 -22.91440440588066, -43.381150935600004 -22.9142083716, -43.38114130505335 -22.914012337319342, -43.38111250616081 -22.91381819095597, -43.38106481627147 -22.913627802245493, -43.380998694665024 -22.91344300473527, -43.3809147781287 -22.91326557812635, -43.380813874824604 -22.91309723113396, -43.380696956506725 -22.912939585031673, -43.38056514916237 -22.912794158037627, -43.38041972216833 -22.912662350693275, -43.38026207606604 -22.912545432375396, -43.38009372907366 -22.912444529071305, -43.379916302464736 -22.91236061253498, -43.37973150495451 -22.912294490928538, -43.379541116244035 -22.912246801039196, -43.379346969880665 -22.912218002146655, -43.3791509356 -22.912208371600002, -43.37895490131934 -22.912218002146655, -43.37876075495597 -22.912246801039196, -43.37857036624549 -22.912294490928538, -43.37838556873527 -22.91236061253498, -43.37820814212635 -22.912444529071305, -43.378039795133965 -22.912545432375396, -43.37788214903168 -22.912662350693275, -43.37773672203763 -22.912794158037627, -43.37760491469328 -22.912939585031673, -43.3774879963754 -22.91309723113396, -43.377387093071306 -22.91326557812635, -43.37730317653498 -22.91344300473527, -43.377237054928536 -22.913627802245493, -43.37718936503919 -22.91381819095597, -43.37716056614666 -22.914012337319342, -43.3771509356 -22.9142083716))" +000528,Taquara,Jacarepaguá,88a8a062b9fffff,TRUE,442,-22.914945,-43.375297,PO,J,,"POLYGON ((-43.373297 -22.914945, -43.37330663054666 -22.91514103428066, -43.373335429439194 -22.915335180644032, -43.37338311932854 -22.915525569354507, -43.37344924093498 -22.91571036686473, -43.37353315747131 -22.91588779347365, -43.3736340607754 -22.91605614046604, -43.37375097909328 -22.916213786568328, -43.37388278643763 -22.916359213562373, -43.37402821343168 -22.916491020906726, -43.374185859533966 -22.916607939224605, -43.37435420652635 -22.916708842528696, -43.37453163313527 -22.91679275906502, -43.37471643064549 -22.916858880671462, -43.37490681935597 -22.916906570560805, -43.37510096571934 -22.916935369453345, -43.375297 -22.916945, -43.375493034280666 -22.916935369453345, -43.375687180644036 -22.916906570560805, -43.375877569354515 -22.916858880671462, -43.37606236686474 -22.91679275906502, -43.37623979347366 -22.916708842528696, -43.37640814046604 -22.916607939224605, -43.37656578656833 -22.916491020906726, -43.37671121356237 -22.916359213562373, -43.376843020906726 -22.916213786568328, -43.376959939224605 -22.91605614046604, -43.3770608425287 -22.91588779347365, -43.377144759065025 -22.91571036686473, -43.37721088067147 -22.915525569354507, -43.37725857056081 -22.915335180644032, -43.37728736945335 -22.91514103428066, -43.377297000000006 -22.914945, -43.37728736945335 -22.91474896571934, -43.37725857056081 -22.914554819355967, -43.37721088067147 -22.91436443064549, -43.377144759065025 -22.91417963313527, -43.3770608425287 -22.914002206526348, -43.376959939224605 -22.91383385953396, -43.376843020906726 -22.91367621343167, -43.37671121356237 -22.913530786437626, -43.37656578656833 -22.913398979093273, -43.37640814046604 -22.913282060775394, -43.37623979347366 -22.913181157471303, -43.37606236686474 -22.913097240934977, -43.375877569354515 -22.913031119328537, -43.375687180644036 -22.912983429439194, -43.375493034280666 -22.912954630546654, -43.375297 -22.912945, -43.37510096571934 -22.912954630546654, -43.37490681935597 -22.912983429439194, -43.37471643064549 -22.913031119328537, -43.37453163313527 -22.913097240934977, -43.37435420652635 -22.913181157471303, -43.374185859533966 -22.913282060775394, -43.37402821343168 -22.913398979093273, -43.37388278643763 -22.913530786437626, -43.37375097909328 -22.91367621343167, -43.3736340607754 -22.91383385953396, -43.37353315747131 -22.914002206526348, -43.37344924093498 -22.91417963313527, -43.37338311932854 -22.91436443064549, -43.373335429439194 -22.914554819355967, -43.37330663054666 -22.91474896571934, -43.373297 -22.914945))" +000532,Engenho Novo,Zona Norte,88a8a0611bfffff,TRUE,287,-22.90251669,-43.26951439,PO,G,Canal do Cunha,"POLYGON ((-43.267514393999996 -22.9025166853, -43.26752402454665 -22.90271271958066, -43.26755282343919 -22.902906865944033, -43.26760051332853 -22.903097254654508, -43.267666634934976 -22.90328205216473, -43.2677505514713 -22.90345947877365, -43.267851454775396 -22.90362782576604, -43.267968373093275 -22.90378547186833, -43.26810018043763 -22.903930898862374, -43.26824560743167 -22.904062706206727, -43.26840325353396 -22.904179624524605, -43.26857160052634 -22.904280527828696, -43.268749027135264 -22.904364444365022, -43.26893382464549 -22.904430565971463, -43.269124213355965 -22.904478255860806, -43.269318359719335 -22.904507054753346, -43.269514394 -22.9045166853, -43.26971042828066 -22.904507054753346, -43.26990457464403 -22.904478255860806, -43.27009496335451 -22.904430565971463, -43.27027976086473 -22.904364444365022, -43.27045718747365 -22.904280527828696, -43.270625534466035 -22.904179624524605, -43.27078318056832 -22.904062706206727, -43.27092860756237 -22.903930898862374, -43.27106041490672 -22.90378547186833, -43.2711773332246 -22.90362782576604, -43.271278236528694 -22.90345947877365, -43.27136215306502 -22.90328205216473, -43.271428274671464 -22.903097254654508, -43.27147596456081 -22.902906865944033, -43.27150476345334 -22.90271271958066, -43.271514394 -22.9025166853, -43.27150476345334 -22.90232065101934, -43.27147596456081 -22.902126504655968, -43.271428274671464 -22.901936115945492, -43.27136215306502 -22.90175131843527, -43.271278236528694 -22.90157389182635, -43.2711773332246 -22.90140554483396, -43.27106041490672 -22.901247898731672, -43.27092860756237 -22.901102471737627, -43.27078318056832 -22.900970664393274, -43.270625534466035 -22.900853746075395, -43.27045718747365 -22.900752842771304, -43.27027976086473 -22.900668926234978, -43.27009496335451 -22.900602804628537, -43.26990457464403 -22.900555114739195, -43.26971042828066 -22.900526315846655, -43.269514394 -22.9005166853, -43.269318359719335 -22.900526315846655, -43.269124213355965 -22.900555114739195, -43.26893382464549 -22.900602804628537, -43.268749027135264 -22.900668926234978, -43.26857160052634 -22.900752842771304, -43.26840325353396 -22.900853746075395, -43.26824560743167 -22.900970664393274, -43.26810018043763 -22.901102471737627, -43.267968373093275 -22.901247898731672, -43.267851454775396 -22.90140554483396, -43.2677505514713 -22.90157389182635, -43.267666634934976 -22.90175131843527, -43.26760051332853 -22.901936115945492, -43.26755282343919 -22.902126504655968, -43.26752402454665 -22.90232065101934, -43.267514393999996 -22.9025166853))" +000533,Taquara,Jacarepaguá,88a8a06287fffff,,,,,,,, +000534,Camorim,Barra da Tijuca,88a8a07519fffff,TRUE,257,-22.97710105,-43.41680485,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.414804847 -22.9771010491, -43.414814477546656 -22.97729708338066, -43.41484327643919 -22.977491229744032, -43.414890966328535 -22.977681618454508, -43.41495708793498 -22.97786641596473, -43.415041004471306 -22.97804384257365, -43.4151419077754 -22.97821218956604, -43.41525882609328 -22.978369835668328, -43.41539063343763 -22.978515262662373, -43.41553606043168 -22.978647070006726, -43.415693706533965 -22.978763988324605, -43.41586205352635 -22.978864891628696, -43.41603948013527 -22.978948808165022, -43.41622427764549 -22.979014929771463, -43.41641466635597 -22.979062619660805, -43.41660881271934 -22.979091418553345, -43.416804847 -22.9791010491, -43.417000881280664 -22.979091418553345, -43.417195027644034 -22.979062619660805, -43.41738541635451 -22.979014929771463, -43.417570213864735 -22.978948808165022, -43.41774764047366 -22.978864891628696, -43.41791598746604 -22.978763988324605, -43.418073633568326 -22.978647070006726, -43.41821906056237 -22.978515262662373, -43.418350867906724 -22.978369835668328, -43.4184677862246 -22.97821218956604, -43.4185686895287 -22.97804384257365, -43.418652606065024 -22.97786641596473, -43.41871872767147 -22.977681618454508, -43.41876641756081 -22.977491229744032, -43.41879521645335 -22.97729708338066, -43.418804847000004 -22.9771010491, -43.41879521645335 -22.97690501481934, -43.41876641756081 -22.976710868455967, -43.41871872767147 -22.976520479745492, -43.418652606065024 -22.97633568223527, -43.4185686895287 -22.97615825562635, -43.4184677862246 -22.97598990863396, -43.418350867906724 -22.97583226253167, -43.41821906056237 -22.975686835537626, -43.418073633568326 -22.975555028193273, -43.41791598746604 -22.975438109875395, -43.41774764047366 -22.975337206571304, -43.417570213864735 -22.975253290034978, -43.41738541635451 -22.975187168428537, -43.417195027644034 -22.975139478539194, -43.417000881280664 -22.975110679646654, -43.416804847 -22.9751010491, -43.41660881271934 -22.975110679646654, -43.41641466635597 -22.975139478539194, -43.41622427764549 -22.975187168428537, -43.41603948013527 -22.975253290034978, -43.41586205352635 -22.975337206571304, -43.415693706533965 -22.975438109875395, -43.41553606043168 -22.975555028193273, -43.41539063343763 -22.975686835537626, -43.41525882609328 -22.97583226253167, -43.4151419077754 -22.97598990863396, -43.415041004471306 -22.97615825562635, -43.41495708793498 -22.97633568223527, -43.414890966328535 -22.976520479745492, -43.41484327643919 -22.976710868455967, -43.414814477546656 -22.97690501481934, -43.414804847 -22.9771010491))" +000535,Curicica,Jacarepaguá,88a8a0753bfffff,,,,,,,, +000536,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +000537,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07445fffff,,,,,,,, +000544,Bangu,Grande Bangu,88a8a06635fffff,,,,,,,, +000545,Padre Miguel,Grande Bangu,88a8a06627fffff,,,,,,,, +000547,Vila Militar,Grande Bangu,88a8a06731fffff,,,,,,,, +000548,Bangu,Grande Bangu,88a8a066e3fffff,,,,,,,, +000550,Realengo,Grande Bangu,88a8a06711fffff,,,,,,,, +000553,Bangu,Grande Bangu,88a8a06623fffff,,,,,,,, +000555,Bangu,Grande Bangu,88a8a06635fffff,,,,,,,, +000557,Realengo,Grande Bangu,88a8a0671bfffff,,,,,,,, +000561,Realengo,Grande Bangu,88a8a06719fffff,,,,,,,, +000564,Campo Grande,Zona Oeste,88a8a0291dfffff,,,,,,,, +000567,Campo Grande,Zona Oeste,88a8a02957fffff,,,,,,,, +000568,Campo Grande,Zona Oeste,88a8a02957fffff,TRUE,270,-22.90472994,-43.55646917,PO,S,Rio Cabucu Piraque,"POLYGON ((-43.554469171099996 -22.9047299437, -43.55447880164665 -22.90492597798066, -43.55450760053919 -22.905120124344034, -43.55455529042853 -22.90531051305451, -43.554621412034976 -22.90549531056473, -43.5547053285713 -22.905672737173653, -43.554806231875396 -22.905841084166042, -43.554923150193275 -22.90599873026833, -43.55505495753763 -22.906144157262375, -43.55520038453167 -22.906275964606728, -43.55535803063396 -22.906392882924607, -43.55552637762634 -22.906493786228697, -43.555703804235264 -22.906577702765023, -43.55588860174549 -22.906643824371464, -43.556078990455966 -22.906691514260807, -43.556273136819335 -22.906720313153347, -43.5564691711 -22.9067299437, -43.55666520538066 -22.906720313153347, -43.55685935174403 -22.906691514260807, -43.55704974045451 -22.906643824371464, -43.55723453796473 -22.906577702765023, -43.55741196457365 -22.906493786228697, -43.557580311566035 -22.906392882924607, -43.55773795766832 -22.906275964606728, -43.55788338466237 -22.906144157262375, -43.55801519200672 -22.90599873026833, -43.5581321103246 -22.905841084166042, -43.558233013628694 -22.905672737173653, -43.55831693016502 -22.90549531056473, -43.558383051771465 -22.90531051305451, -43.55843074166081 -22.905120124344034, -43.55845954055334 -22.90492597798066, -43.5584691711 -22.9047299437, -43.55845954055334 -22.904533909419342, -43.55843074166081 -22.90433976305597, -43.558383051771465 -22.904149374345494, -43.55831693016502 -22.90396457683527, -43.558233013628694 -22.90378715022635, -43.5581321103246 -22.90361880323396, -43.55801519200672 -22.903461157131673, -43.55788338466237 -22.903315730137628, -43.55773795766832 -22.903183922793275, -43.557580311566035 -22.903067004475396, -43.55741196457365 -22.902966101171305, -43.55723453796473 -22.90288218463498, -43.55704974045451 -22.90281606302854, -43.55685935174403 -22.902768373139196, -43.55666520538066 -22.902739574246656, -43.5564691711 -22.902729943700002, -43.556273136819335 -22.902739574246656, -43.556078990455966 -22.902768373139196, -43.55588860174549 -22.90281606302854, -43.555703804235264 -22.90288218463498, -43.55552637762634 -22.902966101171305, -43.55535803063396 -22.903067004475396, -43.55520038453167 -22.903183922793275, -43.55505495753763 -22.903315730137628, -43.554923150193275 -22.903461157131673, -43.554806231875396 -22.90361880323396, -43.5547053285713 -22.90378715022635, -43.554621412034976 -22.90396457683527, -43.55455529042853 -22.904149374345494, -43.55450760053919 -22.90433976305597, -43.55447880164665 -22.904533909419342, -43.554469171099996 -22.9047299437))" +000570,Campo Grande,Zona Oeste,88a8a02903fffff,,,,,,,, +000571,Campo Grande,Zona Oeste,88a8a0290bfffff,,,,,,,, +000572,Campo Grande,Zona Oeste,88a8a02911fffff,,,,,,,, +000574,Campo Grande,Zona Oeste,88a8a02957fffff,,,,,,,, +000576,Campo Grande,Zona Oeste,88a8a02955fffff,,,,,,,, +000577,Campo Grande,Zona Oeste,88a8a02955fffff,,,,,,,, +000578,Campo Grande,Zona Oeste,88a8a02959fffff,,,,,,,, +000580,Campo Grande,Zona Oeste,88a8a02823fffff,,,,,,,, +000583,Campo Grande,Zona Oeste,88a8a029d5fffff,,,,,,,, +000588,Santa Cruz,Zona Oeste,88a8a02ac7fffff,,,,,,,, +000589,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +000591,Santa Cruz,Zona Oeste,88a8a02a8bfffff,TRUE,291,-22.92690011,-43.67760137,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.675601365 -22.9269001118, -43.675610995546656 -22.927096146080657, -43.67563979443919 -22.92729029244403, -43.675687484328535 -22.927480681154506, -43.67575360593498 -22.92766547866473, -43.675837522471305 -22.92784290527365, -43.6759384257754 -22.92801125226604, -43.67605534409328 -22.928168898368327, -43.67618715143763 -22.928314325362372, -43.676332578431676 -22.928446132706725, -43.676490224533964 -22.928563051024604, -43.676658571526346 -22.928663954328695, -43.67683599813527 -22.92874787086502, -43.67702079564549 -22.92881399247146, -43.67721118435597 -22.928861682360804, -43.67740533071934 -22.928890481253344, -43.677601365 -22.928900111799997, -43.677797399280664 -22.928890481253344, -43.67799154564403 -22.928861682360804, -43.67818193435451 -22.92881399247146, -43.678366731864735 -22.92874787086502, -43.678544158473656 -22.928663954328695, -43.67871250546604 -22.928563051024604, -43.678870151568326 -22.928446132706725, -43.67901557856237 -22.928314325362372, -43.679147385906724 -22.928168898368327, -43.6792643042246 -22.92801125226604, -43.6793652075287 -22.92784290527365, -43.67944912406502 -22.92766547866473, -43.67951524567147 -22.927480681154506, -43.67956293556081 -22.92729029244403, -43.679591734453346 -22.927096146080657, -43.679601365 -22.9269001118, -43.679591734453346 -22.92670407751934, -43.67956293556081 -22.926509931155966, -43.67951524567147 -22.92631954244549, -43.67944912406502 -22.92613474493527, -43.6793652075287 -22.925957318326347, -43.6792643042246 -22.925788971333958, -43.679147385906724 -22.92563132523167, -43.67901557856237 -22.925485898237625, -43.678870151568326 -22.925354090893272, -43.67871250546604 -22.925237172575393, -43.678544158473656 -22.925136269271302, -43.678366731864735 -22.925052352734976, -43.67818193435451 -22.924986231128536, -43.67799154564403 -22.924938541239193, -43.677797399280664 -22.924909742346653, -43.677601365 -22.9249001118, -43.67740533071934 -22.924909742346653, -43.67721118435597 -22.924938541239193, -43.67702079564549 -22.924986231128536, -43.67683599813527 -22.925052352734976, -43.676658571526346 -22.925136269271302, -43.676490224533964 -22.925237172575393, -43.676332578431676 -22.925354090893272, -43.67618715143763 -22.925485898237625, -43.67605534409328 -22.92563132523167, -43.6759384257754 -22.925788971333958, -43.675837522471305 -22.925957318326347, -43.67575360593498 -22.92613474493527, -43.675687484328535 -22.92631954244549, -43.67563979443919 -22.926509931155966, -43.675610995546656 -22.92670407751934, -43.675601365 -22.9269001118))" +000594,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +000595,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +000596,Paciência,Zona Oeste,88a8a028ebfffff,,,,,,,, +000600,Maracanã,Grande Tijuca,88a8a06101fffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +000601,São Cristóvão,Centro,88a8a06105fffff,,,,,,,, +000602,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +000610,Barra da Tijuca,Barra da Tijuca,88a8a07515fffff,,,,,,,, +000611,Centro,Centro,88a8a06a0bfffff,,,,,,,, +000612,Ipanema,Zona Sul,88a8a07aa7fffff,,,,,,,, +000613,Ipanema,Zona Sul,88a8a07aa7fffff,,,,,,,, +000636,Guadalupe,Zona Norte,88a8a06561fffff,TRUE,69,-22.84043358,-43.37055622,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3685562209 -22.8404335759, -43.368565851446654 -22.84062961018066, -43.36859465033919 -22.840823756544033, -43.36864234022853 -22.84101414525451, -43.36870846183498 -22.84119894276473, -43.3687923783713 -22.841376369373652, -43.3688932816754 -22.84154471636604, -43.369010199993276 -22.84170236246833, -43.36914200733763 -22.841847789462374, -43.369287434331675 -22.841979596806727, -43.36944508043396 -22.842096515124606, -43.369613427426344 -22.842197418428697, -43.369790854035266 -22.842281334965023, -43.36997565154549 -22.842347456571463, -43.37016604025597 -22.842395146460806, -43.37036018661934 -22.842423945353346, -43.3705562209 -22.8424335759, -43.37075225518066 -22.842423945353346, -43.37094640154403 -22.842395146460806, -43.37113679025451 -22.842347456571463, -43.37132158776473 -22.842281334965023, -43.371499014373654 -22.842197418428697, -43.371667361366036 -22.842096515124606, -43.371825007468324 -22.841979596806727, -43.37197043446237 -22.841847789462374, -43.37210224180672 -22.84170236246833, -43.3722191601246 -22.84154471636604, -43.372320063428695 -22.841376369373652, -43.37240397996502 -22.84119894276473, -43.372470101571466 -22.84101414525451, -43.37251779146081 -22.840823756544033, -43.372546590353345 -22.84062961018066, -43.3725562209 -22.8404335759, -43.372546590353345 -22.84023754161934, -43.37251779146081 -22.840043395255968, -43.372470101571466 -22.839853006545493, -43.37240397996502 -22.83966820903527, -43.372320063428695 -22.83949078242635, -43.3722191601246 -22.83932243543396, -43.37210224180672 -22.839164789331672, -43.37197043446237 -22.839019362337627, -43.371825007468324 -22.838887554993274, -43.371667361366036 -22.838770636675395, -43.371499014373654 -22.838669733371304, -43.37132158776473 -22.83858581683498, -43.37113679025451 -22.838519695228538, -43.37094640154403 -22.838472005339195, -43.37075225518066 -22.838443206446655, -43.3705562209 -22.8384335759, -43.37036018661934 -22.838443206446655, -43.37016604025597 -22.838472005339195, -43.36997565154549 -22.838519695228538, -43.369790854035266 -22.83858581683498, -43.369613427426344 -22.838669733371304, -43.36944508043396 -22.838770636675395, -43.369287434331675 -22.838887554993274, -43.36914200733763 -22.839019362337627, -43.369010199993276 -22.839164789331672, -43.3688932816754 -22.83932243543396, -43.3687923783713 -22.83949078242635, -43.36870846183498 -22.83966820903527, -43.36864234022853 -22.839853006545493, -43.36859465033919 -22.840043395255968, -43.368565851446654 -22.84023754161934, -43.3685562209 -22.8404335759))" +000654,Barra da Tijuca,Barra da Tijuca,88a8a070a7fffff,,,,,,,, +000705,Magalhães Bastos,Grande Bangu,88a8a0673dfffff,,,,,,,, +000706,Magalhães Bastos,Grande Bangu,88a8a06739fffff,,,,,,,, +000708,Vila Militar,Grande Bangu,88a8a0673dfffff,,,,,,,, +000713,Vila Militar,Grande Bangu,88a8a06549fffff,,,,,,,, +000715,Vila Militar,Grande Bangu,88a8a06737fffff,,,,,,,, +000722,Deodoro,Grande Bangu,88a8a06541fffff,TRUE,403,-22.85429221,-43.38999922,PO,G,,"POLYGON ((-43.387999216066895 -22.8542922094428, -43.38800884661355 -22.85448824372346, -43.38803764550609 -22.854682390086833, -43.38808533539543 -22.854872778797308, -43.388151457001875 -22.85505757630753, -43.3882353735382 -22.85523500291645, -43.388336276842296 -22.85540334990884, -43.388453195160174 -22.85556099601113, -43.38858500250453 -22.855706423005174, -43.38873042949857 -22.855838230349526, -43.38888807560086 -22.855955148667405, -43.38905642259324 -22.856056051971496, -43.389233849202164 -22.856139968507822, -43.389418646712386 -22.856206090114263, -43.389609035422865 -22.856253780003605, -43.389803181786235 -22.856282578896145, -43.3899992160669 -22.8562922094428, -43.39019525034756 -22.856282578896145, -43.39038939671093 -22.856253780003605, -43.39057978542141 -22.856206090114263, -43.39076458293163 -22.856139968507822, -43.39094200954055 -22.856056051971496, -43.391110356532934 -22.855955148667405, -43.39126800263522 -22.855838230349526, -43.39141342962927 -22.855706423005174, -43.39154523697362 -22.85556099601113, -43.3916621552915 -22.85540334990884, -43.39176305859559 -22.85523500291645, -43.39184697513192 -22.85505757630753, -43.391913096738364 -22.854872778797308, -43.391960786627706 -22.854682390086833, -43.39198958552024 -22.85448824372346, -43.3919992160669 -22.8542922094428, -43.39198958552024 -22.85409617516214, -43.391960786627706 -22.853902028798768, -43.391913096738364 -22.853711640088292, -43.39184697513192 -22.85352684257807, -43.39176305859559 -22.85334941596915, -43.3916621552915 -22.85318106897676, -43.39154523697362 -22.85302342287447, -43.39141342962927 -22.852877995880426, -43.39126800263522 -22.852746188536074, -43.391110356532934 -22.852629270218195, -43.39094200954055 -22.852528366914104, -43.39076458293163 -22.852444450377778, -43.39057978542141 -22.852378328771337, -43.39038939671093 -22.852330638881995, -43.39019525034756 -22.852301839989455, -43.3899992160669 -22.8522922094428, -43.389803181786235 -22.852301839989455, -43.389609035422865 -22.852330638881995, -43.389418646712386 -22.852378328771337, -43.389233849202164 -22.852444450377778, -43.38905642259324 -22.852528366914104, -43.38888807560086 -22.852629270218195, -43.38873042949857 -22.852746188536074, -43.38858500250453 -22.852877995880426, -43.388453195160174 -22.85302342287447, -43.388336276842296 -22.85318106897676, -43.3882353735382 -22.85334941596915, -43.388151457001875 -22.85352684257807, -43.38808533539543 -22.853711640088292, -43.38803764550609 -22.853902028798768, -43.38800884661355 -22.85409617516214, -43.387999216066895 -22.8542922094428))" +000724,Guadalupe,Zona Norte,88a8a0656bfffff,TRUE,22,-22.84396484,-43.37546882,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3734688223 -22.8439648375, -43.373478452846655 -22.84416087178066, -43.37350725173919 -22.844355018144032, -43.373554941628534 -22.844545406854508, -43.37362106323498 -22.84473020436473, -43.373704979771304 -22.84490763097365, -43.3738058830754 -22.84507597796604, -43.37392280139328 -22.845233624068328, -43.37405460873763 -22.845379051062373, -43.374200035731675 -22.845510858406726, -43.37435768183396 -22.845627776724605, -43.374526028826345 -22.845728680028696, -43.37470345543527 -22.845812596565022, -43.37488825294549 -22.845878718171463, -43.37507864165597 -22.845926408060805, -43.37527278801934 -22.845955206953345, -43.3754688223 -22.8459648375, -43.37566485658066 -22.845955206953345, -43.37585900294403 -22.845926408060805, -43.37604939165451 -22.845878718171463, -43.376234189164734 -22.845812596565022, -43.376411615773655 -22.845728680028696, -43.37657996276604 -22.845627776724605, -43.376737608868325 -22.845510858406726, -43.37688303586237 -22.845379051062373, -43.37701484320672 -22.845233624068328, -43.3771317615246 -22.84507597796604, -43.377232664828696 -22.84490763097365, -43.37731658136502 -22.84473020436473, -43.37738270297147 -22.844545406854508, -43.37743039286081 -22.844355018144032, -43.377459191753346 -22.84416087178066, -43.3774688223 -22.8439648375, -43.377459191753346 -22.84376880321934, -43.37743039286081 -22.843574656855967, -43.37738270297147 -22.843384268145492, -43.37731658136502 -22.84319947063527, -43.377232664828696 -22.84302204402635, -43.3771317615246 -22.84285369703396, -43.37701484320672 -22.84269605093167, -43.37688303586237 -22.842550623937626, -43.376737608868325 -22.842418816593273, -43.37657996276604 -22.842301898275394, -43.376411615773655 -22.842200994971304, -43.376234189164734 -22.842117078434978, -43.37604939165451 -22.842050956828537, -43.37585900294403 -22.842003266939194, -43.37566485658066 -22.841974468046654, -43.3754688223 -22.8419648375, -43.37527278801934 -22.841974468046654, -43.37507864165597 -22.842003266939194, -43.37488825294549 -22.842050956828537, -43.37470345543527 -22.842117078434978, -43.374526028826345 -22.842200994971304, -43.37435768183396 -22.842301898275394, -43.374200035731675 -22.842418816593273, -43.37405460873763 -22.842550623937626, -43.37392280139328 -22.84269605093167, -43.3738058830754 -22.84285369703396, -43.373704979771304 -22.84302204402635, -43.37362106323498 -22.84319947063527, -43.373554941628534 -22.843384268145492, -43.37350725173919 -22.843574656855967, -43.373478452846655 -22.84376880321934, -43.3734688223 -22.8439648375))" +000732,Penha,Zona Norte,88a8a06f5dfffff,,,,,,,, +000737,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +000738,Vila Kosmos,Zona Norte,88a8a06193fffff,,,,,,,, +000746,Água Santa,Zona Norte,88a8a06039fffff,,,,,,,, +000747,Engenho de Dentro,Zona Norte,88a8a06037fffff,,,,,,,, +000756,Bonsucesso,Zona Norte,88a8a061e7fffff,,,,,,,, +000757,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +000758,Tijuca,Grande Tijuca,88a8a0610dfffff,,,,,,,, +000759,Maracanã,Grande Tijuca,88a8a06101fffff,,,,,,,, +000760,São Francisco Xavier,Zona Norte,88a8a06103fffff,,,,,,,, +000765,Benfica,Centro,88a8a06131fffff,,,,,,,, +000766,Vasco da Gama,Centro,88a8a06135fffff,TRUE,315,-22.88636999,-43.22588612,PO,G,Canal do Cunha,"POLYGON ((-43.223886117199996 -22.886369987, -43.22389574774665 -22.886566021280657, -43.22392454663919 -22.88676016764403, -43.22397223652853 -22.886950556354506, -43.224038358134976 -22.88713535386473, -43.2241222746713 -22.88731278047365, -43.2242231779754 -22.88748112746604, -43.224340096293275 -22.887638773568327, -43.22447190363763 -22.887784200562372, -43.22461733063167 -22.887916007906725, -43.22477497673396 -22.888032926224604, -43.22494332372634 -22.888133829528694, -43.225120750335265 -22.88821774606502, -43.22530554784549 -22.88828386767146, -43.225495936555966 -22.888331557560804, -43.225690082919336 -22.888360356453344, -43.2258861172 -22.888369986999997, -43.22608215148066 -22.888360356453344, -43.22627629784403 -22.888331557560804, -43.22646668655451 -22.88828386767146, -43.22665148406473 -22.88821774606502, -43.22682891067365 -22.888133829528694, -43.226997257666035 -22.888032926224604, -43.22715490376832 -22.887916007906725, -43.22730033076237 -22.887784200562372, -43.22743213810672 -22.887638773568327, -43.2275490564246 -22.88748112746604, -43.227649959728694 -22.88731278047365, -43.22773387626502 -22.88713535386473, -43.227799997871465 -22.886950556354506, -43.22784768776081 -22.88676016764403, -43.227876486653344 -22.886566021280657, -43.2278861172 -22.886369987, -43.227876486653344 -22.88617395271934, -43.22784768776081 -22.885979806355966, -43.227799997871465 -22.88578941764549, -43.22773387626502 -22.88560462013527, -43.227649959728694 -22.885427193526347, -43.2275490564246 -22.885258846533958, -43.22743213810672 -22.88510120043167, -43.22730033076237 -22.884955773437625, -43.22715490376832 -22.884823966093272, -43.226997257666035 -22.884707047775393, -43.22682891067365 -22.884606144471302, -43.22665148406473 -22.884522227934976, -43.22646668655451 -22.884456106328535, -43.22627629784403 -22.884408416439193, -43.22608215148066 -22.884379617546653, -43.2258861172 -22.884369987, -43.225690082919336 -22.884379617546653, -43.225495936555966 -22.884408416439193, -43.22530554784549 -22.884456106328535, -43.225120750335265 -22.884522227934976, -43.22494332372634 -22.884606144471302, -43.22477497673396 -22.884707047775393, -43.22461733063167 -22.884823966093272, -43.22447190363763 -22.884955773437625, -43.224340096293275 -22.88510120043167, -43.2242231779754 -22.885258846533958, -43.2241222746713 -22.885427193526347, -43.224038358134976 -22.88560462013527, -43.22397223652853 -22.88578941764549, -43.22392454663919 -22.885979806355966, -43.22389574774665 -22.88617395271934, -43.223886117199996 -22.886369987))" +000767,Caju,Centro,88a8a06ac9fffff,TRUE,315,-22.88636999,-43.22588612,PO,G,Canal do Cunha,"POLYGON ((-43.223886117199996 -22.886369987, -43.22389574774665 -22.886566021280657, -43.22392454663919 -22.88676016764403, -43.22397223652853 -22.886950556354506, -43.224038358134976 -22.88713535386473, -43.2241222746713 -22.88731278047365, -43.2242231779754 -22.88748112746604, -43.224340096293275 -22.887638773568327, -43.22447190363763 -22.887784200562372, -43.22461733063167 -22.887916007906725, -43.22477497673396 -22.888032926224604, -43.22494332372634 -22.888133829528694, -43.225120750335265 -22.88821774606502, -43.22530554784549 -22.88828386767146, -43.225495936555966 -22.888331557560804, -43.225690082919336 -22.888360356453344, -43.2258861172 -22.888369986999997, -43.22608215148066 -22.888360356453344, -43.22627629784403 -22.888331557560804, -43.22646668655451 -22.88828386767146, -43.22665148406473 -22.88821774606502, -43.22682891067365 -22.888133829528694, -43.226997257666035 -22.888032926224604, -43.22715490376832 -22.887916007906725, -43.22730033076237 -22.887784200562372, -43.22743213810672 -22.887638773568327, -43.2275490564246 -22.88748112746604, -43.227649959728694 -22.88731278047365, -43.22773387626502 -22.88713535386473, -43.227799997871465 -22.886950556354506, -43.22784768776081 -22.88676016764403, -43.227876486653344 -22.886566021280657, -43.2278861172 -22.886369987, -43.227876486653344 -22.88617395271934, -43.22784768776081 -22.885979806355966, -43.227799997871465 -22.88578941764549, -43.22773387626502 -22.88560462013527, -43.227649959728694 -22.885427193526347, -43.2275490564246 -22.885258846533958, -43.22743213810672 -22.88510120043167, -43.22730033076237 -22.884955773437625, -43.22715490376832 -22.884823966093272, -43.226997257666035 -22.884707047775393, -43.22682891067365 -22.884606144471302, -43.22665148406473 -22.884522227934976, -43.22646668655451 -22.884456106328535, -43.22627629784403 -22.884408416439193, -43.22608215148066 -22.884379617546653, -43.2258861172 -22.884369987, -43.225690082919336 -22.884379617546653, -43.225495936555966 -22.884408416439193, -43.22530554784549 -22.884456106328535, -43.225120750335265 -22.884522227934976, -43.22494332372634 -22.884606144471302, -43.22477497673396 -22.884707047775393, -43.22461733063167 -22.884823966093272, -43.22447190363763 -22.884955773437625, -43.224340096293275 -22.88510120043167, -43.2242231779754 -22.885258846533958, -43.2241222746713 -22.885427193526347, -43.224038358134976 -22.88560462013527, -43.22397223652853 -22.88578941764549, -43.22392454663919 -22.885979806355966, -43.22389574774665 -22.88617395271934, -43.223886117199996 -22.886369987))" +000768,São Cristóvão,Centro,88a8a06135fffff,TRUE,315,-22.88636999,-43.22588612,PO,G,Canal do Cunha,"POLYGON ((-43.223886117199996 -22.886369987, -43.22389574774665 -22.886566021280657, -43.22392454663919 -22.88676016764403, -43.22397223652853 -22.886950556354506, -43.224038358134976 -22.88713535386473, -43.2241222746713 -22.88731278047365, -43.2242231779754 -22.88748112746604, -43.224340096293275 -22.887638773568327, -43.22447190363763 -22.887784200562372, -43.22461733063167 -22.887916007906725, -43.22477497673396 -22.888032926224604, -43.22494332372634 -22.888133829528694, -43.225120750335265 -22.88821774606502, -43.22530554784549 -22.88828386767146, -43.225495936555966 -22.888331557560804, -43.225690082919336 -22.888360356453344, -43.2258861172 -22.888369986999997, -43.22608215148066 -22.888360356453344, -43.22627629784403 -22.888331557560804, -43.22646668655451 -22.88828386767146, -43.22665148406473 -22.88821774606502, -43.22682891067365 -22.888133829528694, -43.226997257666035 -22.888032926224604, -43.22715490376832 -22.887916007906725, -43.22730033076237 -22.887784200562372, -43.22743213810672 -22.887638773568327, -43.2275490564246 -22.88748112746604, -43.227649959728694 -22.88731278047365, -43.22773387626502 -22.88713535386473, -43.227799997871465 -22.886950556354506, -43.22784768776081 -22.88676016764403, -43.227876486653344 -22.886566021280657, -43.2278861172 -22.886369987, -43.227876486653344 -22.88617395271934, -43.22784768776081 -22.885979806355966, -43.227799997871465 -22.88578941764549, -43.22773387626502 -22.88560462013527, -43.227649959728694 -22.885427193526347, -43.2275490564246 -22.885258846533958, -43.22743213810672 -22.88510120043167, -43.22730033076237 -22.884955773437625, -43.22715490376832 -22.884823966093272, -43.226997257666035 -22.884707047775393, -43.22682891067365 -22.884606144471302, -43.22665148406473 -22.884522227934976, -43.22646668655451 -22.884456106328535, -43.22627629784403 -22.884408416439193, -43.22608215148066 -22.884379617546653, -43.2258861172 -22.884369987, -43.225690082919336 -22.884379617546653, -43.225495936555966 -22.884408416439193, -43.22530554784549 -22.884456106328535, -43.225120750335265 -22.884522227934976, -43.22494332372634 -22.884606144471302, -43.22477497673396 -22.884707047775393, -43.22461733063167 -22.884823966093272, -43.22447190363763 -22.884955773437625, -43.224340096293275 -22.88510120043167, -43.2242231779754 -22.885258846533958, -43.2241222746713 -22.885427193526347, -43.224038358134976 -22.88560462013527, -43.22397223652853 -22.88578941764549, -43.22392454663919 -22.885979806355966, -43.22389574774665 -22.88617395271934, -43.223886117199996 -22.886369987))" +000771,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +000773,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +000774,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +000775,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +000789,Estácio,Centro,88a8a06a5bfffff,,,,,,,, +000790,Estácio,Centro,88a8a06a5bfffff,,,,,,,, +000793,Cidade Nova,Centro,88a8a06a51fffff,,,,,,,, +000794,Cidade Nova,Centro,88a8a06a51fffff,,,,,,,, +000795,Centro,Centro,88a8a06a51fffff,,,,,,,, +000801,Lapa,Centro,88a8a06a55fffff,TRUE,352,-22.9123464,-43.18402901,PO,G,Centro,"POLYGON ((-43.1820290111 -22.9123464032, -43.182038641646656 -22.91254243748066, -43.18206744053919 -22.912736583844033, -43.182115130428535 -22.91292697255451, -43.18218125203498 -22.91311177006473, -43.182265168571305 -22.913289196673652, -43.1823660718754 -22.91345754366604, -43.18248299019328 -22.91361518976833, -43.18261479753763 -22.913760616762374, -43.18276022453168 -22.913892424106727, -43.182917870633965 -22.914009342424606, -43.18308621762635 -22.914110245728697, -43.18326364423527 -22.914194162265023, -43.18344844174549 -22.914260283871464, -43.18363883045597 -22.914307973760806, -43.18383297681934 -22.914336772653346, -43.1840290111 -22.9143464032, -43.184225045380664 -22.914336772653346, -43.184419191744034 -22.914307973760806, -43.18460958045451 -22.914260283871464, -43.184794377964735 -22.914194162265023, -43.18497180457366 -22.914110245728697, -43.18514015156604 -22.914009342424606, -43.185297797668326 -22.913892424106727, -43.18544322466237 -22.913760616762374, -43.185575032006724 -22.91361518976833, -43.1856919503246 -22.91345754366604, -43.1857928536287 -22.913289196673652, -43.185876770165024 -22.91311177006473, -43.18594289177147 -22.91292697255451, -43.18599058166081 -22.912736583844033, -43.18601938055335 -22.91254243748066, -43.186029011100004 -22.9123464032, -43.18601938055335 -22.91215036891934, -43.18599058166081 -22.91195622255597, -43.18594289177147 -22.911765833845493, -43.185876770165024 -22.91158103633527, -43.1857928536287 -22.91140360972635, -43.1856919503246 -22.91123526273396, -43.185575032006724 -22.911077616631673, -43.18544322466237 -22.910932189637627, -43.185297797668326 -22.910800382293274, -43.18514015156604 -22.910683463975396, -43.18497180457366 -22.910582560671305, -43.184794377964735 -22.91049864413498, -43.18460958045451 -22.910432522528538, -43.184419191744034 -22.910384832639195, -43.184225045380664 -22.910356033746655, -43.1840290111 -22.910346403200002, -43.18383297681934 -22.910356033746655, -43.18363883045597 -22.910384832639195, -43.18344844174549 -22.910432522528538, -43.18326364423527 -22.91049864413498, -43.18308621762635 -22.910582560671305, -43.182917870633965 -22.910683463975396, -43.18276022453168 -22.910800382293274, -43.18261479753763 -22.910932189637627, -43.18248299019328 -22.911077616631673, -43.1823660718754 -22.91123526273396, -43.182265168571305 -22.91140360972635, -43.18218125203498 -22.91158103633527, -43.182115130428535 -22.911765833845493, -43.18206744053919 -22.91195622255597, -43.182038641646656 -22.91215036891934, -43.1820290111 -22.9123464032))" +000833,Flamengo,Zona Sul,88a8a078a3fffff,,,,,,,, +000834,Botafogo,Zona Sul,88a8a078a3fffff,,,,,,,, +000835,Botafogo,Zona Sul,88a8a078abfffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +000838,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +000839,Jardim Botânico,Zona Sul,88a8a078d1fffff,,,,,,,, +000840,Lagoa,Zona Sul,88a8a078d5fffff,,,,,,,, +000842,Lagoa,Zona Sul,88a8a078d1fffff,TRUE,89,-22.96450343,-43.21527401,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2132740143 -22.9645034326, -43.213283644846655 -22.96469946688066, -43.21331244373919 -22.964893613244033, -43.213360133628534 -22.96508400195451, -43.21342625523498 -22.96526879946473, -43.213510171771304 -22.965446226073652, -43.2136110750754 -22.96561457306604, -43.21372799339328 -22.96577221916833, -43.21385980073763 -22.965917646162374, -43.214005227731676 -22.966049453506727, -43.21416287383396 -22.966166371824606, -43.214331220826345 -22.966267275128697, -43.21450864743527 -22.966351191665023, -43.21469344494549 -22.966417313271464, -43.21488383365597 -22.966465003160806, -43.21507798001934 -22.966493802053346, -43.2152740143 -22.9665034326, -43.21547004858066 -22.966493802053346, -43.21566419494403 -22.966465003160806, -43.21585458365451 -22.966417313271464, -43.216039381164734 -22.966351191665023, -43.216216807773655 -22.966267275128697, -43.21638515476604 -22.966166371824606, -43.216542800868325 -22.966049453506727, -43.21668822786237 -22.965917646162374, -43.21682003520672 -22.96577221916833, -43.2169369535246 -22.96561457306604, -43.217037856828696 -22.965446226073652, -43.21712177336502 -22.96526879946473, -43.21718789497147 -22.96508400195451, -43.21723558486081 -22.964893613244033, -43.217264383753346 -22.96469946688066, -43.2172740143 -22.9645034326, -43.217264383753346 -22.96430739831934, -43.21723558486081 -22.96411325195597, -43.21718789497147 -22.963922863245493, -43.21712177336502 -22.96373806573527, -43.217037856828696 -22.96356063912635, -43.2169369535246 -22.96339229213396, -43.21682003520672 -22.963234646031673, -43.21668822786237 -22.963089219037627, -43.216542800868325 -22.962957411693274, -43.21638515476604 -22.962840493375396, -43.216216807773655 -22.962739590071305, -43.216039381164734 -22.96265567353498, -43.21585458365451 -22.962589551928538, -43.21566419494403 -22.962541862039195, -43.21547004858066 -22.962513063146655, -43.2152740143 -22.962503432600002, -43.21507798001934 -22.962513063146655, -43.21488383365597 -22.962541862039195, -43.21469344494549 -22.962589551928538, -43.21450864743527 -22.96265567353498, -43.214331220826345 -22.962739590071305, -43.21416287383396 -22.962840493375396, -43.214005227731676 -22.962957411693274, -43.21385980073763 -22.963089219037627, -43.21372799339328 -22.963234646031673, -43.2136110750754 -22.96339229213396, -43.213510171771304 -22.96356063912635, -43.21342625523498 -22.96373806573527, -43.213360133628534 -22.963922863245493, -43.21331244373919 -22.96411325195597, -43.213283644846655 -22.96430739831934, -43.2132740143 -22.9645034326))" +000845,Gávea,Zona Sul,88a8a078d9fffff,TRUE,90,-22.97347927,-43.22592556,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2239255605 -22.9734792708, -43.22393519104666 -22.973675305080658, -43.22396398993919 -22.97386945144403, -43.224011679828536 -22.974059840154506, -43.22407780143498 -22.97424463766473, -43.224161717971306 -22.97442206427365, -43.2242626212754 -22.97459041126604, -43.22437953959328 -22.974748057368327, -43.22451134693763 -22.974893484362372, -43.22465677393168 -22.975025291706725, -43.224814420033965 -22.975142210024604, -43.22498276702635 -22.975243113328695, -43.22516019363527 -22.97532702986502, -43.22534499114549 -22.97539315147146, -43.22553537985597 -22.975440841360804, -43.22572952621934 -22.975469640253344, -43.2259255605 -22.975479270799998, -43.226121594780665 -22.975469640253344, -43.226315741144035 -22.975440841360804, -43.22650612985451 -22.97539315147146, -43.226690927364736 -22.97532702986502, -43.22686835397366 -22.975243113328695, -43.22703670096604 -22.975142210024604, -43.22719434706833 -22.975025291706725, -43.22733977406237 -22.974893484362372, -43.227471581406725 -22.974748057368327, -43.227588499724604 -22.97459041126604, -43.2276894030287 -22.97442206427365, -43.227773319565024 -22.97424463766473, -43.22783944117147 -22.974059840154506, -43.22788713106081 -22.97386945144403, -43.22791592995335 -22.973675305080658, -43.227925560500005 -22.9734792708, -43.22791592995335 -22.97328323651934, -43.22788713106081 -22.973089090155966, -43.22783944117147 -22.97289870144549, -43.227773319565024 -22.97271390393527, -43.2276894030287 -22.972536477326347, -43.227588499724604 -22.972368130333958, -43.227471581406725 -22.97221048423167, -43.22733977406237 -22.972065057237625, -43.22719434706833 -22.971933249893272, -43.22703670096604 -22.971816331575393, -43.22686835397366 -22.971715428271303, -43.226690927364736 -22.971631511734977, -43.22650612985451 -22.971565390128536, -43.226315741144035 -22.971517700239193, -43.226121594780665 -22.971488901346653, -43.2259255605 -22.9714792708, -43.22572952621934 -22.971488901346653, -43.22553537985597 -22.971517700239193, -43.22534499114549 -22.971565390128536, -43.22516019363527 -22.971631511734977, -43.22498276702635 -22.971715428271303, -43.224814420033965 -22.971816331575393, -43.22465677393168 -22.971933249893272, -43.22451134693763 -22.972065057237625, -43.22437953959328 -22.97221048423167, -43.2242626212754 -22.972368130333958, -43.224161717971306 -22.972536477326347, -43.22407780143498 -22.97271390393527, -43.224011679828536 -22.97289870144549, -43.22396398993919 -22.973089090155966, -43.22393519104666 -22.97328323651934, -43.2239255605 -22.9734792708))" +000846,Lagoa,Zona Sul,88a8a078d1fffff,,,,,,,, +000869,Barra da Tijuca,Barra da Tijuca,88a8a0719dfffff,TRUE,321,-23.01267129,-43.29684764,PO,J,Lagoa da Tijuca,"POLYGON ((-43.2948476428 -23.0126712877, -43.29485727334666 -23.01286732198066, -43.294886072239194 -23.013061468344034, -43.29493376212854 -23.01325185705451, -43.29499988373498 -23.01343665456473, -43.29508380027131 -23.013614081173653, -43.2951847035754 -23.013782428166042, -43.29530162189328 -23.01394007426833, -43.29543342923763 -23.014085501262375, -43.29557885623168 -23.014217308606728, -43.295736502333966 -23.014334226924607, -43.29590484932635 -23.014435130228698, -43.29608227593527 -23.014519046765024, -43.29626707344549 -23.014585168371465, -43.29645746215597 -23.014632858260807, -43.29665160851934 -23.014661657153347, -43.2968476428 -23.0146712877, -43.297043677080666 -23.014661657153347, -43.297237823444036 -23.014632858260807, -43.297428212154514 -23.014585168371465, -43.29761300966474 -23.014519046765024, -43.29779043627366 -23.014435130228698, -43.29795878326604 -23.014334226924607, -43.29811642936833 -23.014217308606728, -43.29826185636237 -23.014085501262375, -43.298393663706726 -23.01394007426833, -43.298510582024605 -23.013782428166042, -43.2986114853287 -23.013614081173653, -43.298695401865025 -23.01343665456473, -43.29876152347147 -23.01325185705451, -43.29880921336081 -23.013061468344034, -43.29883801225335 -23.01286732198066, -43.298847642800006 -23.0126712877, -43.29883801225335 -23.012475253419343, -43.29880921336081 -23.01228110705597, -43.29876152347147 -23.012090718345494, -43.298695401865025 -23.01190592083527, -43.2986114853287 -23.01172849422635, -43.298510582024605 -23.01156014723396, -43.298393663706726 -23.011402501131673, -43.29826185636237 -23.011257074137628, -43.29811642936833 -23.011125266793275, -43.29795878326604 -23.011008348475396, -43.29779043627366 -23.010907445171306, -43.29761300966474 -23.01082352863498, -43.297428212154514 -23.01075740702854, -43.297237823444036 -23.010709717139196, -43.297043677080666 -23.010680918246656, -43.2968476428 -23.010671287700003, -43.29665160851934 -23.010680918246656, -43.29645746215597 -23.010709717139196, -43.29626707344549 -23.01075740702854, -43.29608227593527 -23.01082352863498, -43.29590484932635 -23.010907445171306, -43.295736502333966 -23.011008348475396, -43.29557885623168 -23.011125266793275, -43.29543342923763 -23.011257074137628, -43.29530162189328 -23.011402501131673, -43.2951847035754 -23.01156014723396, -43.29508380027131 -23.01172849422635, -43.29499988373498 -23.01190592083527, -43.29493376212854 -23.012090718345494, -43.294886072239194 -23.01228110705597, -43.29485727334666 -23.012475253419343, -43.2948476428 -23.0126712877))" +000870,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +000872,Barra da Tijuca,Barra da Tijuca,88a8a07199fffff,,,,,,,, +000873,Barra da Tijuca,Barra da Tijuca,88a8a07199fffff,,,,,,,, +000891,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07623fffff,,,,,,,, +000894,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076ebfffff,,,,,,,, +000895,Vargem Grande,Barra da Tijuca,88a8a076c7fffff,,,,,,,, +000901,Jacarepaguá,Jacarepaguá,88a8a07511fffff,TRUE,113,-22.97164208,-43.41338413,PC,J,Lagoa de Jacarepagua,"POLYGON ((-43.4113841343 -22.9716420847, -43.41139376484666 -22.97183811898066, -43.411422563739194 -22.972032265344033, -43.411470253628536 -22.97222265405451, -43.41153637523498 -22.97240745156473, -43.41162029177131 -22.972584878173652, -43.4117211950754 -22.97275322516604, -43.41183811339328 -22.97291087126833, -43.41196992073763 -22.973056298262374, -43.41211534773168 -22.973188105606727, -43.412272993833966 -22.973305023924606, -43.41244134082635 -22.973405927228697, -43.41261876743527 -22.973489843765023, -43.41280356494549 -22.973555965371464, -43.41299395365597 -22.973603655260806, -43.41318810001934 -22.973632454153346, -43.4133841343 -22.9736420847, -43.413580168580665 -22.973632454153346, -43.413774314944035 -22.973603655260806, -43.413964703654514 -22.973555965371464, -43.41414950116474 -22.973489843765023, -43.41432692777366 -22.973405927228697, -43.41449527476604 -22.973305023924606, -43.41465292086833 -22.973188105606727, -43.41479834786237 -22.973056298262374, -43.414930155206726 -22.97291087126833, -43.415047073524605 -22.97275322516604, -43.4151479768287 -22.972584878173652, -43.415231893365025 -22.97240745156473, -43.41529801497147 -22.97222265405451, -43.41534570486081 -22.972032265344033, -43.41537450375335 -22.97183811898066, -43.415384134300005 -22.9716420847, -43.41537450375335 -22.971446050419342, -43.41534570486081 -22.97125190405597, -43.41529801497147 -22.971061515345493, -43.415231893365025 -22.97087671783527, -43.4151479768287 -22.97069929122635, -43.415047073524605 -22.97053094423396, -43.414930155206726 -22.970373298131673, -43.41479834786237 -22.970227871137627, -43.41465292086833 -22.970096063793275, -43.41449527476604 -22.969979145475396, -43.41432692777366 -22.969878242171305, -43.41414950116474 -22.96979432563498, -43.413964703654514 -22.969728204028538, -43.413774314944035 -22.969680514139196, -43.413580168580665 -22.969651715246655, -43.4133841343 -22.969642084700002, -43.41318810001934 -22.969651715246655, -43.41299395365597 -22.969680514139196, -43.41280356494549 -22.969728204028538, -43.41261876743527 -22.96979432563498, -43.41244134082635 -22.969878242171305, -43.412272993833966 -22.969979145475396, -43.41211534773168 -22.970096063793275, -43.41196992073763 -22.970227871137627, -43.41183811339328 -22.970373298131673, -43.4117211950754 -22.97053094423396, -43.41162029177131 -22.97069929122635, -43.41153637523498 -22.97087671783527, -43.411470253628536 -22.971061515345493, -43.411422563739194 -22.97125190405597, -43.41139376484666 -22.971446050419342, -43.4113841343 -22.9716420847))" +000902,Jacarepaguá,Jacarepaguá,88a8a07511fffff,,,,,,,, +001000,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001002,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +001004,São Conrado,Zona Sul,88a8a071a7fffff,,,,,,,, +001006,Ipanema,Zona Sul,88a8a078c9fffff,,,,,,,, +001008,Centro,Centro,88a8a06a09fffff,,,,,,,, +001011,Engenho de Dentro,Zona Norte,88a8a061cbfffff,,,,,,,, +001012,Engenho de Dentro,Zona Norte,88a8a061cbfffff,TRUE,9,-22.89024466,-43.29378408,PM,G,Canal do Cunha,"POLYGON ((-43.2917840828 -22.8902446621, -43.29179371334666 -22.890440696380658, -43.29182251223919 -22.89063484274403, -43.291870202128536 -22.890825231454507, -43.29193632373498 -22.89101002896473, -43.292020240271306 -22.89118745557365, -43.2921211435754 -22.89135580256604, -43.29223806189328 -22.891513448668327, -43.29236986923763 -22.891658875662372, -43.29251529623168 -22.891790683006725, -43.292672942333965 -22.891907601324604, -43.29284128932635 -22.892008504628695, -43.29301871593527 -22.89209242116502, -43.29320351344549 -22.892158542771462, -43.29339390215597 -22.892206232660804, -43.29358804851934 -22.892235031553344, -43.2937840828 -22.892244662099998, -43.293980117080665 -22.892235031553344, -43.294174263444035 -22.892206232660804, -43.29436465215451 -22.892158542771462, -43.294549449664736 -22.89209242116502, -43.29472687627366 -22.892008504628695, -43.29489522326604 -22.891907601324604, -43.29505286936833 -22.891790683006725, -43.29519829636237 -22.891658875662372, -43.295330103706725 -22.891513448668327, -43.295447022024604 -22.89135580256604, -43.2955479253287 -22.89118745557365, -43.295631841865024 -22.89101002896473, -43.29569796347147 -22.890825231454507, -43.29574565336081 -22.89063484274403, -43.29577445225335 -22.890440696380658, -43.295784082800004 -22.8902446621, -43.29577445225335 -22.89004862781934, -43.29574565336081 -22.889854481455966, -43.29569796347147 -22.88966409274549, -43.295631841865024 -22.88947929523527, -43.2955479253287 -22.889301868626347, -43.295447022024604 -22.88913352163396, -43.295330103706725 -22.88897587553167, -43.29519829636237 -22.888830448537625, -43.29505286936833 -22.888698641193272, -43.29489522326604 -22.888581722875394, -43.29472687627366 -22.888480819571303, -43.294549449664736 -22.888396903034977, -43.29436465215451 -22.888330781428536, -43.294174263444035 -22.888283091539193, -43.293980117080665 -22.888254292646653, -43.2937840828 -22.8882446621, -43.29358804851934 -22.888254292646653, -43.29339390215597 -22.888283091539193, -43.29320351344549 -22.888330781428536, -43.29301871593527 -22.888396903034977, -43.29284128932635 -22.888480819571303, -43.292672942333965 -22.888581722875394, -43.29251529623168 -22.888698641193272, -43.29236986923763 -22.888830448537625, -43.29223806189328 -22.88897587553167, -43.2921211435754 -22.88913352163396, -43.292020240271306 -22.889301868626347, -43.29193632373498 -22.88947929523527, -43.291870202128536 -22.88966409274549, -43.29182251223919 -22.889854481455966, -43.29179371334666 -22.89004862781934, -43.2917840828 -22.8902446621))" +001013,Engenho de Dentro,Zona Norte,88a8a061cbfffff,,,,,,,, +001014,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,395,-22.89582696,-43.29310346,PO,G,,"POLYGON ((-43.2911034599885 -22.8958269649174, -43.291113090535156 -22.89602299919806, -43.29114188942769 -22.896217145561433, -43.291189579317034 -22.89640753427191, -43.29125570092348 -22.89659233178213, -43.291339617459805 -22.896769758391052, -43.2914405207639 -22.89693810538344, -43.29155743908178 -22.89709575148573, -43.29168924642613 -22.897241178479774, -43.291834673420176 -22.897372985824127, -43.291992319522464 -22.897489904142006, -43.292160666514846 -22.897590807446097, -43.29233809312377 -22.897674723982423, -43.29252289063399 -22.897740845588864, -43.29271327934447 -22.897788535478206, -43.29290742570784 -22.897817334370746, -43.2931034599885 -22.8978269649174, -43.293299494269164 -22.897817334370746, -43.29349364063253 -22.897788535478206, -43.29368402934301 -22.897740845588864, -43.293868826853235 -22.897674723982423, -43.294046253462156 -22.897590807446097, -43.29421460045454 -22.897489904142006, -43.294372246556826 -22.897372985824127, -43.29451767355087 -22.897241178479774, -43.294649480895224 -22.89709575148573, -43.2947663992131 -22.89693810538344, -43.2948673025172 -22.896769758391052, -43.29495121905352 -22.89659233178213, -43.29501734065997 -22.89640753427191, -43.29506503054931 -22.896217145561433, -43.295093829441846 -22.89602299919806, -43.2951034599885 -22.8958269649174, -43.295093829441846 -22.89563093063674, -43.29506503054931 -22.895436784273368, -43.29501734065997 -22.895246395562893, -43.29495121905352 -22.89506159805267, -43.2948673025172 -22.89488417144375, -43.2947663992131 -22.89471582445136, -43.294649480895224 -22.894558178349072, -43.29451767355087 -22.894412751355027, -43.294372246556826 -22.894280944010674, -43.29421460045454 -22.894164025692795, -43.294046253462156 -22.894063122388705, -43.293868826853235 -22.89397920585238, -43.29368402934301 -22.893913084245938, -43.29349364063253 -22.893865394356595, -43.293299494269164 -22.893836595464055, -43.2931034599885 -22.8938269649174, -43.29290742570784 -22.893836595464055, -43.29271327934447 -22.893865394356595, -43.29252289063399 -22.893913084245938, -43.29233809312377 -22.89397920585238, -43.292160666514846 -22.894063122388705, -43.291992319522464 -22.894164025692795, -43.291834673420176 -22.894280944010674, -43.29168924642613 -22.894412751355027, -43.29155743908178 -22.894558178349072, -43.2914405207639 -22.89471582445136, -43.291339617459805 -22.89488417144375, -43.29125570092348 -22.89506159805267, -43.291189579317034 -22.895246395562893, -43.29114188942769 -22.895436784273368, -43.291113090535156 -22.89563093063674, -43.2911034599885 -22.8958269649174))" +001015,Todos os Santos,Zona Norte,88a8a061c9fffff,TRUE,41,-22.89807272,-43.28819226,PC,G,Canal do Cunha,"POLYGON ((-43.286192258 -22.898072715, -43.28620188854666 -22.89826874928066, -43.28623068743919 -22.898462895644034, -43.286278377328536 -22.89865328435451, -43.28634449893498 -22.89883808186473, -43.286428415471306 -22.899015508473653, -43.2865293187754 -22.899183855466042, -43.28664623709328 -22.89934150156833, -43.28677804443763 -22.899486928562375, -43.28692347143168 -22.899618735906728, -43.287081117533965 -22.899735654224607, -43.28724946452635 -22.899836557528698, -43.28742689113527 -22.899920474065024, -43.28761168864549 -22.899986595671464, -43.28780207735597 -22.900034285560807, -43.28799622371934 -22.900063084453347, -43.288192258 -22.900072715, -43.288388292280665 -22.900063084453347, -43.288582438644035 -22.900034285560807, -43.288772827354514 -22.899986595671464, -43.288957624864736 -22.899920474065024, -43.28913505147366 -22.899836557528698, -43.28930339846604 -22.899735654224607, -43.28946104456833 -22.899618735906728, -43.28960647156237 -22.899486928562375, -43.289738278906725 -22.89934150156833, -43.289855197224604 -22.899183855466042, -43.2899561005287 -22.899015508473653, -43.290040017065024 -22.89883808186473, -43.29010613867147 -22.89865328435451, -43.29015382856081 -22.898462895644034, -43.29018262745335 -22.89826874928066, -43.290192258000005 -22.898072715, -43.29018262745335 -22.897876680719342, -43.29015382856081 -22.89768253435597, -43.29010613867147 -22.897492145645494, -43.290040017065024 -22.89730734813527, -43.2899561005287 -22.89712992152635, -43.289855197224604 -22.89696157453396, -43.289738278906725 -22.896803928431673, -43.28960647156237 -22.896658501437628, -43.28946104456833 -22.896526694093275, -43.28930339846604 -22.896409775775396, -43.28913505147366 -22.896308872471305, -43.288957624864736 -22.89622495593498, -43.288772827354514 -22.89615883432854, -43.288582438644035 -22.896111144439196, -43.288388292280665 -22.896082345546656, -43.288192258 -22.896072715000003, -43.28799622371934 -22.896082345546656, -43.28780207735597 -22.896111144439196, -43.28761168864549 -22.89615883432854, -43.28742689113527 -22.89622495593498, -43.28724946452635 -22.896308872471305, -43.287081117533965 -22.896409775775396, -43.28692347143168 -22.896526694093275, -43.28677804443763 -22.896658501437628, -43.28664623709328 -22.896803928431673, -43.2865293187754 -22.89696157453396, -43.286428415471306 -22.89712992152635, -43.28634449893498 -22.89730734813527, -43.286278377328536 -22.897492145645494, -43.28623068743919 -22.89768253435597, -43.28620188854666 -22.897876680719342, -43.286192258 -22.898072715))" +001017,Barra da Tijuca,Barra da Tijuca,88a8a07507fffff,,,,,,,, +001018,Barra da Tijuca,Barra da Tijuca,88a8a07507fffff,,,,,,,, +001019,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,TRUE,302,-22.9968841,-43.36554928,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3635492839 -22.9968840955, -43.363558914446656 -22.99708012978066, -43.36358771333919 -22.997274276144033, -43.363635403228535 -22.99746466485451, -43.36370152483498 -22.99764946236473, -43.363785441371306 -22.997826888973652, -43.3638863446754 -22.99799523596604, -43.36400326299328 -22.99815288206833, -43.36413507033763 -22.998298309062374, -43.36428049733168 -22.998430116406727, -43.364438143433965 -22.998547034724606, -43.36460649042635 -22.998647938028697, -43.36478391703527 -22.998731854565023, -43.36496871454549 -22.998797976171463, -43.36515910325597 -22.998845666060806, -43.36535324961934 -22.998874464953346, -43.3655492839 -22.9988840955, -43.365745318180664 -22.998874464953346, -43.365939464544034 -22.998845666060806, -43.36612985325451 -22.998797976171463, -43.366314650764735 -22.998731854565023, -43.36649207737366 -22.998647938028697, -43.36666042436604 -22.998547034724606, -43.36681807046833 -22.998430116406727, -43.36696349746237 -22.998298309062374, -43.367095304806725 -22.99815288206833, -43.367212223124604 -22.99799523596604, -43.3673131264287 -22.997826888973652, -43.367397042965024 -22.99764946236473, -43.36746316457147 -22.99746466485451, -43.36751085446081 -22.997274276144033, -43.36753965335335 -22.99708012978066, -43.367549283900004 -22.9968840955, -43.36753965335335 -22.99668806121934, -43.36751085446081 -22.996493914855968, -43.36746316457147 -22.996303526145493, -43.367397042965024 -22.99611872863527, -43.3673131264287 -22.99594130202635, -43.367212223124604 -22.99577295503396, -43.367095304806725 -22.995615308931672, -43.36696349746237 -22.995469881937627, -43.36681807046833 -22.995338074593274, -43.36666042436604 -22.995221156275395, -43.36649207737366 -22.995120252971304, -43.366314650764735 -22.99503633643498, -43.36612985325451 -22.994970214828538, -43.365939464544034 -22.994922524939195, -43.365745318180664 -22.994893726046655, -43.3655492839 -22.9948840955, -43.36535324961934 -22.994893726046655, -43.36515910325597 -22.994922524939195, -43.36496871454549 -22.994970214828538, -43.36478391703527 -22.99503633643498, -43.36460649042635 -22.995120252971304, -43.364438143433965 -22.995221156275395, -43.36428049733168 -22.995338074593274, -43.36413507033763 -22.995469881937627, -43.36400326299328 -22.995615308931672, -43.3638863446754 -22.99577295503396, -43.363785441371306 -22.99594130202635, -43.36370152483498 -22.99611872863527, -43.363635403228535 -22.996303526145493, -43.36358771333919 -22.996493914855968, -43.363558914446656 -22.99668806121934, -43.3635492839 -22.9968840955))" +001020,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,TRUE,302,-22.9968841,-43.36554928,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3635492839 -22.9968840955, -43.363558914446656 -22.99708012978066, -43.36358771333919 -22.997274276144033, -43.363635403228535 -22.99746466485451, -43.36370152483498 -22.99764946236473, -43.363785441371306 -22.997826888973652, -43.3638863446754 -22.99799523596604, -43.36400326299328 -22.99815288206833, -43.36413507033763 -22.998298309062374, -43.36428049733168 -22.998430116406727, -43.364438143433965 -22.998547034724606, -43.36460649042635 -22.998647938028697, -43.36478391703527 -22.998731854565023, -43.36496871454549 -22.998797976171463, -43.36515910325597 -22.998845666060806, -43.36535324961934 -22.998874464953346, -43.3655492839 -22.9988840955, -43.365745318180664 -22.998874464953346, -43.365939464544034 -22.998845666060806, -43.36612985325451 -22.998797976171463, -43.366314650764735 -22.998731854565023, -43.36649207737366 -22.998647938028697, -43.36666042436604 -22.998547034724606, -43.36681807046833 -22.998430116406727, -43.36696349746237 -22.998298309062374, -43.367095304806725 -22.99815288206833, -43.367212223124604 -22.99799523596604, -43.3673131264287 -22.997826888973652, -43.367397042965024 -22.99764946236473, -43.36746316457147 -22.99746466485451, -43.36751085446081 -22.997274276144033, -43.36753965335335 -22.99708012978066, -43.367549283900004 -22.9968840955, -43.36753965335335 -22.99668806121934, -43.36751085446081 -22.996493914855968, -43.36746316457147 -22.996303526145493, -43.367397042965024 -22.99611872863527, -43.3673131264287 -22.99594130202635, -43.367212223124604 -22.99577295503396, -43.367095304806725 -22.995615308931672, -43.36696349746237 -22.995469881937627, -43.36681807046833 -22.995338074593274, -43.36666042436604 -22.995221156275395, -43.36649207737366 -22.995120252971304, -43.366314650764735 -22.99503633643498, -43.36612985325451 -22.994970214828538, -43.365939464544034 -22.994922524939195, -43.365745318180664 -22.994893726046655, -43.3655492839 -22.9948840955, -43.36535324961934 -22.994893726046655, -43.36515910325597 -22.994922524939195, -43.36496871454549 -22.994970214828538, -43.36478391703527 -22.99503633643498, -43.36460649042635 -22.995120252971304, -43.364438143433965 -22.995221156275395, -43.36428049733168 -22.995338074593274, -43.36413507033763 -22.995469881937627, -43.36400326299328 -22.995615308931672, -43.3638863446754 -22.99577295503396, -43.363785441371306 -22.99594130202635, -43.36370152483498 -22.99611872863527, -43.363635403228535 -22.996303526145493, -43.36358771333919 -22.996493914855968, -43.363558914446656 -22.99668806121934, -43.3635492839 -22.9968840955))" +001021,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001026,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001027,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001028,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001029,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001030,Méier,Zona Norte,88a8a06027fffff,TRUE,53,-22.90377842,-43.2779202,PC,G,Canal do Cunha,"POLYGON ((-43.2759201991 -22.9037784241, -43.27592982964666 -22.90397445838066, -43.27595862853919 -22.904168604744033, -43.276006318428536 -22.904358993454508, -43.27607244003498 -22.90454379096473, -43.276156356571306 -22.904721217573652, -43.2762572598754 -22.90488956456604, -43.27637417819328 -22.90504721066833, -43.27650598553763 -22.905192637662374, -43.27665141253168 -22.905324445006727, -43.276809058633965 -22.905441363324606, -43.27697740562635 -22.905542266628697, -43.27715483223527 -22.905626183165023, -43.27733962974549 -22.905692304771463, -43.27753001845597 -22.905739994660806, -43.27772416481934 -22.905768793553346, -43.2779201991 -22.9057784241, -43.278116233380665 -22.905768793553346, -43.278310379744035 -22.905739994660806, -43.27850076845451 -22.905692304771463, -43.278685565964736 -22.905626183165023, -43.27886299257366 -22.905542266628697, -43.27903133956604 -22.905441363324606, -43.27918898566833 -22.905324445006727, -43.27933441266237 -22.905192637662374, -43.279466220006725 -22.90504721066833, -43.279583138324604 -22.90488956456604, -43.2796840416287 -22.904721217573652, -43.279767958165024 -22.90454379096473, -43.27983407977147 -22.904358993454508, -43.27988176966081 -22.904168604744033, -43.27991056855335 -22.90397445838066, -43.279920199100005 -22.9037784241, -43.27991056855335 -22.90358238981934, -43.27988176966081 -22.903388243455968, -43.27983407977147 -22.903197854745493, -43.279767958165024 -22.90301305723527, -43.2796840416287 -22.90283563062635, -43.279583138324604 -22.90266728363396, -43.279466220006725 -22.902509637531672, -43.27933441266237 -22.902364210537627, -43.27918898566833 -22.902232403193274, -43.27903133956604 -22.902115484875395, -43.27886299257366 -22.902014581571304, -43.278685565964736 -22.90193066503498, -43.27850076845451 -22.901864543428538, -43.278310379744035 -22.901816853539195, -43.278116233380665 -22.901788054646655, -43.2779201991 -22.9017784241, -43.27772416481934 -22.901788054646655, -43.27753001845597 -22.901816853539195, -43.27733962974549 -22.901864543428538, -43.27715483223527 -22.90193066503498, -43.27697740562635 -22.902014581571304, -43.276809058633965 -22.902115484875395, -43.27665141253168 -22.902232403193274, -43.27650598553763 -22.902364210537627, -43.27637417819328 -22.902509637531672, -43.2762572598754 -22.90266728363396, -43.276156356571306 -22.90283563062635, -43.27607244003498 -22.90301305723527, -43.276006318428536 -22.903197854745493, -43.27595862853919 -22.903388243455968, -43.27592982964666 -22.90358238981934, -43.2759201991 -22.9037784241))" +001031,Méier,Zona Norte,88a8a06027fffff,TRUE,53,-22.90377842,-43.2779202,PC,G,Canal do Cunha,"POLYGON ((-43.2759201991 -22.9037784241, -43.27592982964666 -22.90397445838066, -43.27595862853919 -22.904168604744033, -43.276006318428536 -22.904358993454508, -43.27607244003498 -22.90454379096473, -43.276156356571306 -22.904721217573652, -43.2762572598754 -22.90488956456604, -43.27637417819328 -22.90504721066833, -43.27650598553763 -22.905192637662374, -43.27665141253168 -22.905324445006727, -43.276809058633965 -22.905441363324606, -43.27697740562635 -22.905542266628697, -43.27715483223527 -22.905626183165023, -43.27733962974549 -22.905692304771463, -43.27753001845597 -22.905739994660806, -43.27772416481934 -22.905768793553346, -43.2779201991 -22.9057784241, -43.278116233380665 -22.905768793553346, -43.278310379744035 -22.905739994660806, -43.27850076845451 -22.905692304771463, -43.278685565964736 -22.905626183165023, -43.27886299257366 -22.905542266628697, -43.27903133956604 -22.905441363324606, -43.27918898566833 -22.905324445006727, -43.27933441266237 -22.905192637662374, -43.279466220006725 -22.90504721066833, -43.279583138324604 -22.90488956456604, -43.2796840416287 -22.904721217573652, -43.279767958165024 -22.90454379096473, -43.27983407977147 -22.904358993454508, -43.27988176966081 -22.904168604744033, -43.27991056855335 -22.90397445838066, -43.279920199100005 -22.9037784241, -43.27991056855335 -22.90358238981934, -43.27988176966081 -22.903388243455968, -43.27983407977147 -22.903197854745493, -43.279767958165024 -22.90301305723527, -43.2796840416287 -22.90283563062635, -43.279583138324604 -22.90266728363396, -43.279466220006725 -22.902509637531672, -43.27933441266237 -22.902364210537627, -43.27918898566833 -22.902232403193274, -43.27903133956604 -22.902115484875395, -43.27886299257366 -22.902014581571304, -43.278685565964736 -22.90193066503498, -43.27850076845451 -22.901864543428538, -43.278310379744035 -22.901816853539195, -43.278116233380665 -22.901788054646655, -43.2779201991 -22.9017784241, -43.27772416481934 -22.901788054646655, -43.27753001845597 -22.901816853539195, -43.27733962974549 -22.901864543428538, -43.27715483223527 -22.90193066503498, -43.27697740562635 -22.902014581571304, -43.276809058633965 -22.902115484875395, -43.27665141253168 -22.902232403193274, -43.27650598553763 -22.902364210537627, -43.27637417819328 -22.902509637531672, -43.2762572598754 -22.90266728363396, -43.276156356571306 -22.90283563062635, -43.27607244003498 -22.90301305723527, -43.276006318428536 -22.903197854745493, -43.27595862853919 -22.903388243455968, -43.27592982964666 -22.90358238981934, -43.2759201991 -22.9037784241))" +001032,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001033,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001034,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001035,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001037,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001038,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001039,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001040,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001041,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001042,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001043,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001044,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001045,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001046,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001047,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001048,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001049,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001050,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001051,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001052,Méier,Zona Norte,88a8a06027fffff,TRUE,53,-22.90377842,-43.2779202,PC,G,Canal do Cunha,"POLYGON ((-43.2759201991 -22.9037784241, -43.27592982964666 -22.90397445838066, -43.27595862853919 -22.904168604744033, -43.276006318428536 -22.904358993454508, -43.27607244003498 -22.90454379096473, -43.276156356571306 -22.904721217573652, -43.2762572598754 -22.90488956456604, -43.27637417819328 -22.90504721066833, -43.27650598553763 -22.905192637662374, -43.27665141253168 -22.905324445006727, -43.276809058633965 -22.905441363324606, -43.27697740562635 -22.905542266628697, -43.27715483223527 -22.905626183165023, -43.27733962974549 -22.905692304771463, -43.27753001845597 -22.905739994660806, -43.27772416481934 -22.905768793553346, -43.2779201991 -22.9057784241, -43.278116233380665 -22.905768793553346, -43.278310379744035 -22.905739994660806, -43.27850076845451 -22.905692304771463, -43.278685565964736 -22.905626183165023, -43.27886299257366 -22.905542266628697, -43.27903133956604 -22.905441363324606, -43.27918898566833 -22.905324445006727, -43.27933441266237 -22.905192637662374, -43.279466220006725 -22.90504721066833, -43.279583138324604 -22.90488956456604, -43.2796840416287 -22.904721217573652, -43.279767958165024 -22.90454379096473, -43.27983407977147 -22.904358993454508, -43.27988176966081 -22.904168604744033, -43.27991056855335 -22.90397445838066, -43.279920199100005 -22.9037784241, -43.27991056855335 -22.90358238981934, -43.27988176966081 -22.903388243455968, -43.27983407977147 -22.903197854745493, -43.279767958165024 -22.90301305723527, -43.2796840416287 -22.90283563062635, -43.279583138324604 -22.90266728363396, -43.279466220006725 -22.902509637531672, -43.27933441266237 -22.902364210537627, -43.27918898566833 -22.902232403193274, -43.27903133956604 -22.902115484875395, -43.27886299257366 -22.902014581571304, -43.278685565964736 -22.90193066503498, -43.27850076845451 -22.901864543428538, -43.278310379744035 -22.901816853539195, -43.278116233380665 -22.901788054646655, -43.2779201991 -22.9017784241, -43.27772416481934 -22.901788054646655, -43.27753001845597 -22.901816853539195, -43.27733962974549 -22.901864543428538, -43.27715483223527 -22.90193066503498, -43.27697740562635 -22.902014581571304, -43.276809058633965 -22.902115484875395, -43.27665141253168 -22.902232403193274, -43.27650598553763 -22.902364210537627, -43.27637417819328 -22.902509637531672, -43.2762572598754 -22.90266728363396, -43.276156356571306 -22.90283563062635, -43.27607244003498 -22.90301305723527, -43.276006318428536 -22.903197854745493, -43.27595862853919 -22.903388243455968, -43.27592982964666 -22.90358238981934, -43.2759201991 -22.9037784241))" +001053,Méier,Zona Norte,88a8a06027fffff,TRUE,53,-22.90377842,-43.2779202,PC,G,Canal do Cunha,"POLYGON ((-43.2759201991 -22.9037784241, -43.27592982964666 -22.90397445838066, -43.27595862853919 -22.904168604744033, -43.276006318428536 -22.904358993454508, -43.27607244003498 -22.90454379096473, -43.276156356571306 -22.904721217573652, -43.2762572598754 -22.90488956456604, -43.27637417819328 -22.90504721066833, -43.27650598553763 -22.905192637662374, -43.27665141253168 -22.905324445006727, -43.276809058633965 -22.905441363324606, -43.27697740562635 -22.905542266628697, -43.27715483223527 -22.905626183165023, -43.27733962974549 -22.905692304771463, -43.27753001845597 -22.905739994660806, -43.27772416481934 -22.905768793553346, -43.2779201991 -22.9057784241, -43.278116233380665 -22.905768793553346, -43.278310379744035 -22.905739994660806, -43.27850076845451 -22.905692304771463, -43.278685565964736 -22.905626183165023, -43.27886299257366 -22.905542266628697, -43.27903133956604 -22.905441363324606, -43.27918898566833 -22.905324445006727, -43.27933441266237 -22.905192637662374, -43.279466220006725 -22.90504721066833, -43.279583138324604 -22.90488956456604, -43.2796840416287 -22.904721217573652, -43.279767958165024 -22.90454379096473, -43.27983407977147 -22.904358993454508, -43.27988176966081 -22.904168604744033, -43.27991056855335 -22.90397445838066, -43.279920199100005 -22.9037784241, -43.27991056855335 -22.90358238981934, -43.27988176966081 -22.903388243455968, -43.27983407977147 -22.903197854745493, -43.279767958165024 -22.90301305723527, -43.2796840416287 -22.90283563062635, -43.279583138324604 -22.90266728363396, -43.279466220006725 -22.902509637531672, -43.27933441266237 -22.902364210537627, -43.27918898566833 -22.902232403193274, -43.27903133956604 -22.902115484875395, -43.27886299257366 -22.902014581571304, -43.278685565964736 -22.90193066503498, -43.27850076845451 -22.901864543428538, -43.278310379744035 -22.901816853539195, -43.278116233380665 -22.901788054646655, -43.2779201991 -22.9017784241, -43.27772416481934 -22.901788054646655, -43.27753001845597 -22.901816853539195, -43.27733962974549 -22.901864543428538, -43.27715483223527 -22.90193066503498, -43.27697740562635 -22.902014581571304, -43.276809058633965 -22.902115484875395, -43.27665141253168 -22.902232403193274, -43.27650598553763 -22.902364210537627, -43.27637417819328 -22.902509637531672, -43.2762572598754 -22.90266728363396, -43.276156356571306 -22.90283563062635, -43.27607244003498 -22.90301305723527, -43.276006318428536 -22.903197854745493, -43.27595862853919 -22.903388243455968, -43.27592982964666 -22.90358238981934, -43.2759201991 -22.9037784241))" +001054,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001055,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001056,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001057,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001058,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001059,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001060,Madureira,Zona Norte,88a8a06087fffff,,,,,,,, +001061,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +001062,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +001064,Anil,Jacarepaguá,88a8a0623bfffff,,,,,,,, +001065,Anil,Jacarepaguá,88a8a062edfffff,,,,,,,, +001068,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +001069,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +001073,Lagoa,Zona Sul,88a8a078d1fffff,TRUE,89,-22.96450343,-43.21527401,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2132740143 -22.9645034326, -43.213283644846655 -22.96469946688066, -43.21331244373919 -22.964893613244033, -43.213360133628534 -22.96508400195451, -43.21342625523498 -22.96526879946473, -43.213510171771304 -22.965446226073652, -43.2136110750754 -22.96561457306604, -43.21372799339328 -22.96577221916833, -43.21385980073763 -22.965917646162374, -43.214005227731676 -22.966049453506727, -43.21416287383396 -22.966166371824606, -43.214331220826345 -22.966267275128697, -43.21450864743527 -22.966351191665023, -43.21469344494549 -22.966417313271464, -43.21488383365597 -22.966465003160806, -43.21507798001934 -22.966493802053346, -43.2152740143 -22.9665034326, -43.21547004858066 -22.966493802053346, -43.21566419494403 -22.966465003160806, -43.21585458365451 -22.966417313271464, -43.216039381164734 -22.966351191665023, -43.216216807773655 -22.966267275128697, -43.21638515476604 -22.966166371824606, -43.216542800868325 -22.966049453506727, -43.21668822786237 -22.965917646162374, -43.21682003520672 -22.96577221916833, -43.2169369535246 -22.96561457306604, -43.217037856828696 -22.965446226073652, -43.21712177336502 -22.96526879946473, -43.21718789497147 -22.96508400195451, -43.21723558486081 -22.964893613244033, -43.217264383753346 -22.96469946688066, -43.2172740143 -22.9645034326, -43.217264383753346 -22.96430739831934, -43.21723558486081 -22.96411325195597, -43.21718789497147 -22.963922863245493, -43.21712177336502 -22.96373806573527, -43.217037856828696 -22.96356063912635, -43.2169369535246 -22.96339229213396, -43.21682003520672 -22.963234646031673, -43.21668822786237 -22.963089219037627, -43.216542800868325 -22.962957411693274, -43.21638515476604 -22.962840493375396, -43.216216807773655 -22.962739590071305, -43.216039381164734 -22.96265567353498, -43.21585458365451 -22.962589551928538, -43.21566419494403 -22.962541862039195, -43.21547004858066 -22.962513063146655, -43.2152740143 -22.962503432600002, -43.21507798001934 -22.962513063146655, -43.21488383365597 -22.962541862039195, -43.21469344494549 -22.962589551928538, -43.21450864743527 -22.96265567353498, -43.214331220826345 -22.962739590071305, -43.21416287383396 -22.962840493375396, -43.214005227731676 -22.962957411693274, -43.21385980073763 -22.963089219037627, -43.21372799339328 -22.963234646031673, -43.2136110750754 -22.96339229213396, -43.213510171771304 -22.96356063912635, -43.21342625523498 -22.96373806573527, -43.213360133628534 -22.963922863245493, -43.21331244373919 -22.96411325195597, -43.213283644846655 -22.96430739831934, -43.2132740143 -22.9645034326))" +001074,Gávea,Zona Sul,88a8a078d9fffff,TRUE,90,-22.97347927,-43.22592556,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2239255605 -22.9734792708, -43.22393519104666 -22.973675305080658, -43.22396398993919 -22.97386945144403, -43.224011679828536 -22.974059840154506, -43.22407780143498 -22.97424463766473, -43.224161717971306 -22.97442206427365, -43.2242626212754 -22.97459041126604, -43.22437953959328 -22.974748057368327, -43.22451134693763 -22.974893484362372, -43.22465677393168 -22.975025291706725, -43.224814420033965 -22.975142210024604, -43.22498276702635 -22.975243113328695, -43.22516019363527 -22.97532702986502, -43.22534499114549 -22.97539315147146, -43.22553537985597 -22.975440841360804, -43.22572952621934 -22.975469640253344, -43.2259255605 -22.975479270799998, -43.226121594780665 -22.975469640253344, -43.226315741144035 -22.975440841360804, -43.22650612985451 -22.97539315147146, -43.226690927364736 -22.97532702986502, -43.22686835397366 -22.975243113328695, -43.22703670096604 -22.975142210024604, -43.22719434706833 -22.975025291706725, -43.22733977406237 -22.974893484362372, -43.227471581406725 -22.974748057368327, -43.227588499724604 -22.97459041126604, -43.2276894030287 -22.97442206427365, -43.227773319565024 -22.97424463766473, -43.22783944117147 -22.974059840154506, -43.22788713106081 -22.97386945144403, -43.22791592995335 -22.973675305080658, -43.227925560500005 -22.9734792708, -43.22791592995335 -22.97328323651934, -43.22788713106081 -22.973089090155966, -43.22783944117147 -22.97289870144549, -43.227773319565024 -22.97271390393527, -43.2276894030287 -22.972536477326347, -43.227588499724604 -22.972368130333958, -43.227471581406725 -22.97221048423167, -43.22733977406237 -22.972065057237625, -43.22719434706833 -22.971933249893272, -43.22703670096604 -22.971816331575393, -43.22686835397366 -22.971715428271303, -43.226690927364736 -22.971631511734977, -43.22650612985451 -22.971565390128536, -43.226315741144035 -22.971517700239193, -43.226121594780665 -22.971488901346653, -43.2259255605 -22.9714792708, -43.22572952621934 -22.971488901346653, -43.22553537985597 -22.971517700239193, -43.22534499114549 -22.971565390128536, -43.22516019363527 -22.971631511734977, -43.22498276702635 -22.971715428271303, -43.224814420033965 -22.971816331575393, -43.22465677393168 -22.971933249893272, -43.22451134693763 -22.972065057237625, -43.22437953959328 -22.97221048423167, -43.2242626212754 -22.972368130333958, -43.224161717971306 -22.972536477326347, -43.22407780143498 -22.97271390393527, -43.224011679828536 -22.97289870144549, -43.22396398993919 -22.973089090155966, -43.22393519104666 -22.97328323651934, -43.2239255605 -22.9734792708))" +001076,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +001077,Tijuca,Grande Tijuca,88a8a0614bfffff,,,,,,,, +001078,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +001079,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001080,Taquara,Jacarepaguá,88a8a062b9fffff,TRUE,442,-22.914945,-43.375297,PO,J,,"POLYGON ((-43.373297 -22.914945, -43.37330663054666 -22.91514103428066, -43.373335429439194 -22.915335180644032, -43.37338311932854 -22.915525569354507, -43.37344924093498 -22.91571036686473, -43.37353315747131 -22.91588779347365, -43.3736340607754 -22.91605614046604, -43.37375097909328 -22.916213786568328, -43.37388278643763 -22.916359213562373, -43.37402821343168 -22.916491020906726, -43.374185859533966 -22.916607939224605, -43.37435420652635 -22.916708842528696, -43.37453163313527 -22.91679275906502, -43.37471643064549 -22.916858880671462, -43.37490681935597 -22.916906570560805, -43.37510096571934 -22.916935369453345, -43.375297 -22.916945, -43.375493034280666 -22.916935369453345, -43.375687180644036 -22.916906570560805, -43.375877569354515 -22.916858880671462, -43.37606236686474 -22.91679275906502, -43.37623979347366 -22.916708842528696, -43.37640814046604 -22.916607939224605, -43.37656578656833 -22.916491020906726, -43.37671121356237 -22.916359213562373, -43.376843020906726 -22.916213786568328, -43.376959939224605 -22.91605614046604, -43.3770608425287 -22.91588779347365, -43.377144759065025 -22.91571036686473, -43.37721088067147 -22.915525569354507, -43.37725857056081 -22.915335180644032, -43.37728736945335 -22.91514103428066, -43.377297000000006 -22.914945, -43.37728736945335 -22.91474896571934, -43.37725857056081 -22.914554819355967, -43.37721088067147 -22.91436443064549, -43.377144759065025 -22.91417963313527, -43.3770608425287 -22.914002206526348, -43.376959939224605 -22.91383385953396, -43.376843020906726 -22.91367621343167, -43.37671121356237 -22.913530786437626, -43.37656578656833 -22.913398979093273, -43.37640814046604 -22.913282060775394, -43.37623979347366 -22.913181157471303, -43.37606236686474 -22.913097240934977, -43.375877569354515 -22.913031119328537, -43.375687180644036 -22.912983429439194, -43.375493034280666 -22.912954630546654, -43.375297 -22.912945, -43.37510096571934 -22.912954630546654, -43.37490681935597 -22.912983429439194, -43.37471643064549 -22.913031119328537, -43.37453163313527 -22.913097240934977, -43.37435420652635 -22.913181157471303, -43.374185859533966 -22.913282060775394, -43.37402821343168 -22.913398979093273, -43.37388278643763 -22.913530786437626, -43.37375097909328 -22.91367621343167, -43.3736340607754 -22.91383385953396, -43.37353315747131 -22.914002206526348, -43.37344924093498 -22.91417963313527, -43.37338311932854 -22.91436443064549, -43.373335429439194 -22.914554819355967, -43.37330663054666 -22.91474896571934, -43.373297 -22.914945))" +001082,Realengo,Grande Bangu,88a8a0671bfffff,,,,,,,, +001083,São Cristóvão,Centro,88a8a06135fffff,TRUE,315,-22.88636999,-43.22588612,PO,G,Canal do Cunha,"POLYGON ((-43.223886117199996 -22.886369987, -43.22389574774665 -22.886566021280657, -43.22392454663919 -22.88676016764403, -43.22397223652853 -22.886950556354506, -43.224038358134976 -22.88713535386473, -43.2241222746713 -22.88731278047365, -43.2242231779754 -22.88748112746604, -43.224340096293275 -22.887638773568327, -43.22447190363763 -22.887784200562372, -43.22461733063167 -22.887916007906725, -43.22477497673396 -22.888032926224604, -43.22494332372634 -22.888133829528694, -43.225120750335265 -22.88821774606502, -43.22530554784549 -22.88828386767146, -43.225495936555966 -22.888331557560804, -43.225690082919336 -22.888360356453344, -43.2258861172 -22.888369986999997, -43.22608215148066 -22.888360356453344, -43.22627629784403 -22.888331557560804, -43.22646668655451 -22.88828386767146, -43.22665148406473 -22.88821774606502, -43.22682891067365 -22.888133829528694, -43.226997257666035 -22.888032926224604, -43.22715490376832 -22.887916007906725, -43.22730033076237 -22.887784200562372, -43.22743213810672 -22.887638773568327, -43.2275490564246 -22.88748112746604, -43.227649959728694 -22.88731278047365, -43.22773387626502 -22.88713535386473, -43.227799997871465 -22.886950556354506, -43.22784768776081 -22.88676016764403, -43.227876486653344 -22.886566021280657, -43.2278861172 -22.886369987, -43.227876486653344 -22.88617395271934, -43.22784768776081 -22.885979806355966, -43.227799997871465 -22.88578941764549, -43.22773387626502 -22.88560462013527, -43.227649959728694 -22.885427193526347, -43.2275490564246 -22.885258846533958, -43.22743213810672 -22.88510120043167, -43.22730033076237 -22.884955773437625, -43.22715490376832 -22.884823966093272, -43.226997257666035 -22.884707047775393, -43.22682891067365 -22.884606144471302, -43.22665148406473 -22.884522227934976, -43.22646668655451 -22.884456106328535, -43.22627629784403 -22.884408416439193, -43.22608215148066 -22.884379617546653, -43.2258861172 -22.884369987, -43.225690082919336 -22.884379617546653, -43.225495936555966 -22.884408416439193, -43.22530554784549 -22.884456106328535, -43.225120750335265 -22.884522227934976, -43.22494332372634 -22.884606144471302, -43.22477497673396 -22.884707047775393, -43.22461733063167 -22.884823966093272, -43.22447190363763 -22.884955773437625, -43.224340096293275 -22.88510120043167, -43.2242231779754 -22.885258846533958, -43.2241222746713 -22.885427193526347, -43.224038358134976 -22.88560462013527, -43.22397223652853 -22.88578941764549, -43.22392454663919 -22.885979806355966, -43.22389574774665 -22.88617395271934, -43.223886117199996 -22.886369987))" +001086,Lagoa,Zona Sul,88a8a078d5fffff,,,,,,,, +001090,Realengo,Grande Bangu,88a8a06717fffff,,,,,,,, +001091,Irajá,Zona Norte,88a8a06e41fffff,TRUE,272,-22.84735531,-43.32448787,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3224878658 -22.8473553146, -43.32249749634666 -22.84755134888066, -43.32252629523919 -22.847745495244034, -43.322573985128535 -22.84793588395451, -43.32264010673498 -22.84812068146473, -43.322724023271306 -22.848298108073653, -43.3228249265754 -22.848466455066042, -43.32294184489328 -22.84862410116833, -43.32307365223763 -22.848769528162375, -43.32321907923168 -22.848901335506728, -43.323376725333965 -22.849018253824607, -43.32354507232635 -22.849119157128698, -43.32372249893527 -22.849203073665024, -43.32390729644549 -22.849269195271464, -43.32409768515597 -22.849316885160807, -43.32429183151934 -22.849345684053347, -43.3244878658 -22.8493553146, -43.324683900080665 -22.849345684053347, -43.324878046444034 -22.849316885160807, -43.32506843515451 -22.849269195271464, -43.325253232664735 -22.849203073665024, -43.32543065927366 -22.849119157128698, -43.32559900626604 -22.849018253824607, -43.32575665236833 -22.848901335506728, -43.32590207936237 -22.848769528162375, -43.326033886706725 -22.84862410116833, -43.326150805024604 -22.848466455066042, -43.3262517083287 -22.848298108073653, -43.326335624865024 -22.84812068146473, -43.32640174647147 -22.84793588395451, -43.32644943636081 -22.847745495244034, -43.32647823525335 -22.84755134888066, -43.326487865800004 -22.8473553146, -43.32647823525335 -22.847159280319342, -43.32644943636081 -22.84696513395597, -43.32640174647147 -22.846774745245494, -43.326335624865024 -22.84658994773527, -43.3262517083287 -22.84641252112635, -43.326150805024604 -22.84624417413396, -43.326033886706725 -22.846086528031673, -43.32590207936237 -22.845941101037628, -43.32575665236833 -22.845809293693275, -43.32559900626604 -22.845692375375396, -43.32543065927366 -22.845591472071305, -43.325253232664735 -22.84550755553498, -43.32506843515451 -22.84544143392854, -43.324878046444034 -22.845393744039196, -43.324683900080665 -22.845364945146656, -43.3244878658 -22.845355314600003, -43.32429183151934 -22.845364945146656, -43.32409768515597 -22.845393744039196, -43.32390729644549 -22.84544143392854, -43.32372249893527 -22.84550755553498, -43.32354507232635 -22.845591472071305, -43.323376725333965 -22.845692375375396, -43.32321907923168 -22.845809293693275, -43.32307365223763 -22.845941101037628, -43.32294184489328 -22.846086528031673, -43.3228249265754 -22.84624417413396, -43.322724023271306 -22.84641252112635, -43.32264010673498 -22.84658994773527, -43.322573985128535 -22.846774745245494, -43.32252629523919 -22.84696513395597, -43.32249749634666 -22.847159280319342, -43.3224878658 -22.8473553146))" +001092,Bento Ribeiro,Zona Norte,88a8a0608bfffff,,,,,,,, +001093,Campinho,Zona Norte,88a8a0608dfffff,,,,,,,, +001097,Penha,Zona Norte,88a8a061b3fffff,TRUE,362,-22.84052846,-43.2802093,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.27820930034862 -22.84052845940852, -43.27821893089528 -22.84072449368918, -43.278247729787815 -22.840918640052553, -43.27829541967716 -22.84110902876303, -43.2783615412836 -22.84129382627325, -43.27844545781993 -22.841471252882172, -43.27854636112402 -22.84163959987456, -43.2786632794419 -22.84179724597685, -43.27879508678625 -22.841942672970895, -43.2789405137803 -22.842074480315247, -43.27909815988259 -22.842191398633126, -43.27926650687497 -22.842292301937217, -43.27944393348389 -22.842376218473543, -43.27962873099411 -22.842442340079984, -43.27981911970459 -22.842490029969326, -43.28001326606796 -22.842518828861866, -43.28020930034862 -22.84252845940852, -43.280405334629286 -22.842518828861866, -43.280599480992656 -22.842490029969326, -43.280789869703135 -22.842442340079984, -43.28097466721336 -22.842376218473543, -43.28115209382228 -22.842292301937217, -43.28132044081466 -22.842191398633126, -43.28147808691695 -22.842074480315247, -43.28162351391099 -22.841942672970895, -43.281755321255346 -22.84179724597685, -43.281872239573225 -22.84163959987456, -43.28197314287732 -22.841471252882172, -43.282057059413646 -22.84129382627325, -43.28212318102009 -22.84110902876303, -43.28217087090943 -22.840918640052553, -43.28219966980197 -22.84072449368918, -43.282209300348626 -22.84052845940852, -43.28219966980197 -22.840332425127862, -43.28217087090943 -22.84013827876449, -43.28212318102009 -22.839947890054013, -43.282057059413646 -22.83976309254379, -43.28197314287732 -22.83958566593487, -43.281872239573225 -22.83941731894248, -43.281755321255346 -22.839259672840193, -43.28162351391099 -22.839114245846147, -43.28147808691695 -22.838982438501795, -43.28132044081466 -22.838865520183916, -43.28115209382228 -22.838764616879825, -43.28097466721336 -22.8386807003435, -43.280789869703135 -22.838614578737058, -43.280599480992656 -22.838566888847716, -43.280405334629286 -22.838538089955176, -43.28020930034862 -22.838528459408522, -43.28001326606796 -22.838538089955176, -43.27981911970459 -22.838566888847716, -43.27962873099411 -22.838614578737058, -43.27944393348389 -22.8386807003435, -43.27926650687497 -22.838764616879825, -43.27909815988259 -22.838865520183916, -43.2789405137803 -22.838982438501795, -43.27879508678625 -22.839114245846147, -43.2786632794419 -22.839259672840193, -43.27854636112402 -22.83941731894248, -43.27844545781993 -22.83958566593487, -43.2783615412836 -22.83976309254379, -43.27829541967716 -22.839947890054013, -43.278247729787815 -22.84013827876449, -43.27821893089528 -22.840332425127862, -43.27820930034862 -22.84052845940852))" +001099,Realengo,Grande Bangu,88a8a06719fffff,,,,,,,, +001101,Campo Grande,Zona Oeste,88a8a02955fffff,,,,,,,, +001107,Campo Grande,Zona Oeste,88a8a02823fffff,,,,,,,, +001109,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +001110,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +001111,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +001112,Todos os Santos,Zona Norte,88a8a061c9fffff,,,,,,,, +001113,Engenho de Dentro,Zona Norte,88a8a06037fffff,,,,,,,, +001114,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +001115,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +001117,Gávea,Zona Sul,88a8a06365fffff,,,,,,,, +001118,Maracanã,Grande Tijuca,88a8a06101fffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +001119,Maracanã,Grande Tijuca,88a8a06101fffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +001120,Maracanã,Grande Tijuca,88a8a06101fffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +001121,Maracanã,Grande Tijuca,88a8a06101fffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +001122,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +001123,Realengo,Grande Bangu,88a8a06711fffff,,,,,,,, +001124,São Francisco Xavier,Zona Norte,88a8a06101fffff,,,,,,,, +001128,Cascadura,Zona Norte,88a8a060e3fffff,TRUE,426,-22.88217089,-43.33335869,PO,G,,"POLYGON ((-43.3313586867533 -22.8821708890514, -43.331368317299955 -22.88236692333206, -43.33139711619249 -22.882561069695434, -43.331444806081834 -22.88275145840591, -43.33151092768828 -22.882936255916132, -43.331594844224604 -22.883113682525053, -43.3316957475287 -22.883282029517442, -43.33181266584658 -22.88343967561973, -43.33194447319093 -22.883585102613775, -43.332089900184975 -22.883716909958128, -43.33224754628726 -22.883833828276007, -43.332415893279645 -22.883934731580098, -43.332593319888566 -22.884018648116424, -43.33277811739879 -22.884084769722865, -43.33296850610927 -22.884132459612207, -43.33316265247264 -22.884161258504747, -43.3333586867533 -22.8841708890514, -43.33355472103396 -22.884161258504747, -43.33374886739733 -22.884132459612207, -43.33393925610781 -22.884084769722865, -43.334124053618034 -22.884018648116424, -43.334301480226955 -22.883934731580098, -43.33446982721934 -22.883833828276007, -43.334627473321625 -22.883716909958128, -43.33477290031567 -22.883585102613775, -43.33490470766002 -22.88343967561973, -43.3350216259779 -22.883282029517442, -43.335122529281996 -22.883113682525053, -43.33520644581832 -22.882936255916132, -43.33527256742477 -22.88275145840591, -43.33532025731411 -22.882561069695434, -43.335349056206645 -22.88236692333206, -43.3353586867533 -22.8821708890514, -43.335349056206645 -22.881974854770743, -43.33532025731411 -22.88178070840737, -43.33527256742477 -22.881590319696894, -43.33520644581832 -22.88140552218667, -43.335122529281996 -22.88122809557775, -43.3350216259779 -22.88105974858536, -43.33490470766002 -22.880902102483073, -43.33477290031567 -22.880756675489028, -43.334627473321625 -22.880624868144675, -43.33446982721934 -22.880507949826796, -43.334301480226955 -22.880407046522706, -43.334124053618034 -22.88032312998638, -43.33393925610781 -22.88025700837994, -43.33374886739733 -22.880209318490596, -43.33355472103396 -22.880180519598056, -43.3333586867533 -22.880170889051403, -43.33316265247264 -22.880180519598056, -43.33296850610927 -22.880209318490596, -43.33277811739879 -22.88025700837994, -43.332593319888566 -22.88032312998638, -43.332415893279645 -22.880407046522706, -43.33224754628726 -22.880507949826796, -43.332089900184975 -22.880624868144675, -43.33194447319093 -22.880756675489028, -43.33181266584658 -22.880902102483073, -43.3316957475287 -22.88105974858536, -43.331594844224604 -22.88122809557775, -43.33151092768828 -22.88140552218667, -43.331444806081834 -22.881590319696894, -43.33139711619249 -22.88178070840737, -43.331368317299955 -22.881974854770743, -43.3313586867533 -22.8821708890514))" +001129,Taquara,Jacarepaguá,88a8a06287fffff,,,,,,,, +001130,Centro,Centro,88a8a06a51fffff,,,,,,,, +001132,Centro,Centro,88a8a06a51fffff,,,,,,,, +001133,Lagoa,Zona Sul,88a8a078d5fffff,,,,,,,, +001134,Lagoa,Zona Sul,88a8a078d5fffff,,,,,,,, +001135,Barra da Tijuca,Barra da Tijuca,88a8a07569fffff,,,,,,,, +001138,Botafogo,Zona Sul,88a8a078abfffff,TRUE,1,-22.94557694,-43.1837652,PC,G,Praia de Botafogo,"POLYGON ((-43.181765198099995 -22.9455769427, -43.18177482864665 -22.94577297698066, -43.18180362753919 -22.945967123344033, -43.18185131742853 -22.94615751205451, -43.181917439034976 -22.94634230956473, -43.1820013555713 -22.946519736173652, -43.182102258875396 -22.94668808316604, -43.182219177193275 -22.94684572926833, -43.18235098453763 -22.946991156262374, -43.18249641153167 -22.947122963606727, -43.18265405763396 -22.947239881924606, -43.18282240462634 -22.947340785228697, -43.182999831235264 -22.947424701765023, -43.18318462874549 -22.947490823371464, -43.183375017455965 -22.947538513260806, -43.183569163819335 -22.947567312153346, -43.1837651981 -22.9475769427, -43.18396123238066 -22.947567312153346, -43.18415537874403 -22.947538513260806, -43.18434576745451 -22.947490823371464, -43.18453056496473 -22.947424701765023, -43.18470799157365 -22.947340785228697, -43.184876338566035 -22.947239881924606, -43.18503398466832 -22.947122963606727, -43.18517941166237 -22.946991156262374, -43.18531121900672 -22.94684572926833, -43.1854281373246 -22.94668808316604, -43.185529040628694 -22.946519736173652, -43.18561295716502 -22.94634230956473, -43.185679078771464 -22.94615751205451, -43.18572676866081 -22.945967123344033, -43.18575556755334 -22.94577297698066, -43.1857651981 -22.9455769427, -43.18575556755334 -22.94538090841934, -43.18572676866081 -22.945186762055968, -43.185679078771464 -22.944996373345493, -43.18561295716502 -22.94481157583527, -43.185529040628694 -22.94463414922635, -43.1854281373246 -22.94446580223396, -43.18531121900672 -22.944308156131672, -43.18517941166237 -22.944162729137627, -43.18503398466832 -22.944030921793274, -43.184876338566035 -22.943914003475395, -43.18470799157365 -22.943813100171305, -43.18453056496473 -22.94372918363498, -43.18434576745451 -22.943663062028538, -43.18415537874403 -22.943615372139195, -43.18396123238066 -22.943586573246655, -43.1837651981 -22.943576942700002, -43.183569163819335 -22.943586573246655, -43.183375017455965 -22.943615372139195, -43.18318462874549 -22.943663062028538, -43.182999831235264 -22.94372918363498, -43.18282240462634 -22.943813100171305, -43.18265405763396 -22.943914003475395, -43.18249641153167 -22.944030921793274, -43.18235098453763 -22.944162729137627, -43.182219177193275 -22.944308156131672, -43.182102258875396 -22.94446580223396, -43.1820013555713 -22.94463414922635, -43.181917439034976 -22.94481157583527, -43.18185131742853 -22.944996373345493, -43.18180362753919 -22.945186762055968, -43.18177482864665 -22.94538090841934, -43.181765198099995 -22.9455769427))" +001139,Botafogo,Zona Sul,88a8a078abfffff,TRUE,1,-22.94557694,-43.1837652,PC,G,Praia de Botafogo,"POLYGON ((-43.181765198099995 -22.9455769427, -43.18177482864665 -22.94577297698066, -43.18180362753919 -22.945967123344033, -43.18185131742853 -22.94615751205451, -43.181917439034976 -22.94634230956473, -43.1820013555713 -22.946519736173652, -43.182102258875396 -22.94668808316604, -43.182219177193275 -22.94684572926833, -43.18235098453763 -22.946991156262374, -43.18249641153167 -22.947122963606727, -43.18265405763396 -22.947239881924606, -43.18282240462634 -22.947340785228697, -43.182999831235264 -22.947424701765023, -43.18318462874549 -22.947490823371464, -43.183375017455965 -22.947538513260806, -43.183569163819335 -22.947567312153346, -43.1837651981 -22.9475769427, -43.18396123238066 -22.947567312153346, -43.18415537874403 -22.947538513260806, -43.18434576745451 -22.947490823371464, -43.18453056496473 -22.947424701765023, -43.18470799157365 -22.947340785228697, -43.184876338566035 -22.947239881924606, -43.18503398466832 -22.947122963606727, -43.18517941166237 -22.946991156262374, -43.18531121900672 -22.94684572926833, -43.1854281373246 -22.94668808316604, -43.185529040628694 -22.946519736173652, -43.18561295716502 -22.94634230956473, -43.185679078771464 -22.94615751205451, -43.18572676866081 -22.945967123344033, -43.18575556755334 -22.94577297698066, -43.1857651981 -22.9455769427, -43.18575556755334 -22.94538090841934, -43.18572676866081 -22.945186762055968, -43.185679078771464 -22.944996373345493, -43.18561295716502 -22.94481157583527, -43.185529040628694 -22.94463414922635, -43.1854281373246 -22.94446580223396, -43.18531121900672 -22.944308156131672, -43.18517941166237 -22.944162729137627, -43.18503398466832 -22.944030921793274, -43.184876338566035 -22.943914003475395, -43.18470799157365 -22.943813100171305, -43.18453056496473 -22.94372918363498, -43.18434576745451 -22.943663062028538, -43.18415537874403 -22.943615372139195, -43.18396123238066 -22.943586573246655, -43.1837651981 -22.943576942700002, -43.183569163819335 -22.943586573246655, -43.183375017455965 -22.943615372139195, -43.18318462874549 -22.943663062028538, -43.182999831235264 -22.94372918363498, -43.18282240462634 -22.943813100171305, -43.18265405763396 -22.943914003475395, -43.18249641153167 -22.944030921793274, -43.18235098453763 -22.944162729137627, -43.182219177193275 -22.944308156131672, -43.182102258875396 -22.94446580223396, -43.1820013555713 -22.94463414922635, -43.181917439034976 -22.94481157583527, -43.18185131742853 -22.944996373345493, -43.18180362753919 -22.945186762055968, -43.18177482864665 -22.94538090841934, -43.181765198099995 -22.9455769427))" +001140,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001141,Lagoa,Zona Sul,88a8a078d1fffff,,,,,,,, +001142,Lagoa,Zona Sul,88a8a07889fffff,TRUE,91,-22.96221596,-43.20386245,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2018624531 -22.9622159606, -43.201872083646656 -22.962411994880657, -43.20190088253919 -22.96260614124403, -43.201948572428535 -22.962796529954506, -43.20201469403498 -22.96298132746473, -43.202098610571305 -22.96315875407365, -43.2021995138754 -22.96332710106604, -43.20231643219328 -22.963484747168327, -43.20244823953763 -22.963630174162372, -43.202593666531676 -22.963761981506725, -43.202751312633964 -22.963878899824604, -43.202919659626346 -22.963979803128694, -43.20309708623527 -22.96406371966502, -43.20328188374549 -22.96412984127146, -43.20347227245597 -22.964177531160804, -43.20366641881934 -22.964206330053344, -43.2038624531 -22.964215960599997, -43.204058487380664 -22.964206330053344, -43.204252633744034 -22.964177531160804, -43.20444302245451 -22.96412984127146, -43.204627819964735 -22.96406371966502, -43.204805246573656 -22.963979803128694, -43.20497359356604 -22.963878899824604, -43.205131239668326 -22.963761981506725, -43.20527666666237 -22.963630174162372, -43.205408474006724 -22.963484747168327, -43.2055253923246 -22.96332710106604, -43.2056262956287 -22.96315875407365, -43.20571021216502 -22.96298132746473, -43.20577633377147 -22.962796529954506, -43.20582402366081 -22.96260614124403, -43.20585282255335 -22.962411994880657, -43.2058624531 -22.9622159606, -43.20585282255335 -22.96201992631934, -43.20582402366081 -22.961825779955966, -43.20577633377147 -22.96163539124549, -43.20571021216502 -22.961450593735268, -43.2056262956287 -22.961273167126347, -43.2055253923246 -22.961104820133958, -43.205408474006724 -22.96094717403167, -43.20527666666237 -22.960801747037625, -43.205131239668326 -22.960669939693272, -43.20497359356604 -22.960553021375393, -43.204805246573656 -22.960452118071302, -43.204627819964735 -22.960368201534976, -43.20444302245451 -22.960302079928535, -43.204252633744034 -22.960254390039193, -43.204058487380664 -22.960225591146653, -43.2038624531 -22.9602159606, -43.20366641881934 -22.960225591146653, -43.20347227245597 -22.960254390039193, -43.20328188374549 -22.960302079928535, -43.20309708623527 -22.960368201534976, -43.202919659626346 -22.960452118071302, -43.202751312633964 -22.960553021375393, -43.202593666531676 -22.960669939693272, -43.20244823953763 -22.960801747037625, -43.20231643219328 -22.96094717403167, -43.2021995138754 -22.961104820133958, -43.202098610571305 -22.961273167126347, -43.20201469403498 -22.961450593735268, -43.201948572428535 -22.96163539124549, -43.20190088253919 -22.961825779955966, -43.201872083646656 -22.96201992631934, -43.2018624531 -22.9622159606))" +001143,Lagoa,Zona Sul,88a8a07889fffff,TRUE,91,-22.96221596,-43.20386245,PM,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2018624531 -22.9622159606, -43.201872083646656 -22.962411994880657, -43.20190088253919 -22.96260614124403, -43.201948572428535 -22.962796529954506, -43.20201469403498 -22.96298132746473, -43.202098610571305 -22.96315875407365, -43.2021995138754 -22.96332710106604, -43.20231643219328 -22.963484747168327, -43.20244823953763 -22.963630174162372, -43.202593666531676 -22.963761981506725, -43.202751312633964 -22.963878899824604, -43.202919659626346 -22.963979803128694, -43.20309708623527 -22.96406371966502, -43.20328188374549 -22.96412984127146, -43.20347227245597 -22.964177531160804, -43.20366641881934 -22.964206330053344, -43.2038624531 -22.964215960599997, -43.204058487380664 -22.964206330053344, -43.204252633744034 -22.964177531160804, -43.20444302245451 -22.96412984127146, -43.204627819964735 -22.96406371966502, -43.204805246573656 -22.963979803128694, -43.20497359356604 -22.963878899824604, -43.205131239668326 -22.963761981506725, -43.20527666666237 -22.963630174162372, -43.205408474006724 -22.963484747168327, -43.2055253923246 -22.96332710106604, -43.2056262956287 -22.96315875407365, -43.20571021216502 -22.96298132746473, -43.20577633377147 -22.962796529954506, -43.20582402366081 -22.96260614124403, -43.20585282255335 -22.962411994880657, -43.2058624531 -22.9622159606, -43.20585282255335 -22.96201992631934, -43.20582402366081 -22.961825779955966, -43.20577633377147 -22.96163539124549, -43.20571021216502 -22.961450593735268, -43.2056262956287 -22.961273167126347, -43.2055253923246 -22.961104820133958, -43.205408474006724 -22.96094717403167, -43.20527666666237 -22.960801747037625, -43.205131239668326 -22.960669939693272, -43.20497359356604 -22.960553021375393, -43.204805246573656 -22.960452118071302, -43.204627819964735 -22.960368201534976, -43.20444302245451 -22.960302079928535, -43.204252633744034 -22.960254390039193, -43.204058487380664 -22.960225591146653, -43.2038624531 -22.9602159606, -43.20366641881934 -22.960225591146653, -43.20347227245597 -22.960254390039193, -43.20328188374549 -22.960302079928535, -43.20309708623527 -22.960368201534976, -43.202919659626346 -22.960452118071302, -43.202751312633964 -22.960553021375393, -43.202593666531676 -22.960669939693272, -43.20244823953763 -22.960801747037625, -43.20231643219328 -22.96094717403167, -43.2021995138754 -22.961104820133958, -43.202098610571305 -22.961273167126347, -43.20201469403498 -22.961450593735268, -43.201948572428535 -22.96163539124549, -43.20190088253919 -22.961825779955966, -43.201872083646656 -22.96201992631934, -43.2018624531 -22.9622159606))" +001144,São Conrado,Zona Sul,88a8a07a93fffff,TRUE,306,-22.99173247,-43.25010428,PO,ZS,Praia de Sao Conrado,"POLYGON ((-43.2481042831 -22.9917324729, -43.248113913646655 -22.99192850718066, -43.24814271253919 -22.992122653544033, -43.248190402428534 -22.99231304225451, -43.24825652403498 -22.99249783976473, -43.248340440571305 -22.992675266373652, -43.2484413438754 -22.99284361336604, -43.24855826219328 -22.99300125946833, -43.24869006953763 -22.993146686462374, -43.248835496531676 -22.993278493806727, -43.248993142633964 -22.993395412124606, -43.249161489626346 -22.993496315428697, -43.24933891623527 -22.993580231965023, -43.24952371374549 -22.993646353571464, -43.24971410245597 -22.993694043460806, -43.24990824881934 -22.993722842353346, -43.2501042831 -22.9937324729, -43.25030031738066 -22.993722842353346, -43.25049446374403 -22.993694043460806, -43.25068485245451 -22.993646353571464, -43.250869649964734 -22.993580231965023, -43.251047076573656 -22.993496315428697, -43.25121542356604 -22.993395412124606, -43.251373069668325 -22.993278493806727, -43.25151849666237 -22.993146686462374, -43.25165030400672 -22.99300125946833, -43.2517672223246 -22.99284361336604, -43.2518681256287 -22.992675266373652, -43.25195204216502 -22.99249783976473, -43.25201816377147 -22.99231304225451, -43.25206585366081 -22.992122653544033, -43.252094652553346 -22.99192850718066, -43.2521042831 -22.9917324729, -43.252094652553346 -22.99153643861934, -43.25206585366081 -22.99134229225597, -43.25201816377147 -22.991151903545493, -43.25195204216502 -22.99096710603527, -43.2518681256287 -22.99078967942635, -43.2517672223246 -22.99062133243396, -43.25165030400672 -22.990463686331672, -43.25151849666237 -22.990318259337627, -43.251373069668325 -22.990186451993274, -43.25121542356604 -22.990069533675396, -43.251047076573656 -22.989968630371305, -43.250869649964734 -22.98988471383498, -43.25068485245451 -22.989818592228538, -43.25049446374403 -22.989770902339195, -43.25030031738066 -22.989742103446655, -43.2501042831 -22.989732472900002, -43.24990824881934 -22.989742103446655, -43.24971410245597 -22.989770902339195, -43.24952371374549 -22.989818592228538, -43.24933891623527 -22.98988471383498, -43.249161489626346 -22.989968630371305, -43.248993142633964 -22.990069533675396, -43.248835496531676 -22.990186451993274, -43.24869006953763 -22.990318259337627, -43.24855826219328 -22.990463686331672, -43.2484413438754 -22.99062133243396, -43.248340440571305 -22.99078967942635, -43.24825652403498 -22.99096710603527, -43.248190402428534 -22.991151903545493, -43.24814271253919 -22.99134229225597, -43.248113913646655 -22.99153643861934, -43.2481042831 -22.9917324729))" +001145,São Conrado,Zona Sul,88a8a0634dfffff,TRUE,306,-22.99173247,-43.25010428,PO,ZS,Praia de Sao Conrado,"POLYGON ((-43.2481042831 -22.9917324729, -43.248113913646655 -22.99192850718066, -43.24814271253919 -22.992122653544033, -43.248190402428534 -22.99231304225451, -43.24825652403498 -22.99249783976473, -43.248340440571305 -22.992675266373652, -43.2484413438754 -22.99284361336604, -43.24855826219328 -22.99300125946833, -43.24869006953763 -22.993146686462374, -43.248835496531676 -22.993278493806727, -43.248993142633964 -22.993395412124606, -43.249161489626346 -22.993496315428697, -43.24933891623527 -22.993580231965023, -43.24952371374549 -22.993646353571464, -43.24971410245597 -22.993694043460806, -43.24990824881934 -22.993722842353346, -43.2501042831 -22.9937324729, -43.25030031738066 -22.993722842353346, -43.25049446374403 -22.993694043460806, -43.25068485245451 -22.993646353571464, -43.250869649964734 -22.993580231965023, -43.251047076573656 -22.993496315428697, -43.25121542356604 -22.993395412124606, -43.251373069668325 -22.993278493806727, -43.25151849666237 -22.993146686462374, -43.25165030400672 -22.99300125946833, -43.2517672223246 -22.99284361336604, -43.2518681256287 -22.992675266373652, -43.25195204216502 -22.99249783976473, -43.25201816377147 -22.99231304225451, -43.25206585366081 -22.992122653544033, -43.252094652553346 -22.99192850718066, -43.2521042831 -22.9917324729, -43.252094652553346 -22.99153643861934, -43.25206585366081 -22.99134229225597, -43.25201816377147 -22.991151903545493, -43.25195204216502 -22.99096710603527, -43.2518681256287 -22.99078967942635, -43.2517672223246 -22.99062133243396, -43.25165030400672 -22.990463686331672, -43.25151849666237 -22.990318259337627, -43.251373069668325 -22.990186451993274, -43.25121542356604 -22.990069533675396, -43.251047076573656 -22.989968630371305, -43.250869649964734 -22.98988471383498, -43.25068485245451 -22.989818592228538, -43.25049446374403 -22.989770902339195, -43.25030031738066 -22.989742103446655, -43.2501042831 -22.989732472900002, -43.24990824881934 -22.989742103446655, -43.24971410245597 -22.989770902339195, -43.24952371374549 -22.989818592228538, -43.24933891623527 -22.98988471383498, -43.249161489626346 -22.989968630371305, -43.248993142633964 -22.990069533675396, -43.248835496531676 -22.990186451993274, -43.24869006953763 -22.990318259337627, -43.24855826219328 -22.990463686331672, -43.2484413438754 -22.99062133243396, -43.248340440571305 -22.99078967942635, -43.24825652403498 -22.99096710603527, -43.248190402428534 -22.991151903545493, -43.24814271253919 -22.99134229225597, -43.248113913646655 -22.99153643861934, -43.2481042831 -22.9917324729))" +001146,Penha,Zona Norte,88a8a061b5fffff,TRUE,354,-22.84177794,-43.27313876,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2711387611 -22.841777938, -43.271148391646655 -22.84197397228066, -43.27117719053919 -22.842168118644032, -43.271224880428534 -22.842358507354508, -43.27129100203498 -22.84254330486473, -43.271374918571304 -22.84272073147365, -43.2714758218754 -22.84288907846604, -43.27159274019328 -22.843046724568328, -43.27172454753763 -22.843192151562373, -43.271869974531675 -22.843323958906726, -43.27202762063396 -22.843440877224605, -43.272195967626345 -22.843541780528696, -43.27237339423527 -22.843625697065022, -43.27255819174549 -22.843691818671463, -43.27274858045597 -22.843739508560805, -43.27294272681934 -22.843768307453345, -43.2731387611 -22.843777938, -43.27333479538066 -22.843768307453345, -43.27352894174403 -22.843739508560805, -43.27371933045451 -22.843691818671463, -43.273904127964734 -22.843625697065022, -43.274081554573655 -22.843541780528696, -43.27424990156604 -22.843440877224605, -43.274407547668325 -22.843323958906726, -43.27455297466237 -22.843192151562373, -43.27468478200672 -22.843046724568328, -43.2748017003246 -22.84288907846604, -43.274902603628696 -22.84272073147365, -43.27498652016502 -22.84254330486473, -43.27505264177147 -22.842358507354508, -43.27510033166081 -22.842168118644032, -43.275129130553346 -22.84197397228066, -43.2751387611 -22.841777938, -43.275129130553346 -22.84158190371934, -43.27510033166081 -22.841387757355967, -43.27505264177147 -22.841197368645492, -43.27498652016502 -22.84101257113527, -43.274902603628696 -22.84083514452635, -43.2748017003246 -22.84066679753396, -43.27468478200672 -22.84050915143167, -43.27455297466237 -22.840363724437626, -43.274407547668325 -22.840231917093273, -43.27424990156604 -22.840114998775395, -43.274081554573655 -22.840014095471304, -43.273904127964734 -22.839930178934978, -43.27371933045451 -22.839864057328537, -43.27352894174403 -22.839816367439195, -43.27333479538066 -22.839787568546654, -43.2731387611 -22.839777938, -43.27294272681934 -22.839787568546654, -43.27274858045597 -22.839816367439195, -43.27255819174549 -22.839864057328537, -43.27237339423527 -22.839930178934978, -43.272195967626345 -22.840014095471304, -43.27202762063396 -22.840114998775395, -43.271869974531675 -22.840231917093273, -43.27172454753763 -22.840363724437626, -43.27159274019328 -22.84050915143167, -43.2714758218754 -22.84066679753396, -43.271374918571304 -22.84083514452635, -43.27129100203498 -22.84101257113527, -43.271224880428534 -22.841197368645492, -43.27117719053919 -22.841387757355967, -43.271148391646655 -22.84158190371934, -43.2711387611 -22.841777938))" +001147,Penha,Zona Norte,88a8a061b5fffff,TRUE,354,-22.84177794,-43.27313876,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2711387611 -22.841777938, -43.271148391646655 -22.84197397228066, -43.27117719053919 -22.842168118644032, -43.271224880428534 -22.842358507354508, -43.27129100203498 -22.84254330486473, -43.271374918571304 -22.84272073147365, -43.2714758218754 -22.84288907846604, -43.27159274019328 -22.843046724568328, -43.27172454753763 -22.843192151562373, -43.271869974531675 -22.843323958906726, -43.27202762063396 -22.843440877224605, -43.272195967626345 -22.843541780528696, -43.27237339423527 -22.843625697065022, -43.27255819174549 -22.843691818671463, -43.27274858045597 -22.843739508560805, -43.27294272681934 -22.843768307453345, -43.2731387611 -22.843777938, -43.27333479538066 -22.843768307453345, -43.27352894174403 -22.843739508560805, -43.27371933045451 -22.843691818671463, -43.273904127964734 -22.843625697065022, -43.274081554573655 -22.843541780528696, -43.27424990156604 -22.843440877224605, -43.274407547668325 -22.843323958906726, -43.27455297466237 -22.843192151562373, -43.27468478200672 -22.843046724568328, -43.2748017003246 -22.84288907846604, -43.274902603628696 -22.84272073147365, -43.27498652016502 -22.84254330486473, -43.27505264177147 -22.842358507354508, -43.27510033166081 -22.842168118644032, -43.275129130553346 -22.84197397228066, -43.2751387611 -22.841777938, -43.275129130553346 -22.84158190371934, -43.27510033166081 -22.841387757355967, -43.27505264177147 -22.841197368645492, -43.27498652016502 -22.84101257113527, -43.274902603628696 -22.84083514452635, -43.2748017003246 -22.84066679753396, -43.27468478200672 -22.84050915143167, -43.27455297466237 -22.840363724437626, -43.274407547668325 -22.840231917093273, -43.27424990156604 -22.840114998775395, -43.274081554573655 -22.840014095471304, -43.273904127964734 -22.839930178934978, -43.27371933045451 -22.839864057328537, -43.27352894174403 -22.839816367439195, -43.27333479538066 -22.839787568546654, -43.2731387611 -22.839777938, -43.27294272681934 -22.839787568546654, -43.27274858045597 -22.839816367439195, -43.27255819174549 -22.839864057328537, -43.27237339423527 -22.839930178934978, -43.272195967626345 -22.840014095471304, -43.27202762063396 -22.840114998775395, -43.271869974531675 -22.840231917093273, -43.27172454753763 -22.840363724437626, -43.27159274019328 -22.84050915143167, -43.2714758218754 -22.84066679753396, -43.271374918571304 -22.84083514452635, -43.27129100203498 -22.84101257113527, -43.271224880428534 -22.841197368645492, -43.27117719053919 -22.841387757355967, -43.271148391646655 -22.84158190371934, -43.2711387611 -22.841777938))" +001148,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +001149,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +001150,Itanhangá,Barra da Tijuca,88a8a07191fffff,TRUE,350,-23.004144,-43.30396613,PO,J,Rio da Cachoeira,"POLYGON ((-43.3019661326 -23.0041439955, -43.30197576314666 -23.00434002978066, -43.302004562039194 -23.004534176144034, -43.30205225192854 -23.00472456485451, -43.30211837353498 -23.00490936236473, -43.30220229007131 -23.005086788973653, -43.3023031933754 -23.005255135966042, -43.30242011169328 -23.00541278206833, -43.30255191903763 -23.005558209062375, -43.30269734603168 -23.005690016406728, -43.302854992133966 -23.005806934724607, -43.30302333912635 -23.005907838028698, -43.30320076573527 -23.005991754565024, -43.30338556324549 -23.006057876171464, -43.30357595195597 -23.006105566060807, -43.30377009831934 -23.006134364953347, -43.3039661326 -23.0061439955, -43.304162166880666 -23.006134364953347, -43.304356313244035 -23.006105566060807, -43.304546701954514 -23.006057876171464, -43.30473149946474 -23.005991754565024, -43.30490892607366 -23.005907838028698, -43.30507727306604 -23.005806934724607, -43.30523491916833 -23.005690016406728, -43.30538034616237 -23.005558209062375, -43.305512153506726 -23.00541278206833, -43.305629071824605 -23.005255135966042, -43.3057299751287 -23.005086788973653, -43.305813891665025 -23.00490936236473, -43.30588001327147 -23.00472456485451, -43.30592770316081 -23.004534176144034, -43.30595650205335 -23.00434002978066, -43.305966132600005 -23.0041439955, -43.30595650205335 -23.003947961219342, -43.30592770316081 -23.00375381485597, -43.30588001327147 -23.003563426145494, -43.305813891665025 -23.00337862863527, -43.3057299751287 -23.00320120202635, -43.305629071824605 -23.00303285503396, -43.305512153506726 -23.002875208931673, -43.30538034616237 -23.002729781937628, -43.30523491916833 -23.002597974593275, -43.30507727306604 -23.002481056275396, -43.30490892607366 -23.002380152971305, -43.30473149946474 -23.00229623643498, -43.304546701954514 -23.00223011482854, -43.304356313244035 -23.002182424939196, -43.304162166880666 -23.002153626046656, -43.3039661326 -23.002143995500003, -43.30377009831934 -23.002153626046656, -43.30357595195597 -23.002182424939196, -43.30338556324549 -23.00223011482854, -43.30320076573527 -23.00229623643498, -43.30302333912635 -23.002380152971305, -43.302854992133966 -23.002481056275396, -43.30269734603168 -23.002597974593275, -43.30255191903763 -23.002729781937628, -43.30242011169328 -23.002875208931673, -43.3023031933754 -23.00303285503396, -43.30220229007131 -23.00320120202635, -43.30211837353498 -23.00337862863527, -43.30205225192854 -23.003563426145494, -43.302004562039194 -23.00375381485597, -43.30197576314666 -23.003947961219342, -43.3019661326 -23.0041439955))" +001151,Itanhangá,Barra da Tijuca,88a8a07191fffff,TRUE,350,-23.004144,-43.30396613,PO,J,Rio da Cachoeira,"POLYGON ((-43.3019661326 -23.0041439955, -43.30197576314666 -23.00434002978066, -43.302004562039194 -23.004534176144034, -43.30205225192854 -23.00472456485451, -43.30211837353498 -23.00490936236473, -43.30220229007131 -23.005086788973653, -43.3023031933754 -23.005255135966042, -43.30242011169328 -23.00541278206833, -43.30255191903763 -23.005558209062375, -43.30269734603168 -23.005690016406728, -43.302854992133966 -23.005806934724607, -43.30302333912635 -23.005907838028698, -43.30320076573527 -23.005991754565024, -43.30338556324549 -23.006057876171464, -43.30357595195597 -23.006105566060807, -43.30377009831934 -23.006134364953347, -43.3039661326 -23.0061439955, -43.304162166880666 -23.006134364953347, -43.304356313244035 -23.006105566060807, -43.304546701954514 -23.006057876171464, -43.30473149946474 -23.005991754565024, -43.30490892607366 -23.005907838028698, -43.30507727306604 -23.005806934724607, -43.30523491916833 -23.005690016406728, -43.30538034616237 -23.005558209062375, -43.305512153506726 -23.00541278206833, -43.305629071824605 -23.005255135966042, -43.3057299751287 -23.005086788973653, -43.305813891665025 -23.00490936236473, -43.30588001327147 -23.00472456485451, -43.30592770316081 -23.004534176144034, -43.30595650205335 -23.00434002978066, -43.305966132600005 -23.0041439955, -43.30595650205335 -23.003947961219342, -43.30592770316081 -23.00375381485597, -43.30588001327147 -23.003563426145494, -43.305813891665025 -23.00337862863527, -43.3057299751287 -23.00320120202635, -43.305629071824605 -23.00303285503396, -43.305512153506726 -23.002875208931673, -43.30538034616237 -23.002729781937628, -43.30523491916833 -23.002597974593275, -43.30507727306604 -23.002481056275396, -43.30490892607366 -23.002380152971305, -43.30473149946474 -23.00229623643498, -43.304546701954514 -23.00223011482854, -43.304356313244035 -23.002182424939196, -43.304162166880666 -23.002153626046656, -43.3039661326 -23.002143995500003, -43.30377009831934 -23.002153626046656, -43.30357595195597 -23.002182424939196, -43.30338556324549 -23.00223011482854, -43.30320076573527 -23.00229623643498, -43.30302333912635 -23.002380152971305, -43.302854992133966 -23.002481056275396, -43.30269734603168 -23.002597974593275, -43.30255191903763 -23.002729781937628, -43.30242011169328 -23.002875208931673, -43.3023031933754 -23.00303285503396, -43.30220229007131 -23.00320120202635, -43.30211837353498 -23.00337862863527, -43.30205225192854 -23.003563426145494, -43.302004562039194 -23.00375381485597, -43.30197576314666 -23.003947961219342, -43.3019661326 -23.0041439955))" +001152,Lapa,Centro,88a8a06a55fffff,TRUE,352,-22.9123464,-43.18402901,PO,G,Centro,"POLYGON ((-43.1820290111 -22.9123464032, -43.182038641646656 -22.91254243748066, -43.18206744053919 -22.912736583844033, -43.182115130428535 -22.91292697255451, -43.18218125203498 -22.91311177006473, -43.182265168571305 -22.913289196673652, -43.1823660718754 -22.91345754366604, -43.18248299019328 -22.91361518976833, -43.18261479753763 -22.913760616762374, -43.18276022453168 -22.913892424106727, -43.182917870633965 -22.914009342424606, -43.18308621762635 -22.914110245728697, -43.18326364423527 -22.914194162265023, -43.18344844174549 -22.914260283871464, -43.18363883045597 -22.914307973760806, -43.18383297681934 -22.914336772653346, -43.1840290111 -22.9143464032, -43.184225045380664 -22.914336772653346, -43.184419191744034 -22.914307973760806, -43.18460958045451 -22.914260283871464, -43.184794377964735 -22.914194162265023, -43.18497180457366 -22.914110245728697, -43.18514015156604 -22.914009342424606, -43.185297797668326 -22.913892424106727, -43.18544322466237 -22.913760616762374, -43.185575032006724 -22.91361518976833, -43.1856919503246 -22.91345754366604, -43.1857928536287 -22.913289196673652, -43.185876770165024 -22.91311177006473, -43.18594289177147 -22.91292697255451, -43.18599058166081 -22.912736583844033, -43.18601938055335 -22.91254243748066, -43.186029011100004 -22.9123464032, -43.18601938055335 -22.91215036891934, -43.18599058166081 -22.91195622255597, -43.18594289177147 -22.911765833845493, -43.185876770165024 -22.91158103633527, -43.1857928536287 -22.91140360972635, -43.1856919503246 -22.91123526273396, -43.185575032006724 -22.911077616631673, -43.18544322466237 -22.910932189637627, -43.185297797668326 -22.910800382293274, -43.18514015156604 -22.910683463975396, -43.18497180457366 -22.910582560671305, -43.184794377964735 -22.91049864413498, -43.18460958045451 -22.910432522528538, -43.184419191744034 -22.910384832639195, -43.184225045380664 -22.910356033746655, -43.1840290111 -22.910346403200002, -43.18383297681934 -22.910356033746655, -43.18363883045597 -22.910384832639195, -43.18344844174549 -22.910432522528538, -43.18326364423527 -22.91049864413498, -43.18308621762635 -22.910582560671305, -43.182917870633965 -22.910683463975396, -43.18276022453168 -22.910800382293274, -43.18261479753763 -22.910932189637627, -43.18248299019328 -22.911077616631673, -43.1823660718754 -22.91123526273396, -43.182265168571305 -22.91140360972635, -43.18218125203498 -22.91158103633527, -43.182115130428535 -22.911765833845493, -43.18206744053919 -22.91195622255597, -43.182038641646656 -22.91215036891934, -43.1820290111 -22.9123464032))" +001154,Centro,Centro,88a8a06a55fffff,,,,,,,, +001156,Glória,Centro,88a8a06a47fffff,,,,,,,, +001157,Glória,Centro,88a8a06a47fffff,,,,,,,, +001158,Glória,Centro,88a8a06a47fffff,,,,,,,, +001159,Glória,Centro,88a8a06a47fffff,,,,,,,, +001160,Madureira,Zona Norte,88a8a0608dfffff,,,,,,,, +001161,Lapa,Centro,88a8a06a09fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +001162,Lapa,Centro,88a8a06a09fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +001163,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001164,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001167,Centro,Centro,88a8a06a55fffff,TRUE,352,-22.9123464,-43.18402901,PO,G,Centro,"POLYGON ((-43.1820290111 -22.9123464032, -43.182038641646656 -22.91254243748066, -43.18206744053919 -22.912736583844033, -43.182115130428535 -22.91292697255451, -43.18218125203498 -22.91311177006473, -43.182265168571305 -22.913289196673652, -43.1823660718754 -22.91345754366604, -43.18248299019328 -22.91361518976833, -43.18261479753763 -22.913760616762374, -43.18276022453168 -22.913892424106727, -43.182917870633965 -22.914009342424606, -43.18308621762635 -22.914110245728697, -43.18326364423527 -22.914194162265023, -43.18344844174549 -22.914260283871464, -43.18363883045597 -22.914307973760806, -43.18383297681934 -22.914336772653346, -43.1840290111 -22.9143464032, -43.184225045380664 -22.914336772653346, -43.184419191744034 -22.914307973760806, -43.18460958045451 -22.914260283871464, -43.184794377964735 -22.914194162265023, -43.18497180457366 -22.914110245728697, -43.18514015156604 -22.914009342424606, -43.185297797668326 -22.913892424106727, -43.18544322466237 -22.913760616762374, -43.185575032006724 -22.91361518976833, -43.1856919503246 -22.91345754366604, -43.1857928536287 -22.913289196673652, -43.185876770165024 -22.91311177006473, -43.18594289177147 -22.91292697255451, -43.18599058166081 -22.912736583844033, -43.18601938055335 -22.91254243748066, -43.186029011100004 -22.9123464032, -43.18601938055335 -22.91215036891934, -43.18599058166081 -22.91195622255597, -43.18594289177147 -22.911765833845493, -43.185876770165024 -22.91158103633527, -43.1857928536287 -22.91140360972635, -43.1856919503246 -22.91123526273396, -43.185575032006724 -22.911077616631673, -43.18544322466237 -22.910932189637627, -43.185297797668326 -22.910800382293274, -43.18514015156604 -22.910683463975396, -43.18497180457366 -22.910582560671305, -43.184794377964735 -22.91049864413498, -43.18460958045451 -22.910432522528538, -43.184419191744034 -22.910384832639195, -43.184225045380664 -22.910356033746655, -43.1840290111 -22.910346403200002, -43.18383297681934 -22.910356033746655, -43.18363883045597 -22.910384832639195, -43.18344844174549 -22.910432522528538, -43.18326364423527 -22.91049864413498, -43.18308621762635 -22.910582560671305, -43.182917870633965 -22.910683463975396, -43.18276022453168 -22.910800382293274, -43.18261479753763 -22.910932189637627, -43.18248299019328 -22.911077616631673, -43.1823660718754 -22.91123526273396, -43.182265168571305 -22.91140360972635, -43.18218125203498 -22.91158103633527, -43.182115130428535 -22.911765833845493, -43.18206744053919 -22.91195622255597, -43.182038641646656 -22.91215036891934, -43.1820290111 -22.9123464032))" +001168,Centro,Centro,88a8a06a55fffff,,,,,,,, +001169,Lapa,Centro,88a8a06a55fffff,TRUE,8,-22.91075391,-43.18498125,PC,G,Marina da Glória,"POLYGON ((-43.1829812477 -22.9107539132, -43.182990878246656 -22.91094994748066, -43.18301967713919 -22.911144093844033, -43.183067367028535 -22.91133448255451, -43.18313348863498 -22.91151928006473, -43.183217405171305 -22.911696706673652, -43.1833183084754 -22.91186505366604, -43.18343522679328 -22.91202269976833, -43.18356703413763 -22.912168126762374, -43.18371246113168 -22.912299934106727, -43.183870107233965 -22.912416852424606, -43.18403845422635 -22.912517755728697, -43.18421588083527 -22.912601672265023, -43.18440067834549 -22.912667793871464, -43.18459106705597 -22.912715483760806, -43.18478521341934 -22.912744282653346, -43.1849812477 -22.9127539132, -43.185177281980664 -22.912744282653346, -43.185371428344034 -22.912715483760806, -43.18556181705451 -22.912667793871464, -43.185746614564735 -22.912601672265023, -43.18592404117366 -22.912517755728697, -43.18609238816604 -22.912416852424606, -43.186250034268326 -22.912299934106727, -43.18639546126237 -22.912168126762374, -43.186527268606724 -22.91202269976833, -43.1866441869246 -22.91186505366604, -43.1867450902287 -22.911696706673652, -43.186829006765024 -22.91151928006473, -43.18689512837147 -22.91133448255451, -43.18694281826081 -22.911144093844033, -43.18697161715335 -22.91094994748066, -43.186981247700004 -22.9107539132, -43.18697161715335 -22.91055787891934, -43.18694281826081 -22.910363732555968, -43.18689512837147 -22.910173343845493, -43.186829006765024 -22.90998854633527, -43.1867450902287 -22.90981111972635, -43.1866441869246 -22.90964277273396, -43.186527268606724 -22.909485126631672, -43.18639546126237 -22.909339699637627, -43.186250034268326 -22.909207892293274, -43.18609238816604 -22.909090973975395, -43.18592404117366 -22.908990070671305, -43.185746614564735 -22.90890615413498, -43.18556181705451 -22.908840032528538, -43.185371428344034 -22.908792342639195, -43.185177281980664 -22.908763543746655, -43.1849812477 -22.9087539132, -43.18478521341934 -22.908763543746655, -43.18459106705597 -22.908792342639195, -43.18440067834549 -22.908840032528538, -43.18421588083527 -22.90890615413498, -43.18403845422635 -22.908990070671305, -43.183870107233965 -22.909090973975395, -43.18371246113168 -22.909207892293274, -43.18356703413763 -22.909339699637627, -43.18343522679328 -22.909485126631672, -43.1833183084754 -22.90964277273396, -43.183217405171305 -22.90981111972635, -43.18313348863498 -22.90998854633527, -43.183067367028535 -22.910173343845493, -43.18301967713919 -22.910363732555968, -43.182990878246656 -22.91055787891934, -43.1829812477 -22.9107539132))" +001170,Lapa,Centro,88a8a06a55fffff,TRUE,8,-22.91075391,-43.18498125,PC,G,Marina da Glória,"POLYGON ((-43.1829812477 -22.9107539132, -43.182990878246656 -22.91094994748066, -43.18301967713919 -22.911144093844033, -43.183067367028535 -22.91133448255451, -43.18313348863498 -22.91151928006473, -43.183217405171305 -22.911696706673652, -43.1833183084754 -22.91186505366604, -43.18343522679328 -22.91202269976833, -43.18356703413763 -22.912168126762374, -43.18371246113168 -22.912299934106727, -43.183870107233965 -22.912416852424606, -43.18403845422635 -22.912517755728697, -43.18421588083527 -22.912601672265023, -43.18440067834549 -22.912667793871464, -43.18459106705597 -22.912715483760806, -43.18478521341934 -22.912744282653346, -43.1849812477 -22.9127539132, -43.185177281980664 -22.912744282653346, -43.185371428344034 -22.912715483760806, -43.18556181705451 -22.912667793871464, -43.185746614564735 -22.912601672265023, -43.18592404117366 -22.912517755728697, -43.18609238816604 -22.912416852424606, -43.186250034268326 -22.912299934106727, -43.18639546126237 -22.912168126762374, -43.186527268606724 -22.91202269976833, -43.1866441869246 -22.91186505366604, -43.1867450902287 -22.911696706673652, -43.186829006765024 -22.91151928006473, -43.18689512837147 -22.91133448255451, -43.18694281826081 -22.911144093844033, -43.18697161715335 -22.91094994748066, -43.186981247700004 -22.9107539132, -43.18697161715335 -22.91055787891934, -43.18694281826081 -22.910363732555968, -43.18689512837147 -22.910173343845493, -43.186829006765024 -22.90998854633527, -43.1867450902287 -22.90981111972635, -43.1866441869246 -22.90964277273396, -43.186527268606724 -22.909485126631672, -43.18639546126237 -22.909339699637627, -43.186250034268326 -22.909207892293274, -43.18609238816604 -22.909090973975395, -43.18592404117366 -22.908990070671305, -43.185746614564735 -22.90890615413498, -43.18556181705451 -22.908840032528538, -43.185371428344034 -22.908792342639195, -43.185177281980664 -22.908763543746655, -43.1849812477 -22.9087539132, -43.18478521341934 -22.908763543746655, -43.18459106705597 -22.908792342639195, -43.18440067834549 -22.908840032528538, -43.18421588083527 -22.90890615413498, -43.18403845422635 -22.908990070671305, -43.183870107233965 -22.909090973975395, -43.18371246113168 -22.909207892293274, -43.18356703413763 -22.909339699637627, -43.18343522679328 -22.909485126631672, -43.1833183084754 -22.90964277273396, -43.183217405171305 -22.90981111972635, -43.18313348863498 -22.90998854633527, -43.183067367028535 -22.910173343845493, -43.18301967713919 -22.910363732555968, -43.182990878246656 -22.91055787891934, -43.1829812477 -22.9107539132))" +001171,Estácio,Centro,88a8a06a5bfffff,,,,,,,, +001172,Estácio,Centro,88a8a06a5bfffff,,,,,,,, +001173,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001174,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001175,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +001176,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +001177,Leme,Zona Sul,88a8a078e5fffff,TRUE,93,-22.9624021,-43.16993847,PC,ZS,Praia de Copacabana,"POLYGON ((-43.1679384705 -22.9624020977, -43.167948101046655 -22.96259813198066, -43.16797689993919 -22.962792278344033, -43.16802458982853 -22.962982667054508, -43.16809071143498 -22.96316746456473, -43.168174627971304 -22.96334489117365, -43.1682755312754 -22.96351323816604, -43.16839244959328 -22.96367088426833, -43.16852425693763 -22.963816311262374, -43.168669683931675 -22.963948118606726, -43.16882733003396 -22.964065036924605, -43.168995677026345 -22.964165940228696, -43.169173103635266 -22.964249856765022, -43.16935790114549 -22.964315978371463, -43.16954828985597 -22.964363668260805, -43.16974243621934 -22.964392467153345, -43.1699384705 -22.9644020977, -43.17013450478066 -22.964392467153345, -43.17032865114403 -22.964363668260805, -43.17051903985451 -22.964315978371463, -43.170703837364734 -22.964249856765022, -43.170881263973655 -22.964165940228696, -43.17104961096604 -22.964065036924605, -43.171207257068325 -22.963948118606726, -43.17135268406237 -22.963816311262374, -43.17148449140672 -22.96367088426833, -43.1716014097246 -22.96351323816604, -43.171702313028696 -22.96334489117365, -43.17178622956502 -22.96316746456473, -43.17185235117147 -22.962982667054508, -43.17190004106081 -22.962792278344033, -43.171928839953345 -22.96259813198066, -43.1719384705 -22.9624020977, -43.171928839953345 -22.96220606341934, -43.17190004106081 -22.962011917055968, -43.17185235117147 -22.961821528345492, -43.17178622956502 -22.96163673083527, -43.171702313028696 -22.96145930422635, -43.1716014097246 -22.96129095723396, -43.17148449140672 -22.96113331113167, -43.17135268406237 -22.960987884137626, -43.171207257068325 -22.960856076793274, -43.17104961096604 -22.960739158475395, -43.170881263973655 -22.960638255171304, -43.170703837364734 -22.960554338634978, -43.17051903985451 -22.960488217028537, -43.17032865114403 -22.960440527139195, -43.17013450478066 -22.960411728246655, -43.1699384705 -22.9604020977, -43.16974243621934 -22.960411728246655, -43.16954828985597 -22.960440527139195, -43.16935790114549 -22.960488217028537, -43.169173103635266 -22.960554338634978, -43.168995677026345 -22.960638255171304, -43.16882733003396 -22.960739158475395, -43.168669683931675 -22.960856076793274, -43.16852425693763 -22.960987884137626, -43.16839244959328 -22.96113331113167, -43.1682755312754 -22.96129095723396, -43.168174627971304 -22.96145930422635, -43.16809071143498 -22.96163673083527, -43.16802458982853 -22.961821528345492, -43.16797689993919 -22.962011917055968, -43.167948101046655 -22.96220606341934, -43.1679384705 -22.9624020977))" +001178,Leme,Zona Sul,88a8a078e5fffff,TRUE,93,-22.9624021,-43.16993847,PC,ZS,Praia de Copacabana,"POLYGON ((-43.1679384705 -22.9624020977, -43.167948101046655 -22.96259813198066, -43.16797689993919 -22.962792278344033, -43.16802458982853 -22.962982667054508, -43.16809071143498 -22.96316746456473, -43.168174627971304 -22.96334489117365, -43.1682755312754 -22.96351323816604, -43.16839244959328 -22.96367088426833, -43.16852425693763 -22.963816311262374, -43.168669683931675 -22.963948118606726, -43.16882733003396 -22.964065036924605, -43.168995677026345 -22.964165940228696, -43.169173103635266 -22.964249856765022, -43.16935790114549 -22.964315978371463, -43.16954828985597 -22.964363668260805, -43.16974243621934 -22.964392467153345, -43.1699384705 -22.9644020977, -43.17013450478066 -22.964392467153345, -43.17032865114403 -22.964363668260805, -43.17051903985451 -22.964315978371463, -43.170703837364734 -22.964249856765022, -43.170881263973655 -22.964165940228696, -43.17104961096604 -22.964065036924605, -43.171207257068325 -22.963948118606726, -43.17135268406237 -22.963816311262374, -43.17148449140672 -22.96367088426833, -43.1716014097246 -22.96351323816604, -43.171702313028696 -22.96334489117365, -43.17178622956502 -22.96316746456473, -43.17185235117147 -22.962982667054508, -43.17190004106081 -22.962792278344033, -43.171928839953345 -22.96259813198066, -43.1719384705 -22.9624020977, -43.171928839953345 -22.96220606341934, -43.17190004106081 -22.962011917055968, -43.17185235117147 -22.961821528345492, -43.17178622956502 -22.96163673083527, -43.171702313028696 -22.96145930422635, -43.1716014097246 -22.96129095723396, -43.17148449140672 -22.96113331113167, -43.17135268406237 -22.960987884137626, -43.171207257068325 -22.960856076793274, -43.17104961096604 -22.960739158475395, -43.170881263973655 -22.960638255171304, -43.170703837364734 -22.960554338634978, -43.17051903985451 -22.960488217028537, -43.17032865114403 -22.960440527139195, -43.17013450478066 -22.960411728246655, -43.1699384705 -22.9604020977, -43.16974243621934 -22.960411728246655, -43.16954828985597 -22.960440527139195, -43.16935790114549 -22.960488217028537, -43.169173103635266 -22.960554338634978, -43.168995677026345 -22.960638255171304, -43.16882733003396 -22.960739158475395, -43.168669683931675 -22.960856076793274, -43.16852425693763 -22.960987884137626, -43.16839244959328 -22.96113331113167, -43.1682755312754 -22.96129095723396, -43.168174627971304 -22.96145930422635, -43.16809071143498 -22.96163673083527, -43.16802458982853 -22.961821528345492, -43.16797689993919 -22.962011917055968, -43.167948101046655 -22.96220606341934, -43.1679384705 -22.9624020977))" +001179,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001180,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001181,Botafogo,Zona Sul,88a8a0788dfffff,TRUE,61,-22.95778211,-43.1908425,PC,G,Botafogo,"POLYGON ((-43.1888425032 -22.9577821066, -43.18885213374666 -22.95797814088066, -43.188880932639194 -22.958172287244032, -43.188928622528536 -22.958362675954508, -43.18899474413498 -22.95854747346473, -43.189078660671306 -22.95872490007365, -43.1891795639754 -22.95889324706604, -43.18929648229328 -22.959050893168328, -43.18942828963763 -22.959196320162373, -43.18957371663168 -22.959328127506726, -43.189731362733966 -22.959445045824605, -43.18989970972635 -22.959545949128696, -43.19007713633527 -22.959629865665022, -43.19026193384549 -22.959695987271463, -43.19045232255597 -22.959743677160805, -43.19064646891934 -22.959772476053345, -43.1908425032 -22.9597821066, -43.191038537480665 -22.959772476053345, -43.191232683844035 -22.959743677160805, -43.191423072554514 -22.959695987271463, -43.191607870064736 -22.959629865665022, -43.19178529667366 -22.959545949128696, -43.19195364366604 -22.959445045824605, -43.19211128976833 -22.959328127506726, -43.19225671676237 -22.959196320162373, -43.192388524106725 -22.959050893168328, -43.192505442424604 -22.95889324706604, -43.1926063457287 -22.95872490007365, -43.192690262265025 -22.95854747346473, -43.19275638387147 -22.958362675954508, -43.19280407376081 -22.958172287244032, -43.19283287265335 -22.95797814088066, -43.192842503200005 -22.9577821066, -43.19283287265335 -22.95758607231934, -43.19280407376081 -22.957391925955967, -43.19275638387147 -22.957201537245492, -43.192690262265025 -22.95701673973527, -43.1926063457287 -22.95683931312635, -43.192505442424604 -22.95667096613396, -43.192388524106725 -22.95651332003167, -43.19225671676237 -22.956367893037626, -43.19211128976833 -22.956236085693273, -43.19195364366604 -22.956119167375395, -43.19178529667366 -22.956018264071304, -43.191607870064736 -22.955934347534978, -43.191423072554514 -22.955868225928537, -43.191232683844035 -22.955820536039194, -43.191038537480665 -22.955791737146654, -43.1908425032 -22.9557821066, -43.19064646891934 -22.955791737146654, -43.19045232255597 -22.955820536039194, -43.19026193384549 -22.955868225928537, -43.19007713633527 -22.955934347534978, -43.18989970972635 -22.956018264071304, -43.189731362733966 -22.956119167375395, -43.18957371663168 -22.956236085693273, -43.18942828963763 -22.956367893037626, -43.18929648229328 -22.95651332003167, -43.1891795639754 -22.95667096613396, -43.189078660671306 -22.95683931312635, -43.18899474413498 -22.95701673973527, -43.188928622528536 -22.957201537245492, -43.188880932639194 -22.957391925955967, -43.18885213374666 -22.95758607231934, -43.1888425032 -22.9577821066))" +001182,Botafogo,Zona Sul,88a8a0788dfffff,TRUE,61,-22.95778211,-43.1908425,PC,G,Botafogo,"POLYGON ((-43.1888425032 -22.9577821066, -43.18885213374666 -22.95797814088066, -43.188880932639194 -22.958172287244032, -43.188928622528536 -22.958362675954508, -43.18899474413498 -22.95854747346473, -43.189078660671306 -22.95872490007365, -43.1891795639754 -22.95889324706604, -43.18929648229328 -22.959050893168328, -43.18942828963763 -22.959196320162373, -43.18957371663168 -22.959328127506726, -43.189731362733966 -22.959445045824605, -43.18989970972635 -22.959545949128696, -43.19007713633527 -22.959629865665022, -43.19026193384549 -22.959695987271463, -43.19045232255597 -22.959743677160805, -43.19064646891934 -22.959772476053345, -43.1908425032 -22.9597821066, -43.191038537480665 -22.959772476053345, -43.191232683844035 -22.959743677160805, -43.191423072554514 -22.959695987271463, -43.191607870064736 -22.959629865665022, -43.19178529667366 -22.959545949128696, -43.19195364366604 -22.959445045824605, -43.19211128976833 -22.959328127506726, -43.19225671676237 -22.959196320162373, -43.192388524106725 -22.959050893168328, -43.192505442424604 -22.95889324706604, -43.1926063457287 -22.95872490007365, -43.192690262265025 -22.95854747346473, -43.19275638387147 -22.958362675954508, -43.19280407376081 -22.958172287244032, -43.19283287265335 -22.95797814088066, -43.192842503200005 -22.9577821066, -43.19283287265335 -22.95758607231934, -43.19280407376081 -22.957391925955967, -43.19275638387147 -22.957201537245492, -43.192690262265025 -22.95701673973527, -43.1926063457287 -22.95683931312635, -43.192505442424604 -22.95667096613396, -43.192388524106725 -22.95651332003167, -43.19225671676237 -22.956367893037626, -43.19211128976833 -22.956236085693273, -43.19195364366604 -22.956119167375395, -43.19178529667366 -22.956018264071304, -43.191607870064736 -22.955934347534978, -43.191423072554514 -22.955868225928537, -43.191232683844035 -22.955820536039194, -43.191038537480665 -22.955791737146654, -43.1908425032 -22.9557821066, -43.19064646891934 -22.955791737146654, -43.19045232255597 -22.955820536039194, -43.19026193384549 -22.955868225928537, -43.19007713633527 -22.955934347534978, -43.18989970972635 -22.956018264071304, -43.189731362733966 -22.956119167375395, -43.18957371663168 -22.956236085693273, -43.18942828963763 -22.956367893037626, -43.18929648229328 -22.95651332003167, -43.1891795639754 -22.95667096613396, -43.189078660671306 -22.95683931312635, -43.18899474413498 -22.95701673973527, -43.188928622528536 -22.957201537245492, -43.188880932639194 -22.957391925955967, -43.18885213374666 -22.95758607231934, -43.1888425032 -22.9577821066))" +001184,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001185,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001186,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001187,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001188,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001189,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001190,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001191,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001192,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001193,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001194,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001195,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001196,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001197,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001198,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001199,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001200,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001201,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001202,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001203,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001204,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001205,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001206,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001207,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001208,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001209,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001210,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001211,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001212,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001213,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001214,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001215,Botafogo,Zona Sul,88a8a0788dfffff,TRUE,61,-22.95778211,-43.1908425,PC,G,Botafogo,"POLYGON ((-43.1888425032 -22.9577821066, -43.18885213374666 -22.95797814088066, -43.188880932639194 -22.958172287244032, -43.188928622528536 -22.958362675954508, -43.18899474413498 -22.95854747346473, -43.189078660671306 -22.95872490007365, -43.1891795639754 -22.95889324706604, -43.18929648229328 -22.959050893168328, -43.18942828963763 -22.959196320162373, -43.18957371663168 -22.959328127506726, -43.189731362733966 -22.959445045824605, -43.18989970972635 -22.959545949128696, -43.19007713633527 -22.959629865665022, -43.19026193384549 -22.959695987271463, -43.19045232255597 -22.959743677160805, -43.19064646891934 -22.959772476053345, -43.1908425032 -22.9597821066, -43.191038537480665 -22.959772476053345, -43.191232683844035 -22.959743677160805, -43.191423072554514 -22.959695987271463, -43.191607870064736 -22.959629865665022, -43.19178529667366 -22.959545949128696, -43.19195364366604 -22.959445045824605, -43.19211128976833 -22.959328127506726, -43.19225671676237 -22.959196320162373, -43.192388524106725 -22.959050893168328, -43.192505442424604 -22.95889324706604, -43.1926063457287 -22.95872490007365, -43.192690262265025 -22.95854747346473, -43.19275638387147 -22.958362675954508, -43.19280407376081 -22.958172287244032, -43.19283287265335 -22.95797814088066, -43.192842503200005 -22.9577821066, -43.19283287265335 -22.95758607231934, -43.19280407376081 -22.957391925955967, -43.19275638387147 -22.957201537245492, -43.192690262265025 -22.95701673973527, -43.1926063457287 -22.95683931312635, -43.192505442424604 -22.95667096613396, -43.192388524106725 -22.95651332003167, -43.19225671676237 -22.956367893037626, -43.19211128976833 -22.956236085693273, -43.19195364366604 -22.956119167375395, -43.19178529667366 -22.956018264071304, -43.191607870064736 -22.955934347534978, -43.191423072554514 -22.955868225928537, -43.191232683844035 -22.955820536039194, -43.191038537480665 -22.955791737146654, -43.1908425032 -22.9557821066, -43.19064646891934 -22.955791737146654, -43.19045232255597 -22.955820536039194, -43.19026193384549 -22.955868225928537, -43.19007713633527 -22.955934347534978, -43.18989970972635 -22.956018264071304, -43.189731362733966 -22.956119167375395, -43.18957371663168 -22.956236085693273, -43.18942828963763 -22.956367893037626, -43.18929648229328 -22.95651332003167, -43.1891795639754 -22.95667096613396, -43.189078660671306 -22.95683931312635, -43.18899474413498 -22.95701673973527, -43.188928622528536 -22.957201537245492, -43.188880932639194 -22.957391925955967, -43.18885213374666 -22.95758607231934, -43.1888425032 -22.9577821066))" +001216,Botafogo,Zona Sul,88a8a0788dfffff,TRUE,61,-22.95778211,-43.1908425,PC,G,Botafogo,"POLYGON ((-43.1888425032 -22.9577821066, -43.18885213374666 -22.95797814088066, -43.188880932639194 -22.958172287244032, -43.188928622528536 -22.958362675954508, -43.18899474413498 -22.95854747346473, -43.189078660671306 -22.95872490007365, -43.1891795639754 -22.95889324706604, -43.18929648229328 -22.959050893168328, -43.18942828963763 -22.959196320162373, -43.18957371663168 -22.959328127506726, -43.189731362733966 -22.959445045824605, -43.18989970972635 -22.959545949128696, -43.19007713633527 -22.959629865665022, -43.19026193384549 -22.959695987271463, -43.19045232255597 -22.959743677160805, -43.19064646891934 -22.959772476053345, -43.1908425032 -22.9597821066, -43.191038537480665 -22.959772476053345, -43.191232683844035 -22.959743677160805, -43.191423072554514 -22.959695987271463, -43.191607870064736 -22.959629865665022, -43.19178529667366 -22.959545949128696, -43.19195364366604 -22.959445045824605, -43.19211128976833 -22.959328127506726, -43.19225671676237 -22.959196320162373, -43.192388524106725 -22.959050893168328, -43.192505442424604 -22.95889324706604, -43.1926063457287 -22.95872490007365, -43.192690262265025 -22.95854747346473, -43.19275638387147 -22.958362675954508, -43.19280407376081 -22.958172287244032, -43.19283287265335 -22.95797814088066, -43.192842503200005 -22.9577821066, -43.19283287265335 -22.95758607231934, -43.19280407376081 -22.957391925955967, -43.19275638387147 -22.957201537245492, -43.192690262265025 -22.95701673973527, -43.1926063457287 -22.95683931312635, -43.192505442424604 -22.95667096613396, -43.192388524106725 -22.95651332003167, -43.19225671676237 -22.956367893037626, -43.19211128976833 -22.956236085693273, -43.19195364366604 -22.956119167375395, -43.19178529667366 -22.956018264071304, -43.191607870064736 -22.955934347534978, -43.191423072554514 -22.955868225928537, -43.191232683844035 -22.955820536039194, -43.191038537480665 -22.955791737146654, -43.1908425032 -22.9557821066, -43.19064646891934 -22.955791737146654, -43.19045232255597 -22.955820536039194, -43.19026193384549 -22.955868225928537, -43.19007713633527 -22.955934347534978, -43.18989970972635 -22.956018264071304, -43.189731362733966 -22.956119167375395, -43.18957371663168 -22.956236085693273, -43.18942828963763 -22.956367893037626, -43.18929648229328 -22.95651332003167, -43.1891795639754 -22.95667096613396, -43.189078660671306 -22.95683931312635, -43.18899474413498 -22.95701673973527, -43.188928622528536 -22.957201537245492, -43.188880932639194 -22.957391925955967, -43.18885213374666 -22.95758607231934, -43.1888425032 -22.9577821066))" +001217,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +001218,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +001219,Leme,Zona Sul,88a8a078e5fffff,,,,,,,, +001220,Leme,Zona Sul,88a8a078e5fffff,,,,,,,, +001221,Copacabana,Zona Sul,88a8a078ebfffff,TRUE,265,-22.96628272,-43.18872546,PO,ZS,Praia de Copacabana,"POLYGON ((-43.186725463399995 -22.9662827216, -43.18673509394665 -22.966478755880658, -43.18676389283919 -22.96667290224403, -43.18681158272853 -22.966863290954507, -43.186877704334975 -22.96704808846473, -43.1869616208713 -22.96722551507365, -43.187062524175396 -22.96739386206604, -43.187179442493274 -22.967551508168327, -43.18731124983763 -22.967696935162373, -43.18745667683167 -22.967828742506725, -43.18761432293396 -22.967945660824604, -43.18778266992634 -22.968046564128695, -43.187960096535264 -22.96813048066502, -43.188144894045486 -22.968196602271462, -43.188335282755965 -22.968244292160804, -43.188529429119335 -22.968273091053344, -43.1887254634 -22.968282721599998, -43.18892149768066 -22.968273091053344, -43.18911564404403 -22.968244292160804, -43.18930603275451 -22.968196602271462, -43.18949083026473 -22.96813048066502, -43.18966825687365 -22.968046564128695, -43.189836603866034 -22.967945660824604, -43.18999424996832 -22.967828742506725, -43.19013967696237 -22.967696935162373, -43.19027148430672 -22.967551508168327, -43.1903884026246 -22.96739386206604, -43.19048930592869 -22.96722551507365, -43.19057322246502 -22.96704808846473, -43.190639344071464 -22.966863290954507, -43.190687033960806 -22.96667290224403, -43.19071583285334 -22.966478755880658, -43.1907254634 -22.9662827216, -43.19071583285334 -22.96608668731934, -43.190687033960806 -22.965892540955966, -43.190639344071464 -22.96570215224549, -43.19057322246502 -22.96551735473527, -43.19048930592869 -22.965339928126348, -43.1903884026246 -22.96517158113396, -43.19027148430672 -22.96501393503167, -43.19013967696237 -22.964868508037625, -43.18999424996832 -22.964736700693273, -43.189836603866034 -22.964619782375394, -43.18966825687365 -22.964518879071303, -43.18949083026473 -22.964434962534977, -43.18930603275451 -22.964368840928536, -43.18911564404403 -22.964321151039194, -43.18892149768066 -22.964292352146654, -43.1887254634 -22.9642827216, -43.188529429119335 -22.964292352146654, -43.188335282755965 -22.964321151039194, -43.188144894045486 -22.964368840928536, -43.187960096535264 -22.964434962534977, -43.18778266992634 -22.964518879071303, -43.18761432293396 -22.964619782375394, -43.18745667683167 -22.964736700693273, -43.18731124983763 -22.964868508037625, -43.187179442493274 -22.96501393503167, -43.187062524175396 -22.96517158113396, -43.1869616208713 -22.965339928126348, -43.186877704334975 -22.96551735473527, -43.18681158272853 -22.96570215224549, -43.18676389283919 -22.965892540955966, -43.18673509394665 -22.96608668731934, -43.186725463399995 -22.9662827216))" +001222,Copacabana,Zona Sul,88a8a078ebfffff,TRUE,265,-22.96628272,-43.18872546,PO,ZS,Praia de Copacabana,"POLYGON ((-43.186725463399995 -22.9662827216, -43.18673509394665 -22.966478755880658, -43.18676389283919 -22.96667290224403, -43.18681158272853 -22.966863290954507, -43.186877704334975 -22.96704808846473, -43.1869616208713 -22.96722551507365, -43.187062524175396 -22.96739386206604, -43.187179442493274 -22.967551508168327, -43.18731124983763 -22.967696935162373, -43.18745667683167 -22.967828742506725, -43.18761432293396 -22.967945660824604, -43.18778266992634 -22.968046564128695, -43.187960096535264 -22.96813048066502, -43.188144894045486 -22.968196602271462, -43.188335282755965 -22.968244292160804, -43.188529429119335 -22.968273091053344, -43.1887254634 -22.968282721599998, -43.18892149768066 -22.968273091053344, -43.18911564404403 -22.968244292160804, -43.18930603275451 -22.968196602271462, -43.18949083026473 -22.96813048066502, -43.18966825687365 -22.968046564128695, -43.189836603866034 -22.967945660824604, -43.18999424996832 -22.967828742506725, -43.19013967696237 -22.967696935162373, -43.19027148430672 -22.967551508168327, -43.1903884026246 -22.96739386206604, -43.19048930592869 -22.96722551507365, -43.19057322246502 -22.96704808846473, -43.190639344071464 -22.966863290954507, -43.190687033960806 -22.96667290224403, -43.19071583285334 -22.966478755880658, -43.1907254634 -22.9662827216, -43.19071583285334 -22.96608668731934, -43.190687033960806 -22.965892540955966, -43.190639344071464 -22.96570215224549, -43.19057322246502 -22.96551735473527, -43.19048930592869 -22.965339928126348, -43.1903884026246 -22.96517158113396, -43.19027148430672 -22.96501393503167, -43.19013967696237 -22.964868508037625, -43.18999424996832 -22.964736700693273, -43.189836603866034 -22.964619782375394, -43.18966825687365 -22.964518879071303, -43.18949083026473 -22.964434962534977, -43.18930603275451 -22.964368840928536, -43.18911564404403 -22.964321151039194, -43.18892149768066 -22.964292352146654, -43.1887254634 -22.9642827216, -43.188529429119335 -22.964292352146654, -43.188335282755965 -22.964321151039194, -43.188144894045486 -22.964368840928536, -43.187960096535264 -22.964434962534977, -43.18778266992634 -22.964518879071303, -43.18761432293396 -22.964619782375394, -43.18745667683167 -22.964736700693273, -43.18731124983763 -22.964868508037625, -43.187179442493274 -22.96501393503167, -43.187062524175396 -22.96517158113396, -43.1869616208713 -22.965339928126348, -43.186877704334975 -22.96551735473527, -43.18681158272853 -22.96570215224549, -43.18676389283919 -22.965892540955966, -43.18673509394665 -22.96608668731934, -43.186725463399995 -22.9662827216))" +001223,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001226,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001227,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001228,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001229,Leme,Zona Sul,88a8a078e5fffff,,,,,,,, +001230,Leme,Zona Sul,88a8a078e5fffff,,,,,,,, +001231,Leme,Zona Sul,88a8a078e5fffff,,,,,,,, +001232,Leme,Zona Sul,88a8a078e5fffff,,,,,,,, +001233,Leme,Zona Sul,88a8a078e5fffff,,,,,,,, +001234,Leme,Zona Sul,88a8a078e5fffff,,,,,,,, +001235,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001236,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001238,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001239,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001240,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001241,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001242,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001243,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001244,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001245,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001246,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001247,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001248,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001249,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001250,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001251,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001252,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001253,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001254,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001255,Botafogo,Zona Sul,88a8a078e7fffff,,,,,,,, +001256,Botafogo,Zona Sul,88a8a078e7fffff,,,,,,,, +001261,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001262,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001263,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001264,Botafogo,Zona Sul,88a8a078a9fffff,,,,,,,, +001266,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744dfffff,,,,,,,, +001267,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744dfffff,,,,,,,, +001269,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744dfffff,,,,,,,, +001270,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744dfffff,,,,,,,, +001271,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744dfffff,,,,,,,, +001274,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +001275,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001278,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001279,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001280,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001282,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001283,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001284,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001285,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001286,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001287,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001289,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07445fffff,,,,,,,, +001294,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +001296,Copacabana,Zona Sul,88a8a078ebfffff,TRUE,265,-22.96628272,-43.18872546,PO,ZS,Praia de Copacabana,"POLYGON ((-43.186725463399995 -22.9662827216, -43.18673509394665 -22.966478755880658, -43.18676389283919 -22.96667290224403, -43.18681158272853 -22.966863290954507, -43.186877704334975 -22.96704808846473, -43.1869616208713 -22.96722551507365, -43.187062524175396 -22.96739386206604, -43.187179442493274 -22.967551508168327, -43.18731124983763 -22.967696935162373, -43.18745667683167 -22.967828742506725, -43.18761432293396 -22.967945660824604, -43.18778266992634 -22.968046564128695, -43.187960096535264 -22.96813048066502, -43.188144894045486 -22.968196602271462, -43.188335282755965 -22.968244292160804, -43.188529429119335 -22.968273091053344, -43.1887254634 -22.968282721599998, -43.18892149768066 -22.968273091053344, -43.18911564404403 -22.968244292160804, -43.18930603275451 -22.968196602271462, -43.18949083026473 -22.96813048066502, -43.18966825687365 -22.968046564128695, -43.189836603866034 -22.967945660824604, -43.18999424996832 -22.967828742506725, -43.19013967696237 -22.967696935162373, -43.19027148430672 -22.967551508168327, -43.1903884026246 -22.96739386206604, -43.19048930592869 -22.96722551507365, -43.19057322246502 -22.96704808846473, -43.190639344071464 -22.966863290954507, -43.190687033960806 -22.96667290224403, -43.19071583285334 -22.966478755880658, -43.1907254634 -22.9662827216, -43.19071583285334 -22.96608668731934, -43.190687033960806 -22.965892540955966, -43.190639344071464 -22.96570215224549, -43.19057322246502 -22.96551735473527, -43.19048930592869 -22.965339928126348, -43.1903884026246 -22.96517158113396, -43.19027148430672 -22.96501393503167, -43.19013967696237 -22.964868508037625, -43.18999424996832 -22.964736700693273, -43.189836603866034 -22.964619782375394, -43.18966825687365 -22.964518879071303, -43.18949083026473 -22.964434962534977, -43.18930603275451 -22.964368840928536, -43.18911564404403 -22.964321151039194, -43.18892149768066 -22.964292352146654, -43.1887254634 -22.9642827216, -43.188529429119335 -22.964292352146654, -43.188335282755965 -22.964321151039194, -43.188144894045486 -22.964368840928536, -43.187960096535264 -22.964434962534977, -43.18778266992634 -22.964518879071303, -43.18761432293396 -22.964619782375394, -43.18745667683167 -22.964736700693273, -43.18731124983763 -22.964868508037625, -43.187179442493274 -22.96501393503167, -43.187062524175396 -22.96517158113396, -43.1869616208713 -22.965339928126348, -43.186877704334975 -22.96551735473527, -43.18681158272853 -22.96570215224549, -43.18676389283919 -22.965892540955966, -43.18673509394665 -22.96608668731934, -43.186725463399995 -22.9662827216))" +001297,Copacabana,Zona Sul,88a8a078ebfffff,TRUE,265,-22.96628272,-43.18872546,PO,ZS,Praia de Copacabana,"POLYGON ((-43.186725463399995 -22.9662827216, -43.18673509394665 -22.966478755880658, -43.18676389283919 -22.96667290224403, -43.18681158272853 -22.966863290954507, -43.186877704334975 -22.96704808846473, -43.1869616208713 -22.96722551507365, -43.187062524175396 -22.96739386206604, -43.187179442493274 -22.967551508168327, -43.18731124983763 -22.967696935162373, -43.18745667683167 -22.967828742506725, -43.18761432293396 -22.967945660824604, -43.18778266992634 -22.968046564128695, -43.187960096535264 -22.96813048066502, -43.188144894045486 -22.968196602271462, -43.188335282755965 -22.968244292160804, -43.188529429119335 -22.968273091053344, -43.1887254634 -22.968282721599998, -43.18892149768066 -22.968273091053344, -43.18911564404403 -22.968244292160804, -43.18930603275451 -22.968196602271462, -43.18949083026473 -22.96813048066502, -43.18966825687365 -22.968046564128695, -43.189836603866034 -22.967945660824604, -43.18999424996832 -22.967828742506725, -43.19013967696237 -22.967696935162373, -43.19027148430672 -22.967551508168327, -43.1903884026246 -22.96739386206604, -43.19048930592869 -22.96722551507365, -43.19057322246502 -22.96704808846473, -43.190639344071464 -22.966863290954507, -43.190687033960806 -22.96667290224403, -43.19071583285334 -22.966478755880658, -43.1907254634 -22.9662827216, -43.19071583285334 -22.96608668731934, -43.190687033960806 -22.965892540955966, -43.190639344071464 -22.96570215224549, -43.19057322246502 -22.96551735473527, -43.19048930592869 -22.965339928126348, -43.1903884026246 -22.96517158113396, -43.19027148430672 -22.96501393503167, -43.19013967696237 -22.964868508037625, -43.18999424996832 -22.964736700693273, -43.189836603866034 -22.964619782375394, -43.18966825687365 -22.964518879071303, -43.18949083026473 -22.964434962534977, -43.18930603275451 -22.964368840928536, -43.18911564404403 -22.964321151039194, -43.18892149768066 -22.964292352146654, -43.1887254634 -22.9642827216, -43.188529429119335 -22.964292352146654, -43.188335282755965 -22.964321151039194, -43.188144894045486 -22.964368840928536, -43.187960096535264 -22.964434962534977, -43.18778266992634 -22.964518879071303, -43.18761432293396 -22.964619782375394, -43.18745667683167 -22.964736700693273, -43.18731124983763 -22.964868508037625, -43.187179442493274 -22.96501393503167, -43.187062524175396 -22.96517158113396, -43.1869616208713 -22.965339928126348, -43.186877704334975 -22.96551735473527, -43.18681158272853 -22.96570215224549, -43.18676389283919 -22.965892540955966, -43.18673509394665 -22.96608668731934, -43.186725463399995 -22.9662827216))" +001298,Copacabana,Zona Sul,88a8a0788dfffff,TRUE,265,-22.96628272,-43.18872546,PO,ZS,Praia de Copacabana,"POLYGON ((-43.186725463399995 -22.9662827216, -43.18673509394665 -22.966478755880658, -43.18676389283919 -22.96667290224403, -43.18681158272853 -22.966863290954507, -43.186877704334975 -22.96704808846473, -43.1869616208713 -22.96722551507365, -43.187062524175396 -22.96739386206604, -43.187179442493274 -22.967551508168327, -43.18731124983763 -22.967696935162373, -43.18745667683167 -22.967828742506725, -43.18761432293396 -22.967945660824604, -43.18778266992634 -22.968046564128695, -43.187960096535264 -22.96813048066502, -43.188144894045486 -22.968196602271462, -43.188335282755965 -22.968244292160804, -43.188529429119335 -22.968273091053344, -43.1887254634 -22.968282721599998, -43.18892149768066 -22.968273091053344, -43.18911564404403 -22.968244292160804, -43.18930603275451 -22.968196602271462, -43.18949083026473 -22.96813048066502, -43.18966825687365 -22.968046564128695, -43.189836603866034 -22.967945660824604, -43.18999424996832 -22.967828742506725, -43.19013967696237 -22.967696935162373, -43.19027148430672 -22.967551508168327, -43.1903884026246 -22.96739386206604, -43.19048930592869 -22.96722551507365, -43.19057322246502 -22.96704808846473, -43.190639344071464 -22.966863290954507, -43.190687033960806 -22.96667290224403, -43.19071583285334 -22.966478755880658, -43.1907254634 -22.9662827216, -43.19071583285334 -22.96608668731934, -43.190687033960806 -22.965892540955966, -43.190639344071464 -22.96570215224549, -43.19057322246502 -22.96551735473527, -43.19048930592869 -22.965339928126348, -43.1903884026246 -22.96517158113396, -43.19027148430672 -22.96501393503167, -43.19013967696237 -22.964868508037625, -43.18999424996832 -22.964736700693273, -43.189836603866034 -22.964619782375394, -43.18966825687365 -22.964518879071303, -43.18949083026473 -22.964434962534977, -43.18930603275451 -22.964368840928536, -43.18911564404403 -22.964321151039194, -43.18892149768066 -22.964292352146654, -43.1887254634 -22.9642827216, -43.188529429119335 -22.964292352146654, -43.188335282755965 -22.964321151039194, -43.188144894045486 -22.964368840928536, -43.187960096535264 -22.964434962534977, -43.18778266992634 -22.964518879071303, -43.18761432293396 -22.964619782375394, -43.18745667683167 -22.964736700693273, -43.18731124983763 -22.964868508037625, -43.187179442493274 -22.96501393503167, -43.187062524175396 -22.96517158113396, -43.1869616208713 -22.965339928126348, -43.186877704334975 -22.96551735473527, -43.18681158272853 -22.96570215224549, -43.18676389283919 -22.965892540955966, -43.18673509394665 -22.96608668731934, -43.186725463399995 -22.9662827216))" +001299,Copacabana,Zona Sul,88a8a0788dfffff,TRUE,265,-22.96628272,-43.18872546,PO,ZS,Praia de Copacabana,"POLYGON ((-43.186725463399995 -22.9662827216, -43.18673509394665 -22.966478755880658, -43.18676389283919 -22.96667290224403, -43.18681158272853 -22.966863290954507, -43.186877704334975 -22.96704808846473, -43.1869616208713 -22.96722551507365, -43.187062524175396 -22.96739386206604, -43.187179442493274 -22.967551508168327, -43.18731124983763 -22.967696935162373, -43.18745667683167 -22.967828742506725, -43.18761432293396 -22.967945660824604, -43.18778266992634 -22.968046564128695, -43.187960096535264 -22.96813048066502, -43.188144894045486 -22.968196602271462, -43.188335282755965 -22.968244292160804, -43.188529429119335 -22.968273091053344, -43.1887254634 -22.968282721599998, -43.18892149768066 -22.968273091053344, -43.18911564404403 -22.968244292160804, -43.18930603275451 -22.968196602271462, -43.18949083026473 -22.96813048066502, -43.18966825687365 -22.968046564128695, -43.189836603866034 -22.967945660824604, -43.18999424996832 -22.967828742506725, -43.19013967696237 -22.967696935162373, -43.19027148430672 -22.967551508168327, -43.1903884026246 -22.96739386206604, -43.19048930592869 -22.96722551507365, -43.19057322246502 -22.96704808846473, -43.190639344071464 -22.966863290954507, -43.190687033960806 -22.96667290224403, -43.19071583285334 -22.966478755880658, -43.1907254634 -22.9662827216, -43.19071583285334 -22.96608668731934, -43.190687033960806 -22.965892540955966, -43.190639344071464 -22.96570215224549, -43.19057322246502 -22.96551735473527, -43.19048930592869 -22.965339928126348, -43.1903884026246 -22.96517158113396, -43.19027148430672 -22.96501393503167, -43.19013967696237 -22.964868508037625, -43.18999424996832 -22.964736700693273, -43.189836603866034 -22.964619782375394, -43.18966825687365 -22.964518879071303, -43.18949083026473 -22.964434962534977, -43.18930603275451 -22.964368840928536, -43.18911564404403 -22.964321151039194, -43.18892149768066 -22.964292352146654, -43.1887254634 -22.9642827216, -43.188529429119335 -22.964292352146654, -43.188335282755965 -22.964321151039194, -43.188144894045486 -22.964368840928536, -43.187960096535264 -22.964434962534977, -43.18778266992634 -22.964518879071303, -43.18761432293396 -22.964619782375394, -43.18745667683167 -22.964736700693273, -43.18731124983763 -22.964868508037625, -43.187179442493274 -22.96501393503167, -43.187062524175396 -22.96517158113396, -43.1869616208713 -22.965339928126348, -43.186877704334975 -22.96551735473527, -43.18681158272853 -22.96570215224549, -43.18676389283919 -22.965892540955966, -43.18673509394665 -22.96608668731934, -43.186725463399995 -22.9662827216))" +001301,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +001303,Copacabana,Zona Sul,88a8a0788dfffff,,,,,,,, +001304,Copacabana,Zona Sul,88a8a0788dfffff,TRUE,86,-22.96437957,-43.19277597,PO,ZS,Praia de Copacabana,"POLYGON ((-43.190775971 -22.9643795741, -43.19078560154666 -22.96457560838066, -43.190814400439194 -22.964769754744033, -43.19086209032854 -22.96496014345451, -43.19092821193498 -22.96514494096473, -43.19101212847131 -22.965322367573652, -43.1911130317754 -22.96549071456604, -43.19122995009328 -22.96564836066833, -43.19136175743763 -22.965793787662374, -43.19150718443168 -22.965925595006727, -43.191664830533966 -22.966042513324606, -43.19183317752635 -22.966143416628697, -43.19201060413527 -22.966227333165023, -43.19219540164549 -22.966293454771463, -43.19238579035597 -22.966341144660806, -43.19257993671934 -22.966369943553346, -43.192775971 -22.9663795741, -43.192972005280666 -22.966369943553346, -43.193166151644036 -22.966341144660806, -43.193356540354515 -22.966293454771463, -43.19354133786474 -22.966227333165023, -43.19371876447366 -22.966143416628697, -43.19388711146604 -22.966042513324606, -43.19404475756833 -22.965925595006727, -43.19419018456237 -22.965793787662374, -43.194321991906726 -22.96564836066833, -43.194438910224605 -22.96549071456604, -43.1945398135287 -22.965322367573652, -43.194623730065025 -22.96514494096473, -43.19468985167147 -22.96496014345451, -43.19473754156081 -22.964769754744033, -43.19476634045335 -22.96457560838066, -43.194775971000006 -22.9643795741, -43.19476634045335 -22.96418353981934, -43.19473754156081 -22.963989393455968, -43.19468985167147 -22.963799004745493, -43.194623730065025 -22.96361420723527, -43.1945398135287 -22.96343678062635, -43.194438910224605 -22.96326843363396, -43.194321991906726 -22.963110787531672, -43.19419018456237 -22.962965360537627, -43.19404475756833 -22.962833553193274, -43.19388711146604 -22.962716634875395, -43.19371876447366 -22.962615731571304, -43.19354133786474 -22.96253181503498, -43.193356540354515 -22.962465693428538, -43.193166151644036 -22.962418003539195, -43.192972005280666 -22.962389204646655, -43.192775971 -22.9623795741, -43.19257993671934 -22.962389204646655, -43.19238579035597 -22.962418003539195, -43.19219540164549 -22.962465693428538, -43.19201060413527 -22.96253181503498, -43.19183317752635 -22.962615731571304, -43.191664830533966 -22.962716634875395, -43.19150718443168 -22.962833553193274, -43.19136175743763 -22.962965360537627, -43.19122995009328 -22.963110787531672, -43.1911130317754 -22.96326843363396, -43.19101212847131 -22.96343678062635, -43.19092821193498 -22.96361420723527, -43.19086209032854 -22.963799004745493, -43.190814400439194 -22.963989393455968, -43.19078560154666 -22.96418353981934, -43.190775971 -22.9643795741))" +001305,Copacabana,Zona Sul,88a8a0788dfffff,TRUE,86,-22.96437957,-43.19277597,PO,ZS,Praia de Copacabana,"POLYGON ((-43.190775971 -22.9643795741, -43.19078560154666 -22.96457560838066, -43.190814400439194 -22.964769754744033, -43.19086209032854 -22.96496014345451, -43.19092821193498 -22.96514494096473, -43.19101212847131 -22.965322367573652, -43.1911130317754 -22.96549071456604, -43.19122995009328 -22.96564836066833, -43.19136175743763 -22.965793787662374, -43.19150718443168 -22.965925595006727, -43.191664830533966 -22.966042513324606, -43.19183317752635 -22.966143416628697, -43.19201060413527 -22.966227333165023, -43.19219540164549 -22.966293454771463, -43.19238579035597 -22.966341144660806, -43.19257993671934 -22.966369943553346, -43.192775971 -22.9663795741, -43.192972005280666 -22.966369943553346, -43.193166151644036 -22.966341144660806, -43.193356540354515 -22.966293454771463, -43.19354133786474 -22.966227333165023, -43.19371876447366 -22.966143416628697, -43.19388711146604 -22.966042513324606, -43.19404475756833 -22.965925595006727, -43.19419018456237 -22.965793787662374, -43.194321991906726 -22.96564836066833, -43.194438910224605 -22.96549071456604, -43.1945398135287 -22.965322367573652, -43.194623730065025 -22.96514494096473, -43.19468985167147 -22.96496014345451, -43.19473754156081 -22.964769754744033, -43.19476634045335 -22.96457560838066, -43.194775971000006 -22.9643795741, -43.19476634045335 -22.96418353981934, -43.19473754156081 -22.963989393455968, -43.19468985167147 -22.963799004745493, -43.194623730065025 -22.96361420723527, -43.1945398135287 -22.96343678062635, -43.194438910224605 -22.96326843363396, -43.194321991906726 -22.963110787531672, -43.19419018456237 -22.962965360537627, -43.19404475756833 -22.962833553193274, -43.19388711146604 -22.962716634875395, -43.19371876447366 -22.962615731571304, -43.19354133786474 -22.96253181503498, -43.193356540354515 -22.962465693428538, -43.193166151644036 -22.962418003539195, -43.192972005280666 -22.962389204646655, -43.192775971 -22.9623795741, -43.19257993671934 -22.962389204646655, -43.19238579035597 -22.962418003539195, -43.19219540164549 -22.962465693428538, -43.19201060413527 -22.96253181503498, -43.19183317752635 -22.962615731571304, -43.191664830533966 -22.962716634875395, -43.19150718443168 -22.962833553193274, -43.19136175743763 -22.962965360537627, -43.19122995009328 -22.963110787531672, -43.1911130317754 -22.96326843363396, -43.19101212847131 -22.96343678062635, -43.19092821193498 -22.96361420723527, -43.19086209032854 -22.963799004745493, -43.190814400439194 -22.963989393455968, -43.19078560154666 -22.96418353981934, -43.190775971 -22.9643795741))" +001306,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07445fffff,,,,,,,, +001307,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07445fffff,,,,,,,, +001309,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07623fffff,,,,,,,, +001311,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0763dfffff,,,,,,,, +001312,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07639fffff,,,,,,,, +001314,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001315,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001316,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001317,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001318,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001319,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001320,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001321,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001326,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001327,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001328,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001329,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001330,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001331,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001332,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001333,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001334,Copacabana,Zona Sul,88a8a0788dfffff,TRUE,86,-22.96437957,-43.19277597,PO,ZS,Praia de Copacabana,"POLYGON ((-43.190775971 -22.9643795741, -43.19078560154666 -22.96457560838066, -43.190814400439194 -22.964769754744033, -43.19086209032854 -22.96496014345451, -43.19092821193498 -22.96514494096473, -43.19101212847131 -22.965322367573652, -43.1911130317754 -22.96549071456604, -43.19122995009328 -22.96564836066833, -43.19136175743763 -22.965793787662374, -43.19150718443168 -22.965925595006727, -43.191664830533966 -22.966042513324606, -43.19183317752635 -22.966143416628697, -43.19201060413527 -22.966227333165023, -43.19219540164549 -22.966293454771463, -43.19238579035597 -22.966341144660806, -43.19257993671934 -22.966369943553346, -43.192775971 -22.9663795741, -43.192972005280666 -22.966369943553346, -43.193166151644036 -22.966341144660806, -43.193356540354515 -22.966293454771463, -43.19354133786474 -22.966227333165023, -43.19371876447366 -22.966143416628697, -43.19388711146604 -22.966042513324606, -43.19404475756833 -22.965925595006727, -43.19419018456237 -22.965793787662374, -43.194321991906726 -22.96564836066833, -43.194438910224605 -22.96549071456604, -43.1945398135287 -22.965322367573652, -43.194623730065025 -22.96514494096473, -43.19468985167147 -22.96496014345451, -43.19473754156081 -22.964769754744033, -43.19476634045335 -22.96457560838066, -43.194775971000006 -22.9643795741, -43.19476634045335 -22.96418353981934, -43.19473754156081 -22.963989393455968, -43.19468985167147 -22.963799004745493, -43.194623730065025 -22.96361420723527, -43.1945398135287 -22.96343678062635, -43.194438910224605 -22.96326843363396, -43.194321991906726 -22.963110787531672, -43.19419018456237 -22.962965360537627, -43.19404475756833 -22.962833553193274, -43.19388711146604 -22.962716634875395, -43.19371876447366 -22.962615731571304, -43.19354133786474 -22.96253181503498, -43.193356540354515 -22.962465693428538, -43.193166151644036 -22.962418003539195, -43.192972005280666 -22.962389204646655, -43.192775971 -22.9623795741, -43.19257993671934 -22.962389204646655, -43.19238579035597 -22.962418003539195, -43.19219540164549 -22.962465693428538, -43.19201060413527 -22.96253181503498, -43.19183317752635 -22.962615731571304, -43.191664830533966 -22.962716634875395, -43.19150718443168 -22.962833553193274, -43.19136175743763 -22.962965360537627, -43.19122995009328 -22.963110787531672, -43.1911130317754 -22.96326843363396, -43.19101212847131 -22.96343678062635, -43.19092821193498 -22.96361420723527, -43.19086209032854 -22.963799004745493, -43.190814400439194 -22.963989393455968, -43.19078560154666 -22.96418353981934, -43.190775971 -22.9643795741))" +001335,Copacabana,Zona Sul,88a8a0788dfffff,TRUE,86,-22.96437957,-43.19277597,PO,ZS,Praia de Copacabana,"POLYGON ((-43.190775971 -22.9643795741, -43.19078560154666 -22.96457560838066, -43.190814400439194 -22.964769754744033, -43.19086209032854 -22.96496014345451, -43.19092821193498 -22.96514494096473, -43.19101212847131 -22.965322367573652, -43.1911130317754 -22.96549071456604, -43.19122995009328 -22.96564836066833, -43.19136175743763 -22.965793787662374, -43.19150718443168 -22.965925595006727, -43.191664830533966 -22.966042513324606, -43.19183317752635 -22.966143416628697, -43.19201060413527 -22.966227333165023, -43.19219540164549 -22.966293454771463, -43.19238579035597 -22.966341144660806, -43.19257993671934 -22.966369943553346, -43.192775971 -22.9663795741, -43.192972005280666 -22.966369943553346, -43.193166151644036 -22.966341144660806, -43.193356540354515 -22.966293454771463, -43.19354133786474 -22.966227333165023, -43.19371876447366 -22.966143416628697, -43.19388711146604 -22.966042513324606, -43.19404475756833 -22.965925595006727, -43.19419018456237 -22.965793787662374, -43.194321991906726 -22.96564836066833, -43.194438910224605 -22.96549071456604, -43.1945398135287 -22.965322367573652, -43.194623730065025 -22.96514494096473, -43.19468985167147 -22.96496014345451, -43.19473754156081 -22.964769754744033, -43.19476634045335 -22.96457560838066, -43.194775971000006 -22.9643795741, -43.19476634045335 -22.96418353981934, -43.19473754156081 -22.963989393455968, -43.19468985167147 -22.963799004745493, -43.194623730065025 -22.96361420723527, -43.1945398135287 -22.96343678062635, -43.194438910224605 -22.96326843363396, -43.194321991906726 -22.963110787531672, -43.19419018456237 -22.962965360537627, -43.19404475756833 -22.962833553193274, -43.19388711146604 -22.962716634875395, -43.19371876447366 -22.962615731571304, -43.19354133786474 -22.96253181503498, -43.193356540354515 -22.962465693428538, -43.193166151644036 -22.962418003539195, -43.192972005280666 -22.962389204646655, -43.192775971 -22.9623795741, -43.19257993671934 -22.962389204646655, -43.19238579035597 -22.962418003539195, -43.19219540164549 -22.962465693428538, -43.19201060413527 -22.96253181503498, -43.19183317752635 -22.962615731571304, -43.191664830533966 -22.962716634875395, -43.19150718443168 -22.962833553193274, -43.19136175743763 -22.962965360537627, -43.19122995009328 -22.963110787531672, -43.1911130317754 -22.96326843363396, -43.19101212847131 -22.96343678062635, -43.19092821193498 -22.96361420723527, -43.19086209032854 -22.963799004745493, -43.190814400439194 -22.963989393455968, -43.19078560154666 -22.96418353981934, -43.190775971 -22.9643795741))" +001337,Botafogo,Zona Sul,88a8a078abfffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +001338,Botafogo,Zona Sul,88a8a078a9fffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +001339,Botafogo,Zona Sul,88a8a078a9fffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +001341,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +001342,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +001343,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +001344,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +001345,Lagoa,Zona Sul,88a8a078c1fffff,,,,,,,, +001346,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +001347,Lagoa,Zona Sul,88a8a078c1fffff,TRUE,338,-22.97734814,-43.19794411,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.1959441127 -22.9773481427, -43.195953743246655 -22.977544176980658, -43.19598254213919 -22.97773832334403, -43.196030232028534 -22.977928712054506, -43.19609635363498 -22.97811350956473, -43.196180270171304 -22.97829093617365, -43.1962811734754 -22.97845928316604, -43.19639809179328 -22.978616929268327, -43.19652989913763 -22.978762356262372, -43.196675326131675 -22.978894163606725, -43.19683297223396 -22.979011081924604, -43.197001319226345 -22.979111985228695, -43.19717874583527 -22.97919590176502, -43.19736354334549 -22.97926202337146, -43.19755393205597 -22.979309713260804, -43.19774807841934 -22.979338512153344, -43.1979441127 -22.979348142699997, -43.19814014698066 -22.979338512153344, -43.19833429334403 -22.979309713260804, -43.19852468205451 -22.97926202337146, -43.198709479564734 -22.97919590176502, -43.198886906173655 -22.979111985228695, -43.19905525316604 -22.979011081924604, -43.199212899268325 -22.978894163606725, -43.19935832626237 -22.978762356262372, -43.19949013360672 -22.978616929268327, -43.1996070519246 -22.97845928316604, -43.199707955228696 -22.97829093617365, -43.19979187176502 -22.97811350956473, -43.19985799337147 -22.977928712054506, -43.19990568326081 -22.97773832334403, -43.199934482153346 -22.977544176980658, -43.1999441127 -22.9773481427, -43.199934482153346 -22.97715210841934, -43.19990568326081 -22.976957962055966, -43.19985799337147 -22.97676757334549, -43.19979187176502 -22.97658277583527, -43.199707955228696 -22.976405349226347, -43.1996070519246 -22.976237002233958, -43.19949013360672 -22.97607935613167, -43.19935832626237 -22.975933929137625, -43.199212899268325 -22.975802121793272, -43.19905525316604 -22.975685203475393, -43.198886906173655 -22.975584300171302, -43.198709479564734 -22.975500383634976, -43.19852468205451 -22.975434262028536, -43.19833429334403 -22.975386572139193, -43.19814014698066 -22.975357773246653, -43.1979441127 -22.9753481427, -43.19774807841934 -22.975357773246653, -43.19755393205597 -22.975386572139193, -43.19736354334549 -22.975434262028536, -43.19717874583527 -22.975500383634976, -43.197001319226345 -22.975584300171302, -43.19683297223396 -22.975685203475393, -43.196675326131675 -22.975802121793272, -43.19652989913763 -22.975933929137625, -43.19639809179328 -22.97607935613167, -43.1962811734754 -22.976237002233958, -43.196180270171304 -22.976405349226347, -43.19609635363498 -22.97658277583527, -43.196030232028534 -22.97676757334549, -43.19598254213919 -22.976957962055966, -43.195953743246655 -22.97715210841934, -43.1959441127 -22.9773481427))" +001348,Lagoa,Zona Sul,88a8a078c1fffff,TRUE,338,-22.97734814,-43.19794411,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.1959441127 -22.9773481427, -43.195953743246655 -22.977544176980658, -43.19598254213919 -22.97773832334403, -43.196030232028534 -22.977928712054506, -43.19609635363498 -22.97811350956473, -43.196180270171304 -22.97829093617365, -43.1962811734754 -22.97845928316604, -43.19639809179328 -22.978616929268327, -43.19652989913763 -22.978762356262372, -43.196675326131675 -22.978894163606725, -43.19683297223396 -22.979011081924604, -43.197001319226345 -22.979111985228695, -43.19717874583527 -22.97919590176502, -43.19736354334549 -22.97926202337146, -43.19755393205597 -22.979309713260804, -43.19774807841934 -22.979338512153344, -43.1979441127 -22.979348142699997, -43.19814014698066 -22.979338512153344, -43.19833429334403 -22.979309713260804, -43.19852468205451 -22.97926202337146, -43.198709479564734 -22.97919590176502, -43.198886906173655 -22.979111985228695, -43.19905525316604 -22.979011081924604, -43.199212899268325 -22.978894163606725, -43.19935832626237 -22.978762356262372, -43.19949013360672 -22.978616929268327, -43.1996070519246 -22.97845928316604, -43.199707955228696 -22.97829093617365, -43.19979187176502 -22.97811350956473, -43.19985799337147 -22.977928712054506, -43.19990568326081 -22.97773832334403, -43.199934482153346 -22.977544176980658, -43.1999441127 -22.9773481427, -43.199934482153346 -22.97715210841934, -43.19990568326081 -22.976957962055966, -43.19985799337147 -22.97676757334549, -43.19979187176502 -22.97658277583527, -43.199707955228696 -22.976405349226347, -43.1996070519246 -22.976237002233958, -43.19949013360672 -22.97607935613167, -43.19935832626237 -22.975933929137625, -43.199212899268325 -22.975802121793272, -43.19905525316604 -22.975685203475393, -43.198886906173655 -22.975584300171302, -43.198709479564734 -22.975500383634976, -43.19852468205451 -22.975434262028536, -43.19833429334403 -22.975386572139193, -43.19814014698066 -22.975357773246653, -43.1979441127 -22.9753481427, -43.19774807841934 -22.975357773246653, -43.19755393205597 -22.975386572139193, -43.19736354334549 -22.975434262028536, -43.19717874583527 -22.975500383634976, -43.197001319226345 -22.975584300171302, -43.19683297223396 -22.975685203475393, -43.196675326131675 -22.975802121793272, -43.19652989913763 -22.975933929137625, -43.19639809179328 -22.97607935613167, -43.1962811734754 -22.976237002233958, -43.196180270171304 -22.976405349226347, -43.19609635363498 -22.97658277583527, -43.196030232028534 -22.97676757334549, -43.19598254213919 -22.976957962055966, -43.195953743246655 -22.97715210841934, -43.1959441127 -22.9773481427))" +001349,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001350,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001351,Botafogo,Zona Sul,88a8a078a9fffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +001352,Botafogo,Zona Sul,88a8a078a9fffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +001353,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001354,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001355,Catete,Zona Sul,88a8a06a49fffff,TRUE,5,-22.92977593,-43.17739661,PC,G,Rio Carioca,"POLYGON ((-43.1753966127 -22.9297759342, -43.175406243246655 -22.929971968480658, -43.17543504213919 -22.93016611484403, -43.175482732028534 -22.930356503554506, -43.17554885363498 -22.93054130106473, -43.175632770171305 -22.93071872767365, -43.1757336734754 -22.93088707466604, -43.17585059179328 -22.931044720768327, -43.17598239913763 -22.931190147762372, -43.176127826131676 -22.931321955106725, -43.176285472233964 -22.931438873424604, -43.176453819226346 -22.931539776728695, -43.17663124583527 -22.93162369326502, -43.17681604334549 -22.93168981487146, -43.17700643205597 -22.931737504760804, -43.17720057841934 -22.931766303653344, -43.1773966127 -22.931775934199997, -43.17759264698066 -22.931766303653344, -43.17778679334403 -22.931737504760804, -43.17797718205451 -22.93168981487146, -43.178161979564734 -22.93162369326502, -43.178339406173656 -22.931539776728695, -43.17850775316604 -22.931438873424604, -43.178665399268326 -22.931321955106725, -43.17881082626237 -22.931190147762372, -43.178942633606724 -22.931044720768327, -43.1790595519246 -22.93088707466604, -43.1791604552287 -22.93071872767365, -43.17924437176502 -22.93054130106473, -43.17931049337147 -22.930356503554506, -43.17935818326081 -22.93016611484403, -43.179386982153346 -22.929971968480658, -43.1793966127 -22.9297759342, -43.179386982153346 -22.92957989991934, -43.17935818326081 -22.929385753555966, -43.17931049337147 -22.92919536484549, -43.17924437176502 -22.92901056733527, -43.1791604552287 -22.928833140726347, -43.1790595519246 -22.928664793733958, -43.178942633606724 -22.92850714763167, -43.17881082626237 -22.928361720637625, -43.178665399268326 -22.928229913293272, -43.17850775316604 -22.928112994975393, -43.178339406173656 -22.928012091671302, -43.178161979564734 -22.927928175134976, -43.17797718205451 -22.927862053528536, -43.17778679334403 -22.927814363639193, -43.17759264698066 -22.927785564746653, -43.1773966127 -22.9277759342, -43.17720057841934 -22.927785564746653, -43.17700643205597 -22.927814363639193, -43.17681604334549 -22.927862053528536, -43.17663124583527 -22.927928175134976, -43.176453819226346 -22.928012091671302, -43.176285472233964 -22.928112994975393, -43.176127826131676 -22.928229913293272, -43.17598239913763 -22.928361720637625, -43.17585059179328 -22.92850714763167, -43.1757336734754 -22.928664793733958, -43.175632770171305 -22.928833140726347, -43.17554885363498 -22.92901056733527, -43.175482732028534 -22.92919536484549, -43.17543504213919 -22.929385753555966, -43.175406243246655 -22.92957989991934, -43.1753966127 -22.9297759342))" +001361,Lagoa,Zona Sul,88a8a078c1fffff,TRUE,338,-22.97734814,-43.19794411,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.1959441127 -22.9773481427, -43.195953743246655 -22.977544176980658, -43.19598254213919 -22.97773832334403, -43.196030232028534 -22.977928712054506, -43.19609635363498 -22.97811350956473, -43.196180270171304 -22.97829093617365, -43.1962811734754 -22.97845928316604, -43.19639809179328 -22.978616929268327, -43.19652989913763 -22.978762356262372, -43.196675326131675 -22.978894163606725, -43.19683297223396 -22.979011081924604, -43.197001319226345 -22.979111985228695, -43.19717874583527 -22.97919590176502, -43.19736354334549 -22.97926202337146, -43.19755393205597 -22.979309713260804, -43.19774807841934 -22.979338512153344, -43.1979441127 -22.979348142699997, -43.19814014698066 -22.979338512153344, -43.19833429334403 -22.979309713260804, -43.19852468205451 -22.97926202337146, -43.198709479564734 -22.97919590176502, -43.198886906173655 -22.979111985228695, -43.19905525316604 -22.979011081924604, -43.199212899268325 -22.978894163606725, -43.19935832626237 -22.978762356262372, -43.19949013360672 -22.978616929268327, -43.1996070519246 -22.97845928316604, -43.199707955228696 -22.97829093617365, -43.19979187176502 -22.97811350956473, -43.19985799337147 -22.977928712054506, -43.19990568326081 -22.97773832334403, -43.199934482153346 -22.977544176980658, -43.1999441127 -22.9773481427, -43.199934482153346 -22.97715210841934, -43.19990568326081 -22.976957962055966, -43.19985799337147 -22.97676757334549, -43.19979187176502 -22.97658277583527, -43.199707955228696 -22.976405349226347, -43.1996070519246 -22.976237002233958, -43.19949013360672 -22.97607935613167, -43.19935832626237 -22.975933929137625, -43.199212899268325 -22.975802121793272, -43.19905525316604 -22.975685203475393, -43.198886906173655 -22.975584300171302, -43.198709479564734 -22.975500383634976, -43.19852468205451 -22.975434262028536, -43.19833429334403 -22.975386572139193, -43.19814014698066 -22.975357773246653, -43.1979441127 -22.9753481427, -43.19774807841934 -22.975357773246653, -43.19755393205597 -22.975386572139193, -43.19736354334549 -22.975434262028536, -43.19717874583527 -22.975500383634976, -43.197001319226345 -22.975584300171302, -43.19683297223396 -22.975685203475393, -43.196675326131675 -22.975802121793272, -43.19652989913763 -22.975933929137625, -43.19639809179328 -22.97607935613167, -43.1962811734754 -22.976237002233958, -43.196180270171304 -22.976405349226347, -43.19609635363498 -22.97658277583527, -43.196030232028534 -22.97676757334549, -43.19598254213919 -22.976957962055966, -43.195953743246655 -22.97715210841934, -43.1959441127 -22.9773481427))" +001362,Lagoa,Zona Sul,88a8a078c1fffff,TRUE,338,-22.97734814,-43.19794411,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.1959441127 -22.9773481427, -43.195953743246655 -22.977544176980658, -43.19598254213919 -22.97773832334403, -43.196030232028534 -22.977928712054506, -43.19609635363498 -22.97811350956473, -43.196180270171304 -22.97829093617365, -43.1962811734754 -22.97845928316604, -43.19639809179328 -22.978616929268327, -43.19652989913763 -22.978762356262372, -43.196675326131675 -22.978894163606725, -43.19683297223396 -22.979011081924604, -43.197001319226345 -22.979111985228695, -43.19717874583527 -22.97919590176502, -43.19736354334549 -22.97926202337146, -43.19755393205597 -22.979309713260804, -43.19774807841934 -22.979338512153344, -43.1979441127 -22.979348142699997, -43.19814014698066 -22.979338512153344, -43.19833429334403 -22.979309713260804, -43.19852468205451 -22.97926202337146, -43.198709479564734 -22.97919590176502, -43.198886906173655 -22.979111985228695, -43.19905525316604 -22.979011081924604, -43.199212899268325 -22.978894163606725, -43.19935832626237 -22.978762356262372, -43.19949013360672 -22.978616929268327, -43.1996070519246 -22.97845928316604, -43.199707955228696 -22.97829093617365, -43.19979187176502 -22.97811350956473, -43.19985799337147 -22.977928712054506, -43.19990568326081 -22.97773832334403, -43.199934482153346 -22.977544176980658, -43.1999441127 -22.9773481427, -43.199934482153346 -22.97715210841934, -43.19990568326081 -22.976957962055966, -43.19985799337147 -22.97676757334549, -43.19979187176502 -22.97658277583527, -43.199707955228696 -22.976405349226347, -43.1996070519246 -22.976237002233958, -43.19949013360672 -22.97607935613167, -43.19935832626237 -22.975933929137625, -43.199212899268325 -22.975802121793272, -43.19905525316604 -22.975685203475393, -43.198886906173655 -22.975584300171302, -43.198709479564734 -22.975500383634976, -43.19852468205451 -22.975434262028536, -43.19833429334403 -22.975386572139193, -43.19814014698066 -22.975357773246653, -43.1979441127 -22.9753481427, -43.19774807841934 -22.975357773246653, -43.19755393205597 -22.975386572139193, -43.19736354334549 -22.975434262028536, -43.19717874583527 -22.975500383634976, -43.197001319226345 -22.975584300171302, -43.19683297223396 -22.975685203475393, -43.196675326131675 -22.975802121793272, -43.19652989913763 -22.975933929137625, -43.19639809179328 -22.97607935613167, -43.1962811734754 -22.976237002233958, -43.196180270171304 -22.976405349226347, -43.19609635363498 -22.97658277583527, -43.196030232028534 -22.97676757334549, -43.19598254213919 -22.976957962055966, -43.195953743246655 -22.97715210841934, -43.1959441127 -22.9773481427))" +001363,Lagoa,Zona Sul,88a8a078c1fffff,TRUE,338,-22.97734814,-43.19794411,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.1959441127 -22.9773481427, -43.195953743246655 -22.977544176980658, -43.19598254213919 -22.97773832334403, -43.196030232028534 -22.977928712054506, -43.19609635363498 -22.97811350956473, -43.196180270171304 -22.97829093617365, -43.1962811734754 -22.97845928316604, -43.19639809179328 -22.978616929268327, -43.19652989913763 -22.978762356262372, -43.196675326131675 -22.978894163606725, -43.19683297223396 -22.979011081924604, -43.197001319226345 -22.979111985228695, -43.19717874583527 -22.97919590176502, -43.19736354334549 -22.97926202337146, -43.19755393205597 -22.979309713260804, -43.19774807841934 -22.979338512153344, -43.1979441127 -22.979348142699997, -43.19814014698066 -22.979338512153344, -43.19833429334403 -22.979309713260804, -43.19852468205451 -22.97926202337146, -43.198709479564734 -22.97919590176502, -43.198886906173655 -22.979111985228695, -43.19905525316604 -22.979011081924604, -43.199212899268325 -22.978894163606725, -43.19935832626237 -22.978762356262372, -43.19949013360672 -22.978616929268327, -43.1996070519246 -22.97845928316604, -43.199707955228696 -22.97829093617365, -43.19979187176502 -22.97811350956473, -43.19985799337147 -22.977928712054506, -43.19990568326081 -22.97773832334403, -43.199934482153346 -22.977544176980658, -43.1999441127 -22.9773481427, -43.199934482153346 -22.97715210841934, -43.19990568326081 -22.976957962055966, -43.19985799337147 -22.97676757334549, -43.19979187176502 -22.97658277583527, -43.199707955228696 -22.976405349226347, -43.1996070519246 -22.976237002233958, -43.19949013360672 -22.97607935613167, -43.19935832626237 -22.975933929137625, -43.199212899268325 -22.975802121793272, -43.19905525316604 -22.975685203475393, -43.198886906173655 -22.975584300171302, -43.198709479564734 -22.975500383634976, -43.19852468205451 -22.975434262028536, -43.19833429334403 -22.975386572139193, -43.19814014698066 -22.975357773246653, -43.1979441127 -22.9753481427, -43.19774807841934 -22.975357773246653, -43.19755393205597 -22.975386572139193, -43.19736354334549 -22.975434262028536, -43.19717874583527 -22.975500383634976, -43.197001319226345 -22.975584300171302, -43.19683297223396 -22.975685203475393, -43.196675326131675 -22.975802121793272, -43.19652989913763 -22.975933929137625, -43.19639809179328 -22.97607935613167, -43.1962811734754 -22.976237002233958, -43.196180270171304 -22.976405349226347, -43.19609635363498 -22.97658277583527, -43.196030232028534 -22.97676757334549, -43.19598254213919 -22.976957962055966, -43.195953743246655 -22.97715210841934, -43.1959441127 -22.9773481427))" +001364,Lagoa,Zona Sul,88a8a078c1fffff,TRUE,338,-22.97734814,-43.19794411,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.1959441127 -22.9773481427, -43.195953743246655 -22.977544176980658, -43.19598254213919 -22.97773832334403, -43.196030232028534 -22.977928712054506, -43.19609635363498 -22.97811350956473, -43.196180270171304 -22.97829093617365, -43.1962811734754 -22.97845928316604, -43.19639809179328 -22.978616929268327, -43.19652989913763 -22.978762356262372, -43.196675326131675 -22.978894163606725, -43.19683297223396 -22.979011081924604, -43.197001319226345 -22.979111985228695, -43.19717874583527 -22.97919590176502, -43.19736354334549 -22.97926202337146, -43.19755393205597 -22.979309713260804, -43.19774807841934 -22.979338512153344, -43.1979441127 -22.979348142699997, -43.19814014698066 -22.979338512153344, -43.19833429334403 -22.979309713260804, -43.19852468205451 -22.97926202337146, -43.198709479564734 -22.97919590176502, -43.198886906173655 -22.979111985228695, -43.19905525316604 -22.979011081924604, -43.199212899268325 -22.978894163606725, -43.19935832626237 -22.978762356262372, -43.19949013360672 -22.978616929268327, -43.1996070519246 -22.97845928316604, -43.199707955228696 -22.97829093617365, -43.19979187176502 -22.97811350956473, -43.19985799337147 -22.977928712054506, -43.19990568326081 -22.97773832334403, -43.199934482153346 -22.977544176980658, -43.1999441127 -22.9773481427, -43.199934482153346 -22.97715210841934, -43.19990568326081 -22.976957962055966, -43.19985799337147 -22.97676757334549, -43.19979187176502 -22.97658277583527, -43.199707955228696 -22.976405349226347, -43.1996070519246 -22.976237002233958, -43.19949013360672 -22.97607935613167, -43.19935832626237 -22.975933929137625, -43.199212899268325 -22.975802121793272, -43.19905525316604 -22.975685203475393, -43.198886906173655 -22.975584300171302, -43.198709479564734 -22.975500383634976, -43.19852468205451 -22.975434262028536, -43.19833429334403 -22.975386572139193, -43.19814014698066 -22.975357773246653, -43.1979441127 -22.9753481427, -43.19774807841934 -22.975357773246653, -43.19755393205597 -22.975386572139193, -43.19736354334549 -22.975434262028536, -43.19717874583527 -22.975500383634976, -43.197001319226345 -22.975584300171302, -43.19683297223396 -22.975685203475393, -43.196675326131675 -22.975802121793272, -43.19652989913763 -22.975933929137625, -43.19639809179328 -22.97607935613167, -43.1962811734754 -22.976237002233958, -43.196180270171304 -22.976405349226347, -43.19609635363498 -22.97658277583527, -43.196030232028534 -22.97676757334549, -43.19598254213919 -22.976957962055966, -43.195953743246655 -22.97715210841934, -43.1959441127 -22.9773481427))" +001365,Copacabana,Zona Sul,88a8a078e7fffff,,,,,,,, +001366,Copacabana,Zona Sul,88a8a078e7fffff,,,,,,,, +001367,Copacabana,Zona Sul,88a8a078e7fffff,,,,,,,, +001368,Copacabana,Zona Sul,88a8a078e7fffff,,,,,,,, +001369,Copacabana,Zona Sul,88a8a078e7fffff,,,,,,,, +001370,Copacabana,Zona Sul,88a8a078e7fffff,,,,,,,, +001371,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +001372,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +001373,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +001374,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +001375,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07469fffff,,,,,,,, +001376,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07469fffff,,,,,,,, +001381,Barra da Tijuca,Barra da Tijuca,88a8a0719dfffff,,,,,,,, +001382,Barra da Tijuca,Barra da Tijuca,88a8a0719dfffff,,,,,,,, +001383,Barra da Tijuca,Barra da Tijuca,88a8a0719dfffff,TRUE,321,-23.01267129,-43.29684764,PO,J,Lagoa da Tijuca,"POLYGON ((-43.2948476428 -23.0126712877, -43.29485727334666 -23.01286732198066, -43.294886072239194 -23.013061468344034, -43.29493376212854 -23.01325185705451, -43.29499988373498 -23.01343665456473, -43.29508380027131 -23.013614081173653, -43.2951847035754 -23.013782428166042, -43.29530162189328 -23.01394007426833, -43.29543342923763 -23.014085501262375, -43.29557885623168 -23.014217308606728, -43.295736502333966 -23.014334226924607, -43.29590484932635 -23.014435130228698, -43.29608227593527 -23.014519046765024, -43.29626707344549 -23.014585168371465, -43.29645746215597 -23.014632858260807, -43.29665160851934 -23.014661657153347, -43.2968476428 -23.0146712877, -43.297043677080666 -23.014661657153347, -43.297237823444036 -23.014632858260807, -43.297428212154514 -23.014585168371465, -43.29761300966474 -23.014519046765024, -43.29779043627366 -23.014435130228698, -43.29795878326604 -23.014334226924607, -43.29811642936833 -23.014217308606728, -43.29826185636237 -23.014085501262375, -43.298393663706726 -23.01394007426833, -43.298510582024605 -23.013782428166042, -43.2986114853287 -23.013614081173653, -43.298695401865025 -23.01343665456473, -43.29876152347147 -23.01325185705451, -43.29880921336081 -23.013061468344034, -43.29883801225335 -23.01286732198066, -43.298847642800006 -23.0126712877, -43.29883801225335 -23.012475253419343, -43.29880921336081 -23.01228110705597, -43.29876152347147 -23.012090718345494, -43.298695401865025 -23.01190592083527, -43.2986114853287 -23.01172849422635, -43.298510582024605 -23.01156014723396, -43.298393663706726 -23.011402501131673, -43.29826185636237 -23.011257074137628, -43.29811642936833 -23.011125266793275, -43.29795878326604 -23.011008348475396, -43.29779043627366 -23.010907445171306, -43.29761300966474 -23.01082352863498, -43.297428212154514 -23.01075740702854, -43.297237823444036 -23.010709717139196, -43.297043677080666 -23.010680918246656, -43.2968476428 -23.010671287700003, -43.29665160851934 -23.010680918246656, -43.29645746215597 -23.010709717139196, -43.29626707344549 -23.01075740702854, -43.29608227593527 -23.01082352863498, -43.29590484932635 -23.010907445171306, -43.295736502333966 -23.011008348475396, -43.29557885623168 -23.011125266793275, -43.29543342923763 -23.011257074137628, -43.29530162189328 -23.011402501131673, -43.2951847035754 -23.01156014723396, -43.29508380027131 -23.01172849422635, -43.29499988373498 -23.01190592083527, -43.29493376212854 -23.012090718345494, -43.294886072239194 -23.01228110705597, -43.29485727334666 -23.012475253419343, -43.2948476428 -23.0126712877))" +001384,Jacarepaguá,Jacarepaguá,88a8a0621bfffff,TRUE,274,-22.96040461,-43.35682019,PO,J,Arroio Fundo,"POLYGON ((-43.3548201928 -22.9604046113, -43.354829823346655 -22.96060064558066, -43.35485862223919 -22.960794791944032, -43.354906312128534 -22.960985180654507, -43.35497243373498 -22.96116997816473, -43.355056350271305 -22.96134740477365, -43.3551572535754 -22.96151575176604, -43.35527417189328 -22.961673397868328, -43.35540597923763 -22.961818824862373, -43.355551406231676 -22.961950632206726, -43.355709052333964 -22.962067550524605, -43.355877399326346 -22.962168453828696, -43.35605482593527 -22.96225237036502, -43.35623962344549 -22.962318491971462, -43.35643001215597 -22.962366181860805, -43.35662415851934 -22.962394980753345, -43.3568201928 -22.9624046113, -43.35701622708066 -22.962394980753345, -43.35721037344403 -22.962366181860805, -43.35740076215451 -22.962318491971462, -43.357585559664734 -22.96225237036502, -43.357762986273656 -22.962168453828696, -43.35793133326604 -22.962067550524605, -43.358088979368326 -22.961950632206726, -43.35823440636237 -22.961818824862373, -43.358366213706724 -22.961673397868328, -43.3584831320246 -22.96151575176604, -43.3585840353287 -22.96134740477365, -43.35866795186502 -22.96116997816473, -43.35873407347147 -22.960985180654507, -43.35878176336081 -22.960794791944032, -43.358810562253346 -22.96060064558066, -43.3588201928 -22.9604046113, -43.358810562253346 -22.96020857701934, -43.35878176336081 -22.960014430655967, -43.35873407347147 -22.95982404194549, -43.35866795186502 -22.95963924443527, -43.3585840353287 -22.959461817826348, -43.3584831320246 -22.95929347083396, -43.358366213706724 -22.95913582473167, -43.35823440636237 -22.958990397737626, -43.358088979368326 -22.958858590393273, -43.35793133326604 -22.958741672075394, -43.357762986273656 -22.958640768771303, -43.357585559664734 -22.958556852234977, -43.35740076215451 -22.958490730628537, -43.35721037344403 -22.958443040739194, -43.35701622708066 -22.958414241846654, -43.3568201928 -22.9584046113, -43.35662415851934 -22.958414241846654, -43.35643001215597 -22.958443040739194, -43.35623962344549 -22.958490730628537, -43.35605482593527 -22.958556852234977, -43.355877399326346 -22.958640768771303, -43.355709052333964 -22.958741672075394, -43.355551406231676 -22.958858590393273, -43.35540597923763 -22.958990397737626, -43.35527417189328 -22.95913582473167, -43.3551572535754 -22.95929347083396, -43.355056350271305 -22.959461817826348, -43.35497243373498 -22.95963924443527, -43.354906312128534 -22.95982404194549, -43.35485862223919 -22.960014430655967, -43.354829823346655 -22.96020857701934, -43.3548201928 -22.9604046113))" +001385,Jacarepaguá,Jacarepaguá,88a8a0621bfffff,TRUE,274,-22.96040461,-43.35682019,PO,J,Arroio Fundo,"POLYGON ((-43.3548201928 -22.9604046113, -43.354829823346655 -22.96060064558066, -43.35485862223919 -22.960794791944032, -43.354906312128534 -22.960985180654507, -43.35497243373498 -22.96116997816473, -43.355056350271305 -22.96134740477365, -43.3551572535754 -22.96151575176604, -43.35527417189328 -22.961673397868328, -43.35540597923763 -22.961818824862373, -43.355551406231676 -22.961950632206726, -43.355709052333964 -22.962067550524605, -43.355877399326346 -22.962168453828696, -43.35605482593527 -22.96225237036502, -43.35623962344549 -22.962318491971462, -43.35643001215597 -22.962366181860805, -43.35662415851934 -22.962394980753345, -43.3568201928 -22.9624046113, -43.35701622708066 -22.962394980753345, -43.35721037344403 -22.962366181860805, -43.35740076215451 -22.962318491971462, -43.357585559664734 -22.96225237036502, -43.357762986273656 -22.962168453828696, -43.35793133326604 -22.962067550524605, -43.358088979368326 -22.961950632206726, -43.35823440636237 -22.961818824862373, -43.358366213706724 -22.961673397868328, -43.3584831320246 -22.96151575176604, -43.3585840353287 -22.96134740477365, -43.35866795186502 -22.96116997816473, -43.35873407347147 -22.960985180654507, -43.35878176336081 -22.960794791944032, -43.358810562253346 -22.96060064558066, -43.3588201928 -22.9604046113, -43.358810562253346 -22.96020857701934, -43.35878176336081 -22.960014430655967, -43.35873407347147 -22.95982404194549, -43.35866795186502 -22.95963924443527, -43.3585840353287 -22.959461817826348, -43.3584831320246 -22.95929347083396, -43.358366213706724 -22.95913582473167, -43.35823440636237 -22.958990397737626, -43.358088979368326 -22.958858590393273, -43.35793133326604 -22.958741672075394, -43.357762986273656 -22.958640768771303, -43.357585559664734 -22.958556852234977, -43.35740076215451 -22.958490730628537, -43.35721037344403 -22.958443040739194, -43.35701622708066 -22.958414241846654, -43.3568201928 -22.9584046113, -43.35662415851934 -22.958414241846654, -43.35643001215597 -22.958443040739194, -43.35623962344549 -22.958490730628537, -43.35605482593527 -22.958556852234977, -43.355877399326346 -22.958640768771303, -43.355709052333964 -22.958741672075394, -43.355551406231676 -22.958858590393273, -43.35540597923763 -22.958990397737626, -43.35527417189328 -22.95913582473167, -43.3551572535754 -22.95929347083396, -43.355056350271305 -22.959461817826348, -43.35497243373498 -22.95963924443527, -43.354906312128534 -22.95982404194549, -43.35485862223919 -22.960014430655967, -43.354829823346655 -22.96020857701934, -43.3548201928 -22.9604046113))" +001386,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001387,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,TRUE,300,-23.0066226,-43.30771444,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3057144359 -23.006622597, -43.30572406644666 -23.00681863128066, -43.305752865339194 -23.007012777644032, -43.30580055522854 -23.007203166354508, -43.30586667683498 -23.00738796386473, -43.30595059337131 -23.00756539047365, -43.3060514966754 -23.00773373746604, -43.30616841499328 -23.007891383568328, -43.30630022233763 -23.008036810562373, -43.30644564933168 -23.008168617906726, -43.306603295433966 -23.008285536224605, -43.30677164242635 -23.008386439528696, -43.30694906903527 -23.008470356065022, -43.30713386654549 -23.008536477671463, -43.30732425525597 -23.008584167560805, -43.30751840161934 -23.008612966453345, -43.3077144359 -23.008622597, -43.307910470180666 -23.008612966453345, -43.308104616544036 -23.008584167560805, -43.308295005254514 -23.008536477671463, -43.30847980276474 -23.008470356065022, -43.30865722937366 -23.008386439528696, -43.30882557636604 -23.008285536224605, -43.30898322246833 -23.008168617906726, -43.30912864946237 -23.008036810562373, -43.309260456806726 -23.007891383568328, -43.309377375124605 -23.00773373746604, -43.3094782784287 -23.00756539047365, -43.309562194965025 -23.00738796386473, -43.30962831657147 -23.007203166354508, -43.30967600646081 -23.007012777644032, -43.30970480535335 -23.00681863128066, -43.309714435900005 -23.006622597, -43.30970480535335 -23.00642656271934, -43.30967600646081 -23.006232416355967, -43.30962831657147 -23.006042027645492, -43.309562194965025 -23.00585723013527, -43.3094782784287 -23.00567980352635, -43.309377375124605 -23.00551145653396, -43.309260456806726 -23.00535381043167, -43.30912864946237 -23.005208383437626, -43.30898322246833 -23.005076576093273, -43.30882557636604 -23.004959657775395, -43.30865722937366 -23.004858754471304, -43.30847980276474 -23.004774837934978, -43.308295005254514 -23.004708716328537, -43.308104616544036 -23.004661026439194, -43.307910470180666 -23.004632227546654, -43.3077144359 -23.004622597, -43.30751840161934 -23.004632227546654, -43.30732425525597 -23.004661026439194, -43.30713386654549 -23.004708716328537, -43.30694906903527 -23.004774837934978, -43.30677164242635 -23.004858754471304, -43.306603295433966 -23.004959657775395, -43.30644564933168 -23.005076576093273, -43.30630022233763 -23.005208383437626, -43.30616841499328 -23.00535381043167, -43.3060514966754 -23.00551145653396, -43.30595059337131 -23.00567980352635, -43.30586667683498 -23.00585723013527, -43.30580055522854 -23.006042027645492, -43.305752865339194 -23.006232416355967, -43.30572406644666 -23.00642656271934, -43.3057144359 -23.006622597))" +001388,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,TRUE,300,-23.0066226,-43.30771444,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3057144359 -23.006622597, -43.30572406644666 -23.00681863128066, -43.305752865339194 -23.007012777644032, -43.30580055522854 -23.007203166354508, -43.30586667683498 -23.00738796386473, -43.30595059337131 -23.00756539047365, -43.3060514966754 -23.00773373746604, -43.30616841499328 -23.007891383568328, -43.30630022233763 -23.008036810562373, -43.30644564933168 -23.008168617906726, -43.306603295433966 -23.008285536224605, -43.30677164242635 -23.008386439528696, -43.30694906903527 -23.008470356065022, -43.30713386654549 -23.008536477671463, -43.30732425525597 -23.008584167560805, -43.30751840161934 -23.008612966453345, -43.3077144359 -23.008622597, -43.307910470180666 -23.008612966453345, -43.308104616544036 -23.008584167560805, -43.308295005254514 -23.008536477671463, -43.30847980276474 -23.008470356065022, -43.30865722937366 -23.008386439528696, -43.30882557636604 -23.008285536224605, -43.30898322246833 -23.008168617906726, -43.30912864946237 -23.008036810562373, -43.309260456806726 -23.007891383568328, -43.309377375124605 -23.00773373746604, -43.3094782784287 -23.00756539047365, -43.309562194965025 -23.00738796386473, -43.30962831657147 -23.007203166354508, -43.30967600646081 -23.007012777644032, -43.30970480535335 -23.00681863128066, -43.309714435900005 -23.006622597, -43.30970480535335 -23.00642656271934, -43.30967600646081 -23.006232416355967, -43.30962831657147 -23.006042027645492, -43.309562194965025 -23.00585723013527, -43.3094782784287 -23.00567980352635, -43.309377375124605 -23.00551145653396, -43.309260456806726 -23.00535381043167, -43.30912864946237 -23.005208383437626, -43.30898322246833 -23.005076576093273, -43.30882557636604 -23.004959657775395, -43.30865722937366 -23.004858754471304, -43.30847980276474 -23.004774837934978, -43.308295005254514 -23.004708716328537, -43.308104616544036 -23.004661026439194, -43.307910470180666 -23.004632227546654, -43.3077144359 -23.004622597, -43.30751840161934 -23.004632227546654, -43.30732425525597 -23.004661026439194, -43.30713386654549 -23.004708716328537, -43.30694906903527 -23.004774837934978, -43.30677164242635 -23.004858754471304, -43.306603295433966 -23.004959657775395, -43.30644564933168 -23.005076576093273, -43.30630022233763 -23.005208383437626, -43.30616841499328 -23.00535381043167, -43.3060514966754 -23.00551145653396, -43.30595059337131 -23.00567980352635, -43.30586667683498 -23.00585723013527, -43.30580055522854 -23.006042027645492, -43.305752865339194 -23.006232416355967, -43.30572406644666 -23.00642656271934, -43.3057144359 -23.006622597))" +001389,Praça da Bandeira,Grande Tijuca,88a8a0612dfffff,TRUE,455,-22.907446,-43.210313,PO,G,,"POLYGON ((-43.208313 -22.907446, -43.208322630546654 -22.90764203428066, -43.20835142943919 -22.907836180644033, -43.20839911932853 -22.908026569354508, -43.20846524093498 -22.90821136686473, -43.2085491574713 -22.90838879347365, -43.2086500607754 -22.90855714046604, -43.20876697909328 -22.90871478656833, -43.20889878643763 -22.908860213562374, -43.209044213431675 -22.908992020906727, -43.20920185953396 -22.909108939224605, -43.209370206526344 -22.909209842528696, -43.209547633135266 -22.909293759065022, -43.20973243064549 -22.909359880671463, -43.20992281935597 -22.909407570560806, -43.21011696571934 -22.909436369453346, -43.210313 -22.909446, -43.21050903428066 -22.909436369453346, -43.21070318064403 -22.909407570560806, -43.21089356935451 -22.909359880671463, -43.21107836686473 -22.909293759065022, -43.211255793473654 -22.909209842528696, -43.211424140466036 -22.909108939224605, -43.211581786568324 -22.908992020906727, -43.21172721356237 -22.908860213562374, -43.21185902090672 -22.90871478656833, -43.2119759392246 -22.90855714046604, -43.212076842528695 -22.90838879347365, -43.21216075906502 -22.90821136686473, -43.212226880671466 -22.908026569354508, -43.21227457056081 -22.907836180644033, -43.212303369453345 -22.90764203428066, -43.212313 -22.907446, -43.212303369453345 -22.90724996571934, -43.21227457056081 -22.907055819355968, -43.212226880671466 -22.906865430645492, -43.21216075906502 -22.90668063313527, -43.212076842528695 -22.90650320652635, -43.2119759392246 -22.90633485953396, -43.21185902090672 -22.906177213431672, -43.21172721356237 -22.906031786437627, -43.211581786568324 -22.905899979093274, -43.211424140466036 -22.905783060775395, -43.211255793473654 -22.905682157471304, -43.21107836686473 -22.905598240934978, -43.21089356935451 -22.905532119328537, -43.21070318064403 -22.905484429439195, -43.21050903428066 -22.905455630546655, -43.210313 -22.905446, -43.21011696571934 -22.905455630546655, -43.20992281935597 -22.905484429439195, -43.20973243064549 -22.905532119328537, -43.209547633135266 -22.905598240934978, -43.209370206526344 -22.905682157471304, -43.20920185953396 -22.905783060775395, -43.209044213431675 -22.905899979093274, -43.20889878643763 -22.906031786437627, -43.20876697909328 -22.906177213431672, -43.2086500607754 -22.90633485953396, -43.2085491574713 -22.90650320652635, -43.20846524093498 -22.90668063313527, -43.20839911932853 -22.906865430645492, -43.20835142943919 -22.907055819355968, -43.208322630546654 -22.90724996571934, -43.208313 -22.907446))" +001390,Praça da Bandeira,Grande Tijuca,88a8a0612dfffff,TRUE,455,-22.907446,-43.210313,PO,G,,"POLYGON ((-43.208313 -22.907446, -43.208322630546654 -22.90764203428066, -43.20835142943919 -22.907836180644033, -43.20839911932853 -22.908026569354508, -43.20846524093498 -22.90821136686473, -43.2085491574713 -22.90838879347365, -43.2086500607754 -22.90855714046604, -43.20876697909328 -22.90871478656833, -43.20889878643763 -22.908860213562374, -43.209044213431675 -22.908992020906727, -43.20920185953396 -22.909108939224605, -43.209370206526344 -22.909209842528696, -43.209547633135266 -22.909293759065022, -43.20973243064549 -22.909359880671463, -43.20992281935597 -22.909407570560806, -43.21011696571934 -22.909436369453346, -43.210313 -22.909446, -43.21050903428066 -22.909436369453346, -43.21070318064403 -22.909407570560806, -43.21089356935451 -22.909359880671463, -43.21107836686473 -22.909293759065022, -43.211255793473654 -22.909209842528696, -43.211424140466036 -22.909108939224605, -43.211581786568324 -22.908992020906727, -43.21172721356237 -22.908860213562374, -43.21185902090672 -22.90871478656833, -43.2119759392246 -22.90855714046604, -43.212076842528695 -22.90838879347365, -43.21216075906502 -22.90821136686473, -43.212226880671466 -22.908026569354508, -43.21227457056081 -22.907836180644033, -43.212303369453345 -22.90764203428066, -43.212313 -22.907446, -43.212303369453345 -22.90724996571934, -43.21227457056081 -22.907055819355968, -43.212226880671466 -22.906865430645492, -43.21216075906502 -22.90668063313527, -43.212076842528695 -22.90650320652635, -43.2119759392246 -22.90633485953396, -43.21185902090672 -22.906177213431672, -43.21172721356237 -22.906031786437627, -43.211581786568324 -22.905899979093274, -43.211424140466036 -22.905783060775395, -43.211255793473654 -22.905682157471304, -43.21107836686473 -22.905598240934978, -43.21089356935451 -22.905532119328537, -43.21070318064403 -22.905484429439195, -43.21050903428066 -22.905455630546655, -43.210313 -22.905446, -43.21011696571934 -22.905455630546655, -43.20992281935597 -22.905484429439195, -43.20973243064549 -22.905532119328537, -43.209547633135266 -22.905598240934978, -43.209370206526344 -22.905682157471304, -43.20920185953396 -22.905783060775395, -43.209044213431675 -22.905899979093274, -43.20889878643763 -22.906031786437627, -43.20876697909328 -22.906177213431672, -43.2086500607754 -22.90633485953396, -43.2085491574713 -22.90650320652635, -43.20846524093498 -22.90668063313527, -43.20839911932853 -22.906865430645492, -43.20835142943919 -22.907055819355968, -43.208322630546654 -22.90724996571934, -43.208313 -22.907446))" +001391,Itanhangá,Barra da Tijuca,88a8a07197fffff,TRUE,350,-23.004144,-43.30396613,PO,J,Rio da Cachoeira,"POLYGON ((-43.3019661326 -23.0041439955, -43.30197576314666 -23.00434002978066, -43.302004562039194 -23.004534176144034, -43.30205225192854 -23.00472456485451, -43.30211837353498 -23.00490936236473, -43.30220229007131 -23.005086788973653, -43.3023031933754 -23.005255135966042, -43.30242011169328 -23.00541278206833, -43.30255191903763 -23.005558209062375, -43.30269734603168 -23.005690016406728, -43.302854992133966 -23.005806934724607, -43.30302333912635 -23.005907838028698, -43.30320076573527 -23.005991754565024, -43.30338556324549 -23.006057876171464, -43.30357595195597 -23.006105566060807, -43.30377009831934 -23.006134364953347, -43.3039661326 -23.0061439955, -43.304162166880666 -23.006134364953347, -43.304356313244035 -23.006105566060807, -43.304546701954514 -23.006057876171464, -43.30473149946474 -23.005991754565024, -43.30490892607366 -23.005907838028698, -43.30507727306604 -23.005806934724607, -43.30523491916833 -23.005690016406728, -43.30538034616237 -23.005558209062375, -43.305512153506726 -23.00541278206833, -43.305629071824605 -23.005255135966042, -43.3057299751287 -23.005086788973653, -43.305813891665025 -23.00490936236473, -43.30588001327147 -23.00472456485451, -43.30592770316081 -23.004534176144034, -43.30595650205335 -23.00434002978066, -43.305966132600005 -23.0041439955, -43.30595650205335 -23.003947961219342, -43.30592770316081 -23.00375381485597, -43.30588001327147 -23.003563426145494, -43.305813891665025 -23.00337862863527, -43.3057299751287 -23.00320120202635, -43.305629071824605 -23.00303285503396, -43.305512153506726 -23.002875208931673, -43.30538034616237 -23.002729781937628, -43.30523491916833 -23.002597974593275, -43.30507727306604 -23.002481056275396, -43.30490892607366 -23.002380152971305, -43.30473149946474 -23.00229623643498, -43.304546701954514 -23.00223011482854, -43.304356313244035 -23.002182424939196, -43.304162166880666 -23.002153626046656, -43.3039661326 -23.002143995500003, -43.30377009831934 -23.002153626046656, -43.30357595195597 -23.002182424939196, -43.30338556324549 -23.00223011482854, -43.30320076573527 -23.00229623643498, -43.30302333912635 -23.002380152971305, -43.302854992133966 -23.002481056275396, -43.30269734603168 -23.002597974593275, -43.30255191903763 -23.002729781937628, -43.30242011169328 -23.002875208931673, -43.3023031933754 -23.00303285503396, -43.30220229007131 -23.00320120202635, -43.30211837353498 -23.00337862863527, -43.30205225192854 -23.003563426145494, -43.302004562039194 -23.00375381485597, -43.30197576314666 -23.003947961219342, -43.3019661326 -23.0041439955))" +001392,Itanhangá,Barra da Tijuca,88a8a07197fffff,TRUE,350,-23.004144,-43.30396613,PO,J,Rio da Cachoeira,"POLYGON ((-43.3019661326 -23.0041439955, -43.30197576314666 -23.00434002978066, -43.302004562039194 -23.004534176144034, -43.30205225192854 -23.00472456485451, -43.30211837353498 -23.00490936236473, -43.30220229007131 -23.005086788973653, -43.3023031933754 -23.005255135966042, -43.30242011169328 -23.00541278206833, -43.30255191903763 -23.005558209062375, -43.30269734603168 -23.005690016406728, -43.302854992133966 -23.005806934724607, -43.30302333912635 -23.005907838028698, -43.30320076573527 -23.005991754565024, -43.30338556324549 -23.006057876171464, -43.30357595195597 -23.006105566060807, -43.30377009831934 -23.006134364953347, -43.3039661326 -23.0061439955, -43.304162166880666 -23.006134364953347, -43.304356313244035 -23.006105566060807, -43.304546701954514 -23.006057876171464, -43.30473149946474 -23.005991754565024, -43.30490892607366 -23.005907838028698, -43.30507727306604 -23.005806934724607, -43.30523491916833 -23.005690016406728, -43.30538034616237 -23.005558209062375, -43.305512153506726 -23.00541278206833, -43.305629071824605 -23.005255135966042, -43.3057299751287 -23.005086788973653, -43.305813891665025 -23.00490936236473, -43.30588001327147 -23.00472456485451, -43.30592770316081 -23.004534176144034, -43.30595650205335 -23.00434002978066, -43.305966132600005 -23.0041439955, -43.30595650205335 -23.003947961219342, -43.30592770316081 -23.00375381485597, -43.30588001327147 -23.003563426145494, -43.305813891665025 -23.00337862863527, -43.3057299751287 -23.00320120202635, -43.305629071824605 -23.00303285503396, -43.305512153506726 -23.002875208931673, -43.30538034616237 -23.002729781937628, -43.30523491916833 -23.002597974593275, -43.30507727306604 -23.002481056275396, -43.30490892607366 -23.002380152971305, -43.30473149946474 -23.00229623643498, -43.304546701954514 -23.00223011482854, -43.304356313244035 -23.002182424939196, -43.304162166880666 -23.002153626046656, -43.3039661326 -23.002143995500003, -43.30377009831934 -23.002153626046656, -43.30357595195597 -23.002182424939196, -43.30338556324549 -23.00223011482854, -43.30320076573527 -23.00229623643498, -43.30302333912635 -23.002380152971305, -43.302854992133966 -23.002481056275396, -43.30269734603168 -23.002597974593275, -43.30255191903763 -23.002729781937628, -43.30242011169328 -23.002875208931673, -43.3023031933754 -23.00303285503396, -43.30220229007131 -23.00320120202635, -43.30211837353498 -23.00337862863527, -43.30205225192854 -23.003563426145494, -43.302004562039194 -23.00375381485597, -43.30197576314666 -23.003947961219342, -43.3019661326 -23.0041439955))" +001393,Jardim Botânico,Zona Sul,88a8a0788bfffff,TRUE,307,-22.961089,-43.20470276,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2027027596 -22.9610889977, -43.20271239014666 -22.96128503198066, -43.202741189039195 -22.96147917834403, -43.20278887892854 -22.961669567054507, -43.20285500053498 -22.96185436456473, -43.20293891707131 -22.96203179117365, -43.2030398203754 -22.96220013816604, -43.20315673869328 -22.962357784268328, -43.20328854603763 -22.962503211262373, -43.20343397303168 -22.962635018606726, -43.20359161913397 -22.962751936924604, -43.20375996612635 -22.962852840228695, -43.20393739273527 -22.96293675676502, -43.20412219024549 -22.963002878371462, -43.20431257895597 -22.963050568260805, -43.20450672531934 -22.963079367153345, -43.2047027596 -22.963088997699998, -43.204898793880666 -22.963079367153345, -43.205092940244036 -22.963050568260805, -43.205283328954515 -22.963002878371462, -43.20546812646474 -22.96293675676502, -43.20564555307366 -22.962852840228695, -43.20581390006604 -22.962751936924604, -43.20597154616833 -22.962635018606726, -43.20611697316237 -22.962503211262373, -43.206248780506726 -22.962357784268328, -43.206365698824605 -22.96220013816604, -43.2064666021287 -22.96203179117365, -43.206550518665026 -22.96185436456473, -43.20661664027147 -22.961669567054507, -43.20666433016081 -22.96147917834403, -43.20669312905335 -22.96128503198066, -43.206702759600006 -22.9610889977, -43.20669312905335 -22.96089296341934, -43.20666433016081 -22.960698817055967, -43.20661664027147 -22.96050842834549, -43.206550518665026 -22.96032363083527, -43.2064666021287 -22.960146204226348, -43.206365698824605 -22.95997785723396, -43.206248780506726 -22.95982021113167, -43.20611697316237 -22.959674784137626, -43.20597154616833 -22.959542976793273, -43.20581390006604 -22.959426058475394, -43.20564555307366 -22.959325155171303, -43.20546812646474 -22.959241238634977, -43.205283328954515 -22.959175117028536, -43.205092940244036 -22.959127427139194, -43.204898793880666 -22.959098628246654, -43.2047027596 -22.9590889977, -43.20450672531934 -22.959098628246654, -43.20431257895597 -22.959127427139194, -43.20412219024549 -22.959175117028536, -43.20393739273527 -22.959241238634977, -43.20375996612635 -22.959325155171303, -43.20359161913397 -22.959426058475394, -43.20343397303168 -22.959542976793273, -43.20328854603763 -22.959674784137626, -43.20315673869328 -22.95982021113167, -43.2030398203754 -22.95997785723396, -43.20293891707131 -22.960146204226348, -43.20285500053498 -22.96032363083527, -43.20278887892854 -22.96050842834549, -43.202741189039195 -22.960698817055967, -43.20271239014666 -22.96089296341934, -43.2027027596 -22.9610889977))" +001394,Lagoa,Zona Sul,88a8a07889fffff,TRUE,340,-22.96310843,-43.20333061,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2013306085 -22.9631084266, -43.20134023904666 -22.96330446088066, -43.201369037939195 -22.963498607244034, -43.20141672782854 -22.96368899595451, -43.20148284943498 -22.96387379346473, -43.20156676597131 -22.964051220073653, -43.2016676692754 -22.964219567066042, -43.20178458759328 -22.96437721316833, -43.20191639493763 -22.964522640162375, -43.20206182193168 -22.964654447506728, -43.20221946803397 -22.964771365824607, -43.20238781502635 -22.964872269128698, -43.20256524163527 -22.964956185665024, -43.20275003914549 -22.965022307271465, -43.20294042785597 -22.965069997160807, -43.20313457421934 -22.965098796053347, -43.2033306085 -22.9651084266, -43.203526642780666 -22.965098796053347, -43.203720789144036 -22.965069997160807, -43.203911177854515 -22.965022307271465, -43.20409597536474 -22.964956185665024, -43.20427340197366 -22.964872269128698, -43.20444174896604 -22.964771365824607, -43.20459939506833 -22.964654447506728, -43.20474482206237 -22.964522640162375, -43.204876629406726 -22.96437721316833, -43.204993547724605 -22.964219567066042, -43.2050944510287 -22.964051220073653, -43.205178367565026 -22.96387379346473, -43.20524448917147 -22.96368899595451, -43.20529217906081 -22.963498607244034, -43.20532097795335 -22.96330446088066, -43.205330608500006 -22.9631084266, -43.20532097795335 -22.962912392319343, -43.20529217906081 -22.96271824595597, -43.20524448917147 -22.962527857245494, -43.205178367565026 -22.96234305973527, -43.2050944510287 -22.96216563312635, -43.204993547724605 -22.96199728613396, -43.204876629406726 -22.961839640031673, -43.20474482206237 -22.961694213037628, -43.20459939506833 -22.961562405693275, -43.20444174896604 -22.961445487375396, -43.20427340197366 -22.961344584071306, -43.20409597536474 -22.96126066753498, -43.203911177854515 -22.96119454592854, -43.203720789144036 -22.961146856039196, -43.203526642780666 -22.961118057146656, -43.2033306085 -22.961108426600003, -43.20313457421934 -22.961118057146656, -43.20294042785597 -22.961146856039196, -43.20275003914549 -22.96119454592854, -43.20256524163527 -22.96126066753498, -43.20238781502635 -22.961344584071306, -43.20221946803397 -22.961445487375396, -43.20206182193168 -22.961562405693275, -43.20191639493763 -22.961694213037628, -43.20178458759328 -22.961839640031673, -43.2016676692754 -22.96199728613396, -43.20156676597131 -22.96216563312635, -43.20148284943498 -22.96234305973527, -43.20141672782854 -22.962527857245494, -43.201369037939195 -22.96271824595597, -43.20134023904666 -22.962912392319343, -43.2013306085 -22.9631084266))" +001395,Lagoa,Zona Sul,88a8a07889fffff,TRUE,340,-22.96310843,-43.20333061,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2013306085 -22.9631084266, -43.20134023904666 -22.96330446088066, -43.201369037939195 -22.963498607244034, -43.20141672782854 -22.96368899595451, -43.20148284943498 -22.96387379346473, -43.20156676597131 -22.964051220073653, -43.2016676692754 -22.964219567066042, -43.20178458759328 -22.96437721316833, -43.20191639493763 -22.964522640162375, -43.20206182193168 -22.964654447506728, -43.20221946803397 -22.964771365824607, -43.20238781502635 -22.964872269128698, -43.20256524163527 -22.964956185665024, -43.20275003914549 -22.965022307271465, -43.20294042785597 -22.965069997160807, -43.20313457421934 -22.965098796053347, -43.2033306085 -22.9651084266, -43.203526642780666 -22.965098796053347, -43.203720789144036 -22.965069997160807, -43.203911177854515 -22.965022307271465, -43.20409597536474 -22.964956185665024, -43.20427340197366 -22.964872269128698, -43.20444174896604 -22.964771365824607, -43.20459939506833 -22.964654447506728, -43.20474482206237 -22.964522640162375, -43.204876629406726 -22.96437721316833, -43.204993547724605 -22.964219567066042, -43.2050944510287 -22.964051220073653, -43.205178367565026 -22.96387379346473, -43.20524448917147 -22.96368899595451, -43.20529217906081 -22.963498607244034, -43.20532097795335 -22.96330446088066, -43.205330608500006 -22.9631084266, -43.20532097795335 -22.962912392319343, -43.20529217906081 -22.96271824595597, -43.20524448917147 -22.962527857245494, -43.205178367565026 -22.96234305973527, -43.2050944510287 -22.96216563312635, -43.204993547724605 -22.96199728613396, -43.204876629406726 -22.961839640031673, -43.20474482206237 -22.961694213037628, -43.20459939506833 -22.961562405693275, -43.20444174896604 -22.961445487375396, -43.20427340197366 -22.961344584071306, -43.20409597536474 -22.96126066753498, -43.203911177854515 -22.96119454592854, -43.203720789144036 -22.961146856039196, -43.203526642780666 -22.961118057146656, -43.2033306085 -22.961108426600003, -43.20313457421934 -22.961118057146656, -43.20294042785597 -22.961146856039196, -43.20275003914549 -22.96119454592854, -43.20256524163527 -22.96126066753498, -43.20238781502635 -22.961344584071306, -43.20221946803397 -22.961445487375396, -43.20206182193168 -22.961562405693275, -43.20191639493763 -22.961694213037628, -43.20178458759328 -22.961839640031673, -43.2016676692754 -22.96199728613396, -43.20156676597131 -22.96216563312635, -43.20148284943498 -22.96234305973527, -43.20141672782854 -22.962527857245494, -43.201369037939195 -22.96271824595597, -43.20134023904666 -22.962912392319343, -43.2013306085 -22.9631084266))" +001396,Flamengo,Zona Sul,88a8a078a7fffff,,,,,,,, +001397,Botafogo,Zona Sul,88a8a078a3fffff,,,,,,,, +001398,Flamengo,Zona Sul,88a8a078a3fffff,,,,,,,, +001399,Penha Circular,Zona Norte,88a8a06f5dfffff,,,,,,,, +001400,Botafogo,Zona Sul,88a8a078abfffff,TRUE,310,-22.94645425,-43.18171682,PO,ZS,Praia de Botafogo,"POLYGON ((-43.1797168186 -22.9464542504, -43.179726449146656 -22.946650284680658, -43.17975524803919 -22.94684443104403, -43.179802937928535 -22.947034819754506, -43.17986905953498 -22.94721961726473, -43.179952976071306 -22.94739704387365, -43.1800538793754 -22.94756539086604, -43.18017079769328 -22.947723036968327, -43.18030260503763 -22.947868463962372, -43.18044803203168 -22.948000271306725, -43.180605678133965 -22.948117189624604, -43.18077402512635 -22.948218092928695, -43.18095145173527 -22.94830200946502, -43.18113624924549 -22.94836813107146, -43.18132663795597 -22.948415820960804, -43.18152078431934 -22.948444619853344, -43.1817168186 -22.948454250399998, -43.181912852880664 -22.948444619853344, -43.182106999244034 -22.948415820960804, -43.18229738795451 -22.94836813107146, -43.182482185464735 -22.94830200946502, -43.18265961207366 -22.948218092928695, -43.18282795906604 -22.948117189624604, -43.18298560516833 -22.948000271306725, -43.18313103216237 -22.947868463962372, -43.183262839506725 -22.947723036968327, -43.1833797578246 -22.94756539086604, -43.1834806611287 -22.94739704387365, -43.183564577665024 -22.94721961726473, -43.18363069927147 -22.947034819754506, -43.18367838916081 -22.94684443104403, -43.18370718805335 -22.946650284680658, -43.183716818600004 -22.9464542504, -43.18370718805335 -22.94625821611934, -43.18367838916081 -22.946064069755966, -43.18363069927147 -22.94587368104549, -43.183564577665024 -22.94568888353527, -43.1834806611287 -22.945511456926347, -43.1833797578246 -22.945343109933958, -43.183262839506725 -22.94518546383167, -43.18313103216237 -22.945040036837625, -43.18298560516833 -22.944908229493272, -43.18282795906604 -22.944791311175393, -43.18265961207366 -22.944690407871303, -43.182482185464735 -22.944606491334977, -43.18229738795451 -22.944540369728536, -43.182106999244034 -22.944492679839193, -43.181912852880664 -22.944463880946653, -43.1817168186 -22.9444542504, -43.18152078431934 -22.944463880946653, -43.18132663795597 -22.944492679839193, -43.18113624924549 -22.944540369728536, -43.18095145173527 -22.944606491334977, -43.18077402512635 -22.944690407871303, -43.180605678133965 -22.944791311175393, -43.18044803203168 -22.944908229493272, -43.18030260503763 -22.945040036837625, -43.18017079769328 -22.94518546383167, -43.1800538793754 -22.945343109933958, -43.179952976071306 -22.945511456926347, -43.17986905953498 -22.94568888353527, -43.179802937928535 -22.94587368104549, -43.17975524803919 -22.946064069755966, -43.179726449146656 -22.94625821611934, -43.1797168186 -22.9464542504))" +001401,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +001402,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +001403,Leblon,Zona Sul,88a8a078d9fffff,TRUE,309,-22.97730205,-43.22173265,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.219732653899996 -22.9773020539, -43.21974228444665 -22.97749808818066, -43.21977108333919 -22.977692234544033, -43.21981877322853 -22.97788262325451, -43.219884894834976 -22.97806742076473, -43.2199688113713 -22.978244847373652, -43.2200697146754 -22.97841319436604, -43.220186632993276 -22.97857084046833, -43.22031844033763 -22.978716267462374, -43.220463867331674 -22.978848074806727, -43.22062151343396 -22.978964993124606, -43.22078986042634 -22.979065896428697, -43.220967287035265 -22.979149812965023, -43.22115208454549 -22.979215934571464, -43.221342473255966 -22.979263624460806, -43.221536619619336 -22.979292423353346, -43.2217326539 -22.9793020539, -43.22192868818066 -22.979292423353346, -43.22212283454403 -22.979263624460806, -43.22231322325451 -22.979215934571464, -43.22249802076473 -22.979149812965023, -43.22267544737365 -22.979065896428697, -43.222843794366035 -22.978964993124606, -43.22300144046832 -22.978848074806727, -43.22314686746237 -22.978716267462374, -43.22327867480672 -22.97857084046833, -43.2233955931246 -22.97841319436604, -43.223496496428695 -22.978244847373652, -43.22358041296502 -22.97806742076473, -43.223646534571465 -22.97788262325451, -43.22369422446081 -22.977692234544033, -43.223723023353344 -22.97749808818066, -43.2237326539 -22.9773020539, -43.223723023353344 -22.97710601961934, -43.22369422446081 -22.97691187325597, -43.223646534571465 -22.976721484545493, -43.22358041296502 -22.97653668703527, -43.223496496428695 -22.97635926042635, -43.2233955931246 -22.97619091343396, -43.22327867480672 -22.976033267331673, -43.22314686746237 -22.975887840337627, -43.22300144046832 -22.975756032993274, -43.222843794366035 -22.975639114675396, -43.22267544737365 -22.975538211371305, -43.22249802076473 -22.97545429483498, -43.22231322325451 -22.975388173228538, -43.22212283454403 -22.975340483339195, -43.22192868818066 -22.975311684446655, -43.2217326539 -22.975302053900002, -43.221536619619336 -22.975311684446655, -43.221342473255966 -22.975340483339195, -43.22115208454549 -22.975388173228538, -43.220967287035265 -22.97545429483498, -43.22078986042634 -22.975538211371305, -43.22062151343396 -22.975639114675396, -43.220463867331674 -22.975756032993274, -43.22031844033763 -22.975887840337627, -43.220186632993276 -22.976033267331673, -43.2200697146754 -22.97619091343396, -43.2199688113713 -22.97635926042635, -43.219884894834976 -22.97653668703527, -43.21981877322853 -22.976721484545493, -43.21977108333919 -22.97691187325597, -43.21974228444665 -22.97710601961934, -43.219732653899996 -22.9773020539))" +001404,Leblon,Zona Sul,88a8a078d9fffff,TRUE,309,-22.97730205,-43.22173265,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.219732653899996 -22.9773020539, -43.21974228444665 -22.97749808818066, -43.21977108333919 -22.977692234544033, -43.21981877322853 -22.97788262325451, -43.219884894834976 -22.97806742076473, -43.2199688113713 -22.978244847373652, -43.2200697146754 -22.97841319436604, -43.220186632993276 -22.97857084046833, -43.22031844033763 -22.978716267462374, -43.220463867331674 -22.978848074806727, -43.22062151343396 -22.978964993124606, -43.22078986042634 -22.979065896428697, -43.220967287035265 -22.979149812965023, -43.22115208454549 -22.979215934571464, -43.221342473255966 -22.979263624460806, -43.221536619619336 -22.979292423353346, -43.2217326539 -22.9793020539, -43.22192868818066 -22.979292423353346, -43.22212283454403 -22.979263624460806, -43.22231322325451 -22.979215934571464, -43.22249802076473 -22.979149812965023, -43.22267544737365 -22.979065896428697, -43.222843794366035 -22.978964993124606, -43.22300144046832 -22.978848074806727, -43.22314686746237 -22.978716267462374, -43.22327867480672 -22.97857084046833, -43.2233955931246 -22.97841319436604, -43.223496496428695 -22.978244847373652, -43.22358041296502 -22.97806742076473, -43.223646534571465 -22.97788262325451, -43.22369422446081 -22.977692234544033, -43.223723023353344 -22.97749808818066, -43.2237326539 -22.9773020539, -43.223723023353344 -22.97710601961934, -43.22369422446081 -22.97691187325597, -43.223646534571465 -22.976721484545493, -43.22358041296502 -22.97653668703527, -43.223496496428695 -22.97635926042635, -43.2233955931246 -22.97619091343396, -43.22327867480672 -22.976033267331673, -43.22314686746237 -22.975887840337627, -43.22300144046832 -22.975756032993274, -43.222843794366035 -22.975639114675396, -43.22267544737365 -22.975538211371305, -43.22249802076473 -22.97545429483498, -43.22231322325451 -22.975388173228538, -43.22212283454403 -22.975340483339195, -43.22192868818066 -22.975311684446655, -43.2217326539 -22.975302053900002, -43.221536619619336 -22.975311684446655, -43.221342473255966 -22.975340483339195, -43.22115208454549 -22.975388173228538, -43.220967287035265 -22.97545429483498, -43.22078986042634 -22.975538211371305, -43.22062151343396 -22.975639114675396, -43.220463867331674 -22.975756032993274, -43.22031844033763 -22.975887840337627, -43.220186632993276 -22.976033267331673, -43.2200697146754 -22.97619091343396, -43.2199688113713 -22.97635926042635, -43.219884894834976 -22.97653668703527, -43.21981877322853 -22.976721484545493, -43.21977108333919 -22.97691187325597, -43.21974228444665 -22.97710601961934, -43.219732653899996 -22.9773020539))" +001405,Leblon,Zona Sul,88a8a078d9fffff,TRUE,309,-22.97730205,-43.22173265,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.219732653899996 -22.9773020539, -43.21974228444665 -22.97749808818066, -43.21977108333919 -22.977692234544033, -43.21981877322853 -22.97788262325451, -43.219884894834976 -22.97806742076473, -43.2199688113713 -22.978244847373652, -43.2200697146754 -22.97841319436604, -43.220186632993276 -22.97857084046833, -43.22031844033763 -22.978716267462374, -43.220463867331674 -22.978848074806727, -43.22062151343396 -22.978964993124606, -43.22078986042634 -22.979065896428697, -43.220967287035265 -22.979149812965023, -43.22115208454549 -22.979215934571464, -43.221342473255966 -22.979263624460806, -43.221536619619336 -22.979292423353346, -43.2217326539 -22.9793020539, -43.22192868818066 -22.979292423353346, -43.22212283454403 -22.979263624460806, -43.22231322325451 -22.979215934571464, -43.22249802076473 -22.979149812965023, -43.22267544737365 -22.979065896428697, -43.222843794366035 -22.978964993124606, -43.22300144046832 -22.978848074806727, -43.22314686746237 -22.978716267462374, -43.22327867480672 -22.97857084046833, -43.2233955931246 -22.97841319436604, -43.223496496428695 -22.978244847373652, -43.22358041296502 -22.97806742076473, -43.223646534571465 -22.97788262325451, -43.22369422446081 -22.977692234544033, -43.223723023353344 -22.97749808818066, -43.2237326539 -22.9773020539, -43.223723023353344 -22.97710601961934, -43.22369422446081 -22.97691187325597, -43.223646534571465 -22.976721484545493, -43.22358041296502 -22.97653668703527, -43.223496496428695 -22.97635926042635, -43.2233955931246 -22.97619091343396, -43.22327867480672 -22.976033267331673, -43.22314686746237 -22.975887840337627, -43.22300144046832 -22.975756032993274, -43.222843794366035 -22.975639114675396, -43.22267544737365 -22.975538211371305, -43.22249802076473 -22.97545429483498, -43.22231322325451 -22.975388173228538, -43.22212283454403 -22.975340483339195, -43.22192868818066 -22.975311684446655, -43.2217326539 -22.975302053900002, -43.221536619619336 -22.975311684446655, -43.221342473255966 -22.975340483339195, -43.22115208454549 -22.975388173228538, -43.220967287035265 -22.97545429483498, -43.22078986042634 -22.975538211371305, -43.22062151343396 -22.975639114675396, -43.220463867331674 -22.975756032993274, -43.22031844033763 -22.975887840337627, -43.220186632993276 -22.976033267331673, -43.2200697146754 -22.97619091343396, -43.2199688113713 -22.97635926042635, -43.219884894834976 -22.97653668703527, -43.21981877322853 -22.976721484545493, -43.21977108333919 -22.97691187325597, -43.21974228444665 -22.97710601961934, -43.219732653899996 -22.9773020539))" +001406,Leblon,Zona Sul,88a8a07ab3fffff,,,,,,,, +001407,Leblon,Zona Sul,88a8a07ab3fffff,,,,,,,, +001408,Leblon,Zona Sul,88a8a07ab3fffff,,,,,,,, +001409,Leblon,Zona Sul,88a8a07ab3fffff,,,,,,,, +001410,Gávea,Zona Sul,88a8a06365fffff,TRUE,294,-22.97878473,-43.22864049,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.226640489999994 -22.9787847288, -43.22665012054665 -22.97898076308066, -43.22667891943919 -22.979174909444033, -43.22672660932853 -22.97936529815451, -43.226792730934974 -22.97955009566473, -43.2268766474713 -22.979727522273652, -43.226977550775395 -22.97989586926604, -43.227094469093274 -22.98005351536833, -43.22722627643763 -22.980198942362374, -43.22737170343167 -22.980330749706727, -43.22752934953396 -22.980447668024606, -43.22769769652634 -22.980548571328697, -43.22787512313526 -22.980632487865023, -43.228059920645485 -22.980698609471464, -43.228250309355964 -22.980746299360806, -43.228444455719334 -22.980775098253346, -43.22864049 -22.9807847288, -43.22883652428066 -22.980775098253346, -43.22903067064403 -22.980746299360806, -43.22922105935451 -22.980698609471464, -43.22940585686473 -22.980632487865023, -43.22958328347365 -22.980548571328697, -43.22975163046603 -22.980447668024606, -43.22990927656832 -22.980330749706727, -43.23005470356237 -22.980198942362374, -43.23018651090672 -22.98005351536833, -43.2303034292246 -22.97989586926604, -43.23040433252869 -22.979727522273652, -43.23048824906502 -22.97955009566473, -43.23055437067146 -22.97936529815451, -43.230602060560805 -22.979174909444033, -43.23063085945334 -22.97898076308066, -43.23064049 -22.9787847288, -43.23063085945334 -22.978588694519342, -43.230602060560805 -22.97839454815597, -43.23055437067146 -22.978204159445493, -43.23048824906502 -22.97801936193527, -43.23040433252869 -22.97784193532635, -43.2303034292246 -22.97767358833396, -43.23018651090672 -22.977515942231673, -43.23005470356237 -22.977370515237627, -43.22990927656832 -22.977238707893274, -43.22975163046603 -22.977121789575396, -43.22958328347365 -22.977020886271305, -43.22940585686473 -22.97693696973498, -43.22922105935451 -22.976870848128538, -43.22903067064403 -22.976823158239196, -43.22883652428066 -22.976794359346655, -43.22864049 -22.976784728800002, -43.228444455719334 -22.976794359346655, -43.228250309355964 -22.976823158239196, -43.228059920645485 -22.976870848128538, -43.22787512313526 -22.97693696973498, -43.22769769652634 -22.977020886271305, -43.22752934953396 -22.977121789575396, -43.22737170343167 -22.977238707893274, -43.22722627643763 -22.977370515237627, -43.227094469093274 -22.977515942231673, -43.226977550775395 -22.97767358833396, -43.2268766474713 -22.97784193532635, -43.226792730934974 -22.97801936193527, -43.22672660932853 -22.978204159445493, -43.22667891943919 -22.97839454815597, -43.22665012054665 -22.978588694519342, -43.226640489999994 -22.9787847288))" +001411,Gávea,Zona Sul,88a8a06365fffff,TRUE,294,-22.97878473,-43.22864049,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.226640489999994 -22.9787847288, -43.22665012054665 -22.97898076308066, -43.22667891943919 -22.979174909444033, -43.22672660932853 -22.97936529815451, -43.226792730934974 -22.97955009566473, -43.2268766474713 -22.979727522273652, -43.226977550775395 -22.97989586926604, -43.227094469093274 -22.98005351536833, -43.22722627643763 -22.980198942362374, -43.22737170343167 -22.980330749706727, -43.22752934953396 -22.980447668024606, -43.22769769652634 -22.980548571328697, -43.22787512313526 -22.980632487865023, -43.228059920645485 -22.980698609471464, -43.228250309355964 -22.980746299360806, -43.228444455719334 -22.980775098253346, -43.22864049 -22.9807847288, -43.22883652428066 -22.980775098253346, -43.22903067064403 -22.980746299360806, -43.22922105935451 -22.980698609471464, -43.22940585686473 -22.980632487865023, -43.22958328347365 -22.980548571328697, -43.22975163046603 -22.980447668024606, -43.22990927656832 -22.980330749706727, -43.23005470356237 -22.980198942362374, -43.23018651090672 -22.98005351536833, -43.2303034292246 -22.97989586926604, -43.23040433252869 -22.979727522273652, -43.23048824906502 -22.97955009566473, -43.23055437067146 -22.97936529815451, -43.230602060560805 -22.979174909444033, -43.23063085945334 -22.97898076308066, -43.23064049 -22.9787847288, -43.23063085945334 -22.978588694519342, -43.230602060560805 -22.97839454815597, -43.23055437067146 -22.978204159445493, -43.23048824906502 -22.97801936193527, -43.23040433252869 -22.97784193532635, -43.2303034292246 -22.97767358833396, -43.23018651090672 -22.977515942231673, -43.23005470356237 -22.977370515237627, -43.22990927656832 -22.977238707893274, -43.22975163046603 -22.977121789575396, -43.22958328347365 -22.977020886271305, -43.22940585686473 -22.97693696973498, -43.22922105935451 -22.976870848128538, -43.22903067064403 -22.976823158239196, -43.22883652428066 -22.976794359346655, -43.22864049 -22.976784728800002, -43.228444455719334 -22.976794359346655, -43.228250309355964 -22.976823158239196, -43.228059920645485 -22.976870848128538, -43.22787512313526 -22.97693696973498, -43.22769769652634 -22.977020886271305, -43.22752934953396 -22.977121789575396, -43.22737170343167 -22.977238707893274, -43.22722627643763 -22.977370515237627, -43.227094469093274 -22.977515942231673, -43.226977550775395 -22.97767358833396, -43.2268766474713 -22.97784193532635, -43.226792730934974 -22.97801936193527, -43.22672660932853 -22.978204159445493, -43.22667891943919 -22.97839454815597, -43.22665012054665 -22.978588694519342, -43.226640489999994 -22.9787847288))" +001412,Vila da Penha,Zona Norte,88a8a06e6bfffff,TRUE,364,-22.83767447,-43.31294326,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3109432626159 -22.83767446949199, -43.31095289316256 -22.83787050377265, -43.310981692055094 -22.838064650136022, -43.31102938194444 -22.838255038846498, -43.31109550355088 -22.83843983635672, -43.31117942008721 -22.83861726296564, -43.3112803233913 -22.83878560995803, -43.31139724170918 -22.83894325606032, -43.31152904905353 -22.839088683054364, -43.31167447604758 -22.839220490398716, -43.311832122149866 -22.839337408716595, -43.31200046914225 -22.839438312020686, -43.31217789575117 -22.839522228557012, -43.31236269326139 -22.839588350163453, -43.31255308197187 -22.839636040052795, -43.31274722833524 -22.839664838945335, -43.3129432626159 -22.83967446949199, -43.313139296896566 -22.839664838945335, -43.313333443259936 -22.839636040052795, -43.313523831970414 -22.839588350163453, -43.31370862948064 -22.839522228557012, -43.31388605608956 -22.839438312020686, -43.31405440308194 -22.839337408716595, -43.31421204918423 -22.839220490398716, -43.31435747617827 -22.839088683054364, -43.314489283522626 -22.83894325606032, -43.314606201840505 -22.83878560995803, -43.3147071051446 -22.83861726296564, -43.314791021680925 -22.83843983635672, -43.31485714328737 -22.838255038846498, -43.31490483317671 -22.838064650136022, -43.31493363206925 -22.83787050377265, -43.314943262615905 -22.83767446949199, -43.31493363206925 -22.83747843521133, -43.31490483317671 -22.837284288847957, -43.31485714328737 -22.837093900137482, -43.314791021680925 -22.83690910262726, -43.3147071051446 -22.83673167601834, -43.314606201840505 -22.83656332902595, -43.314489283522626 -22.83640568292366, -43.31435747617827 -22.836260255929616, -43.31421204918423 -22.836128448585264, -43.31405440308194 -22.836011530267385, -43.31388605608956 -22.835910626963294, -43.31370862948064 -22.835826710426968, -43.313523831970414 -22.835760588820527, -43.313333443259936 -22.835712898931185, -43.313139296896566 -22.835684100038645, -43.3129432626159 -22.83567446949199, -43.31274722833524 -22.835684100038645, -43.31255308197187 -22.835712898931185, -43.31236269326139 -22.835760588820527, -43.31217789575117 -22.835826710426968, -43.31200046914225 -22.835910626963294, -43.311832122149866 -22.836011530267385, -43.31167447604758 -22.836128448585264, -43.31152904905353 -22.836260255929616, -43.31139724170918 -22.83640568292366, -43.3112803233913 -22.83656332902595, -43.31117942008721 -22.83673167601834, -43.31109550355088 -22.83690910262726, -43.31102938194444 -22.837093900137482, -43.310981692055094 -22.837284288847957, -43.31095289316256 -22.83747843521133, -43.3109432626159 -22.83767446949199))" +001413,Madureira,Zona Norte,88a8a06085fffff,TRUE,422,-22.87602805,-43.33536402,PO,G,,"POLYGON ((-43.333364019053995 -22.8760280520269, -43.33337364960065 -22.87622408630756, -43.33340244849319 -22.876418232670932, -43.33345013838253 -22.876608621381408, -43.333516259988976 -22.87679341889163, -43.3336001765253 -22.87697084550055, -43.333701079829396 -22.87713919249294, -43.333817998147275 -22.877296838595228, -43.33394980549163 -22.877442265589274, -43.33409523248567 -22.877574072933626, -43.33425287858796 -22.877690991251505, -43.33442122558034 -22.877791894555596, -43.334598652189264 -22.877875811091922, -43.334783449699486 -22.877941932698363, -43.334973838409965 -22.877989622587705, -43.335167984773335 -22.878018421480245, -43.335364019054 -22.8780280520269, -43.33556005333466 -22.878018421480245, -43.33575419969803 -22.877989622587705, -43.33594458840851 -22.877941932698363, -43.33612938591873 -22.877875811091922, -43.33630681252765 -22.877791894555596, -43.336475159520035 -22.877690991251505, -43.33663280562232 -22.877574072933626, -43.33677823261637 -22.877442265589274, -43.33691003996072 -22.877296838595228, -43.3370269582786 -22.87713919249294, -43.337127861582694 -22.87697084550055, -43.33721177811902 -22.87679341889163, -43.337277899725464 -22.876608621381408, -43.33732558961481 -22.876418232670932, -43.33735438850734 -22.87622408630756, -43.337364019054 -22.8760280520269, -43.33735438850734 -22.87583201774624, -43.33732558961481 -22.875637871382867, -43.337277899725464 -22.875447482672392, -43.33721177811902 -22.87526268516217, -43.337127861582694 -22.87508525855325, -43.3370269582786 -22.87491691156086, -43.33691003996072 -22.87475926545857, -43.33677823261637 -22.874613838464526, -43.33663280562232 -22.874482031120174, -43.336475159520035 -22.874365112802295, -43.33630681252765 -22.874264209498204, -43.33612938591873 -22.874180292961878, -43.33594458840851 -22.874114171355437, -43.33575419969803 -22.874066481466095, -43.33556005333466 -22.874037682573555, -43.335364019054 -22.8740280520269, -43.335167984773335 -22.874037682573555, -43.334973838409965 -22.874066481466095, -43.334783449699486 -22.874114171355437, -43.334598652189264 -22.874180292961878, -43.33442122558034 -22.874264209498204, -43.33425287858796 -22.874365112802295, -43.33409523248567 -22.874482031120174, -43.33394980549163 -22.874613838464526, -43.333817998147275 -22.87475926545857, -43.333701079829396 -22.87491691156086, -43.3336001765253 -22.87508525855325, -43.333516259988976 -22.87526268516217, -43.33345013838253 -22.875447482672392, -43.33340244849319 -22.875637871382867, -43.33337364960065 -22.87583201774624, -43.333364019053995 -22.8760280520269))" +001414,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +001415,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +001416,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +001417,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +001418,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +001419,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +001420,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +001421,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +001422,Vidigal,Zona Sul,88a8a07a9bfffff,,,,,,,, +001423,Vidigal,Zona Sul,88a8a07a9bfffff,,,,,,,, +001424,Vidigal,Zona Sul,88a8a07a95fffff,,,,,,,, +001425,Vidigal,Zona Sul,88a8a07a95fffff,,,,,,,, +001426,Vidigal,Zona Sul,88a8a07a95fffff,,,,,,,, +001427,Vidigal,Zona Sul,88a8a07a95fffff,,,,,,,, +001428,Vidigal,Zona Sul,88a8a07a95fffff,,,,,,,, +001429,Vidigal,Zona Sul,88a8a07a95fffff,,,,,,,, +001430,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001431,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001432,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001433,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001436,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001437,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001438,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001439,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001440,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001441,Vidigal,Zona Sul,88a8a07a91fffff,,,,,,,, +001445,Vidigal,Zona Sul,88a8a07a9bfffff,,,,,,,, +001446,São Conrado,Zona Sul,88a8a07a9bfffff,,,,,,,, +001447,São Conrado,Zona Sul,88a8a07a9bfffff,,,,,,,, +001448,São Conrado,Zona Sul,88a8a07a9bfffff,,,,,,,, +001450,São Conrado,Zona Sul,88a8a071a7fffff,,,,,,,, +001451,Ramos,Zona Norte,88a8a061a5fffff,TRUE,360,-22.85312585,-43.25076091,PO,G,Rio Ramos,"POLYGON ((-43.24876091424077 -22.85312584921595, -43.248770544787426 -22.85332188349661, -43.24879934367996 -22.853516029859982, -43.248847033569305 -22.853706418570457, -43.24891315517575 -22.85389121608068, -43.248997071712076 -22.8540686426896, -43.24909797501617 -22.85423698968199, -43.24921489333405 -22.854394635784278, -43.2493467006784 -22.854540062778323, -43.24949212767245 -22.854671870122676, -43.249649773774735 -22.854788788440555, -43.24981812076712 -22.854889691744646, -43.24999554737604 -22.85497360828097, -43.25018034488626 -22.855039729887412, -43.25037073359674 -22.855087419776755, -43.25056487996011 -22.855116218669295, -43.25076091424077 -22.85512584921595, -43.250956948521434 -22.855116218669295, -43.251151094884804 -22.855087419776755, -43.25134148359528 -22.855039729887412, -43.251526281105505 -22.85497360828097, -43.25170370771443 -22.854889691744646, -43.25187205470681 -22.854788788440555, -43.252029700809096 -22.854671870122676, -43.25217512780314 -22.854540062778323, -43.252306935147494 -22.854394635784278, -43.25242385346537 -22.85423698968199, -43.25252475676947 -22.8540686426896, -43.252608673305794 -22.85389121608068, -43.25267479491224 -22.853706418570457, -43.25272248480158 -22.853516029859982, -43.25275128369412 -22.85332188349661, -43.252760914240774 -22.85312584921595, -43.25275128369412 -22.85292981493529, -43.25272248480158 -22.852735668571917, -43.25267479491224 -22.85254527986144, -43.252608673305794 -22.85236048235122, -43.25252475676947 -22.852183055742298, -43.25242385346537 -22.85201470874991, -43.252306935147494 -22.85185706264762, -43.25217512780314 -22.851711635653576, -43.252029700809096 -22.851579828309223, -43.25187205470681 -22.851462909991344, -43.25170370771443 -22.851362006687253, -43.251526281105505 -22.851278090150927, -43.25134148359528 -22.851211968544487, -43.251151094884804 -22.851164278655144, -43.250956948521434 -22.851135479762604, -43.25076091424077 -22.85112584921595, -43.25056487996011 -22.851135479762604, -43.25037073359674 -22.851164278655144, -43.25018034488626 -22.851211968544487, -43.24999554737604 -22.851278090150927, -43.24981812076712 -22.851362006687253, -43.249649773774735 -22.851462909991344, -43.24949212767245 -22.851579828309223, -43.2493467006784 -22.851711635653576, -43.24921489333405 -22.85185706264762, -43.24909797501617 -22.85201470874991, -43.248997071712076 -22.852183055742298, -43.24891315517575 -22.85236048235122, -43.248847033569305 -22.85254527986144, -43.24879934367996 -22.852735668571917, -43.248770544787426 -22.85292981493529, -43.24876091424077 -22.85312584921595))" +001452,Ramos,Zona Norte,88a8a061a5fffff,TRUE,360,-22.85312585,-43.25076091,PO,G,Rio Ramos,"POLYGON ((-43.24876091424077 -22.85312584921595, -43.248770544787426 -22.85332188349661, -43.24879934367996 -22.853516029859982, -43.248847033569305 -22.853706418570457, -43.24891315517575 -22.85389121608068, -43.248997071712076 -22.8540686426896, -43.24909797501617 -22.85423698968199, -43.24921489333405 -22.854394635784278, -43.2493467006784 -22.854540062778323, -43.24949212767245 -22.854671870122676, -43.249649773774735 -22.854788788440555, -43.24981812076712 -22.854889691744646, -43.24999554737604 -22.85497360828097, -43.25018034488626 -22.855039729887412, -43.25037073359674 -22.855087419776755, -43.25056487996011 -22.855116218669295, -43.25076091424077 -22.85512584921595, -43.250956948521434 -22.855116218669295, -43.251151094884804 -22.855087419776755, -43.25134148359528 -22.855039729887412, -43.251526281105505 -22.85497360828097, -43.25170370771443 -22.854889691744646, -43.25187205470681 -22.854788788440555, -43.252029700809096 -22.854671870122676, -43.25217512780314 -22.854540062778323, -43.252306935147494 -22.854394635784278, -43.25242385346537 -22.85423698968199, -43.25252475676947 -22.8540686426896, -43.252608673305794 -22.85389121608068, -43.25267479491224 -22.853706418570457, -43.25272248480158 -22.853516029859982, -43.25275128369412 -22.85332188349661, -43.252760914240774 -22.85312584921595, -43.25275128369412 -22.85292981493529, -43.25272248480158 -22.852735668571917, -43.25267479491224 -22.85254527986144, -43.252608673305794 -22.85236048235122, -43.25252475676947 -22.852183055742298, -43.25242385346537 -22.85201470874991, -43.252306935147494 -22.85185706264762, -43.25217512780314 -22.851711635653576, -43.252029700809096 -22.851579828309223, -43.25187205470681 -22.851462909991344, -43.25170370771443 -22.851362006687253, -43.251526281105505 -22.851278090150927, -43.25134148359528 -22.851211968544487, -43.251151094884804 -22.851164278655144, -43.250956948521434 -22.851135479762604, -43.25076091424077 -22.85112584921595, -43.25056487996011 -22.851135479762604, -43.25037073359674 -22.851164278655144, -43.25018034488626 -22.851211968544487, -43.24999554737604 -22.851278090150927, -43.24981812076712 -22.851362006687253, -43.249649773774735 -22.851462909991344, -43.24949212767245 -22.851579828309223, -43.2493467006784 -22.851711635653576, -43.24921489333405 -22.85185706264762, -43.24909797501617 -22.85201470874991, -43.248997071712076 -22.852183055742298, -43.24891315517575 -22.85236048235122, -43.248847033569305 -22.85254527986144, -43.24879934367996 -22.852735668571917, -43.248770544787426 -22.85292981493529, -43.24876091424077 -22.85312584921595))" +001453,Cosmos,Zona Oeste,88a8a02801fffff,,,,,,,, +001455,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +001456,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +001457,Praça da Bandeira,Grande Tijuca,88a8a06167fffff,,,,,,,, +001458,Lapa,Centro,88a8a06a09fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +001459,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +001460,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +001461,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +001462,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +001463,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +001464,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +001465,Barra da Tijuca,Barra da Tijuca,88a8a07199fffff,,,,,,,, +001466,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +001467,Taquara,Jacarepaguá,88a8a06283fffff,TRUE,204,-22.92208789,-43.37246117,PC,J,Rio Grande,"POLYGON ((-43.3704611736 -22.922087888, -43.370470804146656 -22.92228392228066, -43.37049960303919 -22.922478068644033, -43.370547292928535 -22.922668457354508, -43.37061341453498 -22.92285325486473, -43.370697331071305 -22.92303068147365, -43.3707982343754 -22.92319902846604, -43.37091515269328 -22.92335667456833, -43.37104696003763 -22.923502101562374, -43.37119238703168 -22.923633908906726, -43.371350033133965 -22.923750827224605, -43.371518380126346 -22.923851730528696, -43.37169580673527 -22.923935647065022, -43.37188060424549 -22.924001768671463, -43.37207099295597 -22.924049458560805, -43.37226513931934 -22.924078257453345, -43.3724611736 -22.924087888, -43.372657207880664 -22.924078257453345, -43.372851354244034 -22.924049458560805, -43.37304174295451 -22.924001768671463, -43.373226540464735 -22.923935647065022, -43.373403967073656 -22.923851730528696, -43.37357231406604 -22.923750827224605, -43.373729960168326 -22.923633908906726, -43.37387538716237 -22.923502101562374, -43.374007194506724 -22.92335667456833, -43.3741241128246 -22.92319902846604, -43.3742250161287 -22.92303068147365, -43.37430893266502 -22.92285325486473, -43.37437505427147 -22.922668457354508, -43.37442274416081 -22.922478068644033, -43.37445154305335 -22.92228392228066, -43.374461173600004 -22.922087888, -43.37445154305335 -22.92189185371934, -43.37442274416081 -22.921697707355968, -43.37437505427147 -22.921507318645492, -43.37430893266502 -22.92132252113527, -43.3742250161287 -22.92114509452635, -43.3741241128246 -22.92097674753396, -43.374007194506724 -22.920819101431672, -43.37387538716237 -22.920673674437626, -43.373729960168326 -22.920541867093274, -43.37357231406604 -22.920424948775395, -43.373403967073656 -22.920324045471304, -43.373226540464735 -22.920240128934978, -43.37304174295451 -22.920174007328537, -43.372851354244034 -22.920126317439195, -43.372657207880664 -22.920097518546655, -43.3724611736 -22.920087888, -43.37226513931934 -22.920097518546655, -43.37207099295597 -22.920126317439195, -43.37188060424549 -22.920174007328537, -43.37169580673527 -22.920240128934978, -43.371518380126346 -22.920324045471304, -43.371350033133965 -22.920424948775395, -43.37119238703168 -22.920541867093274, -43.37104696003763 -22.920673674437626, -43.37091515269328 -22.920819101431672, -43.3707982343754 -22.92097674753396, -43.370697331071305 -22.92114509452635, -43.37061341453498 -22.92132252113527, -43.370547292928535 -22.921507318645492, -43.37049960303919 -22.921697707355968, -43.370470804146656 -22.92189185371934, -43.3704611736 -22.922087888))" +001468,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,273,-22.90986773,-43.20536305,PO,G,Canal do Mangue,"POLYGON ((-43.2033630511 -22.9098677325, -43.203372681646655 -22.91006376678066, -43.20340148053919 -22.910257913144033, -43.203449170428534 -22.910448301854508, -43.20351529203498 -22.91063309936473, -43.203599208571305 -22.910810525973652, -43.2037001118754 -22.91097887296604, -43.20381703019328 -22.91113651906833, -43.20394883753763 -22.911281946062374, -43.204094264531676 -22.911413753406727, -43.204251910633964 -22.911530671724606, -43.204420257626346 -22.911631575028697, -43.20459768423527 -22.911715491565023, -43.20478248174549 -22.911781613171463, -43.20497287045597 -22.911829303060806, -43.20516701681934 -22.911858101953346, -43.2053630511 -22.9118677325, -43.20555908538066 -22.911858101953346, -43.20575323174403 -22.911829303060806, -43.20594362045451 -22.911781613171463, -43.206128417964734 -22.911715491565023, -43.206305844573656 -22.911631575028697, -43.20647419156604 -22.911530671724606, -43.206631837668326 -22.911413753406727, -43.20677726466237 -22.911281946062374, -43.206909072006724 -22.91113651906833, -43.2070259903246 -22.91097887296604, -43.2071268936287 -22.910810525973652, -43.20721081016502 -22.91063309936473, -43.20727693177147 -22.910448301854508, -43.20732462166081 -22.910257913144033, -43.207353420553346 -22.91006376678066, -43.2073630511 -22.9098677325, -43.207353420553346 -22.90967169821934, -43.20732462166081 -22.909477551855968, -43.20727693177147 -22.909287163145493, -43.20721081016502 -22.90910236563527, -43.2071268936287 -22.90892493902635, -43.2070259903246 -22.90875659203396, -43.206909072006724 -22.908598945931672, -43.20677726466237 -22.908453518937627, -43.206631837668326 -22.908321711593274, -43.20647419156604 -22.908204793275395, -43.206305844573656 -22.908103889971304, -43.206128417964734 -22.90801997343498, -43.20594362045451 -22.907953851828537, -43.20575323174403 -22.907906161939195, -43.20555908538066 -22.907877363046655, -43.2053630511 -22.9078677325, -43.20516701681934 -22.907877363046655, -43.20497287045597 -22.907906161939195, -43.20478248174549 -22.907953851828537, -43.20459768423527 -22.90801997343498, -43.204420257626346 -22.908103889971304, -43.204251910633964 -22.908204793275395, -43.204094264531676 -22.908321711593274, -43.20394883753763 -22.908453518937627, -43.20381703019328 -22.908598945931672, -43.2037001118754 -22.90875659203396, -43.203599208571305 -22.90892493902635, -43.20351529203498 -22.90910236563527, -43.203449170428534 -22.909287163145493, -43.20340148053919 -22.909477551855968, -43.203372681646655 -22.90967169821934, -43.2033630511 -22.9098677325))" +001469,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,273,-22.90986773,-43.20536305,PO,G,Canal do Mangue,"POLYGON ((-43.2033630511 -22.9098677325, -43.203372681646655 -22.91006376678066, -43.20340148053919 -22.910257913144033, -43.203449170428534 -22.910448301854508, -43.20351529203498 -22.91063309936473, -43.203599208571305 -22.910810525973652, -43.2037001118754 -22.91097887296604, -43.20381703019328 -22.91113651906833, -43.20394883753763 -22.911281946062374, -43.204094264531676 -22.911413753406727, -43.204251910633964 -22.911530671724606, -43.204420257626346 -22.911631575028697, -43.20459768423527 -22.911715491565023, -43.20478248174549 -22.911781613171463, -43.20497287045597 -22.911829303060806, -43.20516701681934 -22.911858101953346, -43.2053630511 -22.9118677325, -43.20555908538066 -22.911858101953346, -43.20575323174403 -22.911829303060806, -43.20594362045451 -22.911781613171463, -43.206128417964734 -22.911715491565023, -43.206305844573656 -22.911631575028697, -43.20647419156604 -22.911530671724606, -43.206631837668326 -22.911413753406727, -43.20677726466237 -22.911281946062374, -43.206909072006724 -22.91113651906833, -43.2070259903246 -22.91097887296604, -43.2071268936287 -22.910810525973652, -43.20721081016502 -22.91063309936473, -43.20727693177147 -22.910448301854508, -43.20732462166081 -22.910257913144033, -43.207353420553346 -22.91006376678066, -43.2073630511 -22.9098677325, -43.207353420553346 -22.90967169821934, -43.20732462166081 -22.909477551855968, -43.20727693177147 -22.909287163145493, -43.20721081016502 -22.90910236563527, -43.2071268936287 -22.90892493902635, -43.2070259903246 -22.90875659203396, -43.206909072006724 -22.908598945931672, -43.20677726466237 -22.908453518937627, -43.206631837668326 -22.908321711593274, -43.20647419156604 -22.908204793275395, -43.206305844573656 -22.908103889971304, -43.206128417964734 -22.90801997343498, -43.20594362045451 -22.907953851828537, -43.20575323174403 -22.907906161939195, -43.20555908538066 -22.907877363046655, -43.2053630511 -22.9078677325, -43.20516701681934 -22.907877363046655, -43.20497287045597 -22.907906161939195, -43.20478248174549 -22.907953851828537, -43.20459768423527 -22.90801997343498, -43.204420257626346 -22.908103889971304, -43.204251910633964 -22.908204793275395, -43.204094264531676 -22.908321711593274, -43.20394883753763 -22.908453518937627, -43.20381703019328 -22.908598945931672, -43.2037001118754 -22.90875659203396, -43.203599208571305 -22.90892493902635, -43.20351529203498 -22.90910236563527, -43.203449170428534 -22.909287163145493, -43.20340148053919 -22.909477551855968, -43.203372681646655 -22.90967169821934, -43.2033630511 -22.9098677325))" +001470,Barra da Tijuca,Barra da Tijuca,88a8a07199fffff,,,,,,,, +001471,Barra da Tijuca,Barra da Tijuca,88a8a07199fffff,,,,,,,, +001472,Barra da Tijuca,Barra da Tijuca,88a8a07199fffff,,,,,,,, +001473,Tijuca,Grande Tijuca,88a8a06163fffff,TRUE,44,-22.9209589,-43.22230828,PC,G,Canal do Mangue,"POLYGON ((-43.2203082792 -22.9209589031, -43.220317909746655 -22.92115493738066, -43.22034670863919 -22.921349083744033, -43.22039439852853 -22.92153947245451, -43.22046052013498 -22.92172426996473, -43.220544436671304 -22.921901696573652, -43.2206453399754 -22.92207004356604, -43.22076225829328 -22.92222768966833, -43.22089406563763 -22.922373116662374, -43.221039492631675 -22.922504924006727, -43.22119713873396 -22.922621842324606, -43.221365485726345 -22.922722745628697, -43.221542912335266 -22.922806662165023, -43.22172770984549 -22.922872783771464, -43.22191809855597 -22.922920473660806, -43.22211224491934 -22.922949272553346, -43.2223082792 -22.9229589031, -43.22250431348066 -22.922949272553346, -43.22269845984403 -22.922920473660806, -43.22288884855451 -22.922872783771464, -43.223073646064734 -22.922806662165023, -43.223251072673655 -22.922722745628697, -43.22341941966604 -22.922621842324606, -43.223577065768325 -22.922504924006727, -43.22372249276237 -22.922373116662374, -43.22385430010672 -22.92222768966833, -43.2239712184246 -22.92207004356604, -43.224072121728696 -22.921901696573652, -43.22415603826502 -22.92172426996473, -43.224222159871466 -22.92153947245451, -43.22426984976081 -22.921349083744033, -43.224298648653345 -22.92115493738066, -43.2243082792 -22.9209589031, -43.224298648653345 -22.92076286881934, -43.22426984976081 -22.920568722455968, -43.224222159871466 -22.920378333745493, -43.22415603826502 -22.92019353623527, -43.224072121728696 -22.92001610962635, -43.2239712184246 -22.91984776263396, -43.22385430010672 -22.919690116531672, -43.22372249276237 -22.919544689537627, -43.223577065768325 -22.919412882193274, -43.22341941966604 -22.919295963875395, -43.223251072673655 -22.919195060571305, -43.223073646064734 -22.91911114403498, -43.22288884855451 -22.919045022428538, -43.22269845984403 -22.918997332539195, -43.22250431348066 -22.918968533646655, -43.2223082792 -22.918958903100002, -43.22211224491934 -22.918968533646655, -43.22191809855597 -22.918997332539195, -43.22172770984549 -22.919045022428538, -43.221542912335266 -22.91911114403498, -43.221365485726345 -22.919195060571305, -43.22119713873396 -22.919295963875395, -43.221039492631675 -22.919412882193274, -43.22089406563763 -22.919544689537627, -43.22076225829328 -22.919690116531672, -43.2206453399754 -22.91984776263396, -43.220544436671304 -22.92001610962635, -43.22046052013498 -22.92019353623527, -43.22039439852853 -22.920378333745493, -43.22034670863919 -22.920568722455968, -43.220317909746655 -22.92076286881934, -43.2203082792 -22.9209589031))" +001474,Catete,Zona Sul,88a8a06a41fffff,TRUE,6,-22.92470001,-43.17620286,PC,G,Rio Carioca,"POLYGON ((-43.1742028606 -22.9247000079, -43.174212491146655 -22.92489604218066, -43.17424129003919 -22.925090188544033, -43.174288979928534 -22.925280577254508, -43.17435510153498 -22.92546537476473, -43.174439018071304 -22.92564280137365, -43.1745399213754 -22.92581114836604, -43.17465683969328 -22.92596879446833, -43.17478864703763 -22.926114221462374, -43.174934074031675 -22.926246028806727, -43.17509172013396 -22.926362947124606, -43.175260067126345 -22.926463850428696, -43.17543749373527 -22.926547766965022, -43.17562229124549 -22.926613888571463, -43.17581267995597 -22.926661578460806, -43.17600682631934 -22.926690377353346, -43.1762028606 -22.9267000079, -43.17639889488066 -22.926690377353346, -43.17659304124403 -22.926661578460806, -43.17678342995451 -22.926613888571463, -43.176968227464734 -22.926547766965022, -43.177145654073655 -22.926463850428696, -43.17731400106604 -22.926362947124606, -43.177471647168325 -22.926246028806727, -43.17761707416237 -22.926114221462374, -43.17774888150672 -22.92596879446833, -43.1778657998246 -22.92581114836604, -43.177966703128696 -22.92564280137365, -43.17805061966502 -22.92546537476473, -43.17811674127147 -22.925280577254508, -43.17816443116081 -22.925090188544033, -43.178193230053346 -22.92489604218066, -43.1782028606 -22.9247000079, -43.178193230053346 -22.92450397361934, -43.17816443116081 -22.924309827255968, -43.17811674127147 -22.924119438545492, -43.17805061966502 -22.92393464103527, -43.177966703128696 -22.92375721442635, -43.1778657998246 -22.92358886743396, -43.17774888150672 -22.923431221331672, -43.17761707416237 -22.923285794337627, -43.177471647168325 -22.923153986993274, -43.17731400106604 -22.923037068675395, -43.177145654073655 -22.922936165371304, -43.176968227464734 -22.922852248834978, -43.17678342995451 -22.922786127228537, -43.17659304124403 -22.922738437339195, -43.17639889488066 -22.922709638446655, -43.1762028606 -22.9227000079, -43.17600682631934 -22.922709638446655, -43.17581267995597 -22.922738437339195, -43.17562229124549 -22.922786127228537, -43.17543749373527 -22.922852248834978, -43.175260067126345 -22.922936165371304, -43.17509172013396 -22.923037068675395, -43.174934074031675 -22.923153986993274, -43.17478864703763 -22.923285794337627, -43.17465683969328 -22.923431221331672, -43.1745399213754 -22.92358886743396, -43.174439018071304 -22.92375721442635, -43.17435510153498 -22.92393464103527, -43.174288979928534 -22.924119438545492, -43.17424129003919 -22.924309827255968, -43.174212491146655 -22.92450397361934, -43.1742028606 -22.9247000079))" +001475,Catete,Zona Sul,88a8a06a41fffff,TRUE,6,-22.92470001,-43.17620286,PC,G,Rio Carioca,"POLYGON ((-43.1742028606 -22.9247000079, -43.174212491146655 -22.92489604218066, -43.17424129003919 -22.925090188544033, -43.174288979928534 -22.925280577254508, -43.17435510153498 -22.92546537476473, -43.174439018071304 -22.92564280137365, -43.1745399213754 -22.92581114836604, -43.17465683969328 -22.92596879446833, -43.17478864703763 -22.926114221462374, -43.174934074031675 -22.926246028806727, -43.17509172013396 -22.926362947124606, -43.175260067126345 -22.926463850428696, -43.17543749373527 -22.926547766965022, -43.17562229124549 -22.926613888571463, -43.17581267995597 -22.926661578460806, -43.17600682631934 -22.926690377353346, -43.1762028606 -22.9267000079, -43.17639889488066 -22.926690377353346, -43.17659304124403 -22.926661578460806, -43.17678342995451 -22.926613888571463, -43.176968227464734 -22.926547766965022, -43.177145654073655 -22.926463850428696, -43.17731400106604 -22.926362947124606, -43.177471647168325 -22.926246028806727, -43.17761707416237 -22.926114221462374, -43.17774888150672 -22.92596879446833, -43.1778657998246 -22.92581114836604, -43.177966703128696 -22.92564280137365, -43.17805061966502 -22.92546537476473, -43.17811674127147 -22.925280577254508, -43.17816443116081 -22.925090188544033, -43.178193230053346 -22.92489604218066, -43.1782028606 -22.9247000079, -43.178193230053346 -22.92450397361934, -43.17816443116081 -22.924309827255968, -43.17811674127147 -22.924119438545492, -43.17805061966502 -22.92393464103527, -43.177966703128696 -22.92375721442635, -43.1778657998246 -22.92358886743396, -43.17774888150672 -22.923431221331672, -43.17761707416237 -22.923285794337627, -43.177471647168325 -22.923153986993274, -43.17731400106604 -22.923037068675395, -43.177145654073655 -22.922936165371304, -43.176968227464734 -22.922852248834978, -43.17678342995451 -22.922786127228537, -43.17659304124403 -22.922738437339195, -43.17639889488066 -22.922709638446655, -43.1762028606 -22.9227000079, -43.17600682631934 -22.922709638446655, -43.17581267995597 -22.922738437339195, -43.17562229124549 -22.922786127228537, -43.17543749373527 -22.922852248834978, -43.175260067126345 -22.922936165371304, -43.17509172013396 -22.923037068675395, -43.174934074031675 -22.923153986993274, -43.17478864703763 -22.923285794337627, -43.17465683969328 -22.923431221331672, -43.1745399213754 -22.92358886743396, -43.174439018071304 -22.92375721442635, -43.17435510153498 -22.92393464103527, -43.174288979928534 -22.924119438545492, -43.17424129003919 -22.924309827255968, -43.174212491146655 -22.92450397361934, -43.1742028606 -22.9247000079))" +001476,Lagoa,Zona Sul,88a8a078d1fffff,TRUE,88,-22.96743433,-43.22026438,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.218264375699995 -22.9674343321, -43.21827400624665 -22.96763036638066, -43.21830280513919 -22.967824512744034, -43.21835049502853 -22.96801490145451, -43.218416616634975 -22.96819969896473, -43.2185005331713 -22.968377125573653, -43.218601436475396 -22.968545472566042, -43.218718354793275 -22.96870311866833, -43.21885016213763 -22.968848545662375, -43.21899558913167 -22.968980353006728, -43.21915323523396 -22.969097271324607, -43.21932158222634 -22.969198174628698, -43.219499008835264 -22.969282091165024, -43.219683806345486 -22.969348212771465, -43.219874195055965 -22.969395902660807, -43.220068341419335 -22.969424701553347, -43.2202643757 -22.9694343321, -43.22046040998066 -22.969424701553347, -43.22065455634403 -22.969395902660807, -43.22084494505451 -22.969348212771465, -43.22102974256473 -22.969282091165024, -43.22120716917365 -22.969198174628698, -43.221375516166034 -22.969097271324607, -43.22153316226832 -22.968980353006728, -43.22167858926237 -22.968848545662375, -43.22181039660672 -22.96870311866833, -43.2219273149246 -22.968545472566042, -43.222028218228694 -22.968377125573653, -43.22211213476502 -22.96819969896473, -43.222178256371464 -22.96801490145451, -43.22222594626081 -22.967824512744034, -43.22225474515334 -22.96763036638066, -43.2222643757 -22.9674343321, -43.22225474515334 -22.967238297819343, -43.22222594626081 -22.96704415145597, -43.222178256371464 -22.966853762745494, -43.22211213476502 -22.96666896523527, -43.222028218228694 -22.96649153862635, -43.2219273149246 -22.96632319163396, -43.22181039660672 -22.966165545531673, -43.22167858926237 -22.966020118537628, -43.22153316226832 -22.965888311193275, -43.221375516166034 -22.965771392875396, -43.22120716917365 -22.965670489571306, -43.22102974256473 -22.96558657303498, -43.22084494505451 -22.96552045142854, -43.22065455634403 -22.965472761539196, -43.22046040998066 -22.965443962646656, -43.2202643757 -22.965434332100003, -43.220068341419335 -22.965443962646656, -43.219874195055965 -22.965472761539196, -43.219683806345486 -22.96552045142854, -43.219499008835264 -22.96558657303498, -43.21932158222634 -22.965670489571306, -43.21915323523396 -22.965771392875396, -43.21899558913167 -22.965888311193275, -43.21885016213763 -22.966020118537628, -43.218718354793275 -22.966165545531673, -43.218601436475396 -22.96632319163396, -43.2185005331713 -22.96649153862635, -43.218416616634975 -22.96666896523527, -43.21835049502853 -22.966853762745494, -43.21830280513919 -22.96704415145597, -43.21827400624665 -22.967238297819343, -43.218264375699995 -22.9674343321))" +001477,Lagoa,Zona Sul,88a8a078d1fffff,TRUE,88,-22.96743433,-43.22026438,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.218264375699995 -22.9674343321, -43.21827400624665 -22.96763036638066, -43.21830280513919 -22.967824512744034, -43.21835049502853 -22.96801490145451, -43.218416616634975 -22.96819969896473, -43.2185005331713 -22.968377125573653, -43.218601436475396 -22.968545472566042, -43.218718354793275 -22.96870311866833, -43.21885016213763 -22.968848545662375, -43.21899558913167 -22.968980353006728, -43.21915323523396 -22.969097271324607, -43.21932158222634 -22.969198174628698, -43.219499008835264 -22.969282091165024, -43.219683806345486 -22.969348212771465, -43.219874195055965 -22.969395902660807, -43.220068341419335 -22.969424701553347, -43.2202643757 -22.9694343321, -43.22046040998066 -22.969424701553347, -43.22065455634403 -22.969395902660807, -43.22084494505451 -22.969348212771465, -43.22102974256473 -22.969282091165024, -43.22120716917365 -22.969198174628698, -43.221375516166034 -22.969097271324607, -43.22153316226832 -22.968980353006728, -43.22167858926237 -22.968848545662375, -43.22181039660672 -22.96870311866833, -43.2219273149246 -22.968545472566042, -43.222028218228694 -22.968377125573653, -43.22211213476502 -22.96819969896473, -43.222178256371464 -22.96801490145451, -43.22222594626081 -22.967824512744034, -43.22225474515334 -22.96763036638066, -43.2222643757 -22.9674343321, -43.22225474515334 -22.967238297819343, -43.22222594626081 -22.96704415145597, -43.222178256371464 -22.966853762745494, -43.22211213476502 -22.96666896523527, -43.222028218228694 -22.96649153862635, -43.2219273149246 -22.96632319163396, -43.22181039660672 -22.966165545531673, -43.22167858926237 -22.966020118537628, -43.22153316226832 -22.965888311193275, -43.221375516166034 -22.965771392875396, -43.22120716917365 -22.965670489571306, -43.22102974256473 -22.96558657303498, -43.22084494505451 -22.96552045142854, -43.22065455634403 -22.965472761539196, -43.22046040998066 -22.965443962646656, -43.2202643757 -22.965434332100003, -43.220068341419335 -22.965443962646656, -43.219874195055965 -22.965472761539196, -43.219683806345486 -22.96552045142854, -43.219499008835264 -22.96558657303498, -43.21932158222634 -22.965670489571306, -43.21915323523396 -22.965771392875396, -43.21899558913167 -22.965888311193275, -43.21885016213763 -22.966020118537628, -43.218718354793275 -22.966165545531673, -43.218601436475396 -22.96632319163396, -43.2185005331713 -22.96649153862635, -43.218416616634975 -22.96666896523527, -43.21835049502853 -22.966853762745494, -43.21830280513919 -22.96704415145597, -43.21827400624665 -22.967238297819343, -43.218264375699995 -22.9674343321))" +001478,Botafogo,Zona Sul,88a8a078a9fffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +001479,Botafogo,Zona Sul,88a8a078a9fffff,TRUE,324,-22.94986076,-43.18062589,PO,ZS,Rio Berquó,"POLYGON ((-43.178625887799996 -22.9498607609, -43.17863551834665 -22.950056795180657, -43.17866431723919 -22.95025094154403, -43.17871200712853 -22.950441330254506, -43.178778128734976 -22.95062612776473, -43.1788620452713 -22.95080355437365, -43.178962948575396 -22.95097190136604, -43.179079866893275 -22.951129547468327, -43.17921167423763 -22.951274974462372, -43.17935710123167 -22.951406781806725, -43.17951474733396 -22.951523700124604, -43.17968309432634 -22.951624603428694, -43.179860520935264 -22.95170851996502, -43.18004531844549 -22.95177464157146, -43.180235707155965 -22.951822331460804, -43.180429853519335 -22.951851130353344, -43.1806258878 -22.951860760899997, -43.18082192208066 -22.951851130353344, -43.18101606844403 -22.951822331460804, -43.18120645715451 -22.95177464157146, -43.18139125466473 -22.95170851996502, -43.18156868127365 -22.951624603428694, -43.181737028266035 -22.951523700124604, -43.18189467436832 -22.951406781806725, -43.18204010136237 -22.951274974462372, -43.18217190870672 -22.951129547468327, -43.1822888270246 -22.95097190136604, -43.182389730328694 -22.95080355437365, -43.18247364686502 -22.95062612776473, -43.182539768471464 -22.950441330254506, -43.18258745836081 -22.95025094154403, -43.18261625725334 -22.950056795180657, -43.1826258878 -22.9498607609, -43.18261625725334 -22.94966472661934, -43.18258745836081 -22.949470580255966, -43.182539768471464 -22.94928019154549, -43.18247364686502 -22.949095394035268, -43.182389730328694 -22.948917967426347, -43.1822888270246 -22.948749620433958, -43.18217190870672 -22.94859197433167, -43.18204010136237 -22.948446547337625, -43.18189467436832 -22.948314739993272, -43.181737028266035 -22.948197821675393, -43.18156868127365 -22.948096918371302, -43.18139125466473 -22.948013001834976, -43.18120645715451 -22.947946880228535, -43.18101606844403 -22.947899190339193, -43.18082192208066 -22.947870391446653, -43.1806258878 -22.9478607609, -43.180429853519335 -22.947870391446653, -43.180235707155965 -22.947899190339193, -43.18004531844549 -22.947946880228535, -43.179860520935264 -22.948013001834976, -43.17968309432634 -22.948096918371302, -43.17951474733396 -22.948197821675393, -43.17935710123167 -22.948314739993272, -43.17921167423763 -22.948446547337625, -43.179079866893275 -22.94859197433167, -43.178962948575396 -22.948749620433958, -43.1788620452713 -22.948917967426347, -43.178778128734976 -22.949095394035268, -43.17871200712853 -22.94928019154549, -43.17866431723919 -22.949470580255966, -43.17863551834665 -22.94966472661934, -43.178625887799996 -22.9498607609))" +001482,Centro,Centro,88a8a06a57fffff,,,,,,,, +001483,Centro,Centro,88a8a06a57fffff,,,,,,,, +001484,Botafogo,Zona Sul,88a8a07887fffff,,,,,,,, +001485,Botafogo,Zona Sul,88a8a07887fffff,,,,,,,, +001486,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001487,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001488,Penha Circular,Zona Norte,88a8a061b3fffff,TRUE,328,-22.83726789,-43.2852601,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.283260094999996 -22.8372678861, -43.28326972554665 -22.83746392038066, -43.28329852443919 -22.837658066744034, -43.28334621432853 -22.83784845545451, -43.283412335934976 -22.83803325296473, -43.2834962524713 -22.838210679573653, -43.2835971557754 -22.83837902656604, -43.283714074093275 -22.83853667266833, -43.28384588143763 -22.838682099662375, -43.28399130843167 -22.838813907006728, -43.28414895453396 -22.838930825324606, -43.28431730152634 -22.839031728628697, -43.284494728135265 -22.839115645165023, -43.28467952564549 -22.839181766771464, -43.284869914355966 -22.839229456660807, -43.285064060719336 -22.839258255553347, -43.285260095 -22.8392678861, -43.28545612928066 -22.839258255553347, -43.28565027564403 -22.839229456660807, -43.28584066435451 -22.839181766771464, -43.28602546186473 -22.839115645165023, -43.28620288847365 -22.839031728628697, -43.286371235466035 -22.838930825324606, -43.28652888156832 -22.838813907006728, -43.28667430856237 -22.838682099662375, -43.28680611590672 -22.83853667266833, -43.2869230342246 -22.83837902656604, -43.287023937528694 -22.838210679573653, -43.28710785406502 -22.83803325296473, -43.287173975671465 -22.83784845545451, -43.28722166556081 -22.837658066744034, -43.287250464453344 -22.83746392038066, -43.287260095 -22.8372678861, -43.287250464453344 -22.837071851819342, -43.28722166556081 -22.83687770545597, -43.287173975671465 -22.836687316745493, -43.28710785406502 -22.83650251923527, -43.287023937528694 -22.83632509262635, -43.2869230342246 -22.83615674563396, -43.28680611590672 -22.835999099531673, -43.28667430856237 -22.835853672537628, -43.28652888156832 -22.835721865193275, -43.286371235466035 -22.835604946875396, -43.28620288847365 -22.835504043571305, -43.28602546186473 -22.83542012703498, -43.28584066435451 -22.835354005428538, -43.28565027564403 -22.835306315539196, -43.28545612928066 -22.835277516646656, -43.285260095 -22.835267886100002, -43.285064060719336 -22.835277516646656, -43.284869914355966 -22.835306315539196, -43.28467952564549 -22.835354005428538, -43.284494728135265 -22.83542012703498, -43.28431730152634 -22.835504043571305, -43.28414895453396 -22.835604946875396, -43.28399130843167 -22.835721865193275, -43.28384588143763 -22.835853672537628, -43.283714074093275 -22.835999099531673, -43.2835971557754 -22.83615674563396, -43.2834962524713 -22.83632509262635, -43.283412335934976 -22.83650251923527, -43.28334621432853 -22.836687316745493, -43.28329852443919 -22.83687770545597, -43.28326972554665 -22.837071851819342, -43.283260094999996 -22.8372678861))" +001489,Penha,Zona Norte,88a8a061b3fffff,TRUE,328,-22.83726789,-43.2852601,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.283260094999996 -22.8372678861, -43.28326972554665 -22.83746392038066, -43.28329852443919 -22.837658066744034, -43.28334621432853 -22.83784845545451, -43.283412335934976 -22.83803325296473, -43.2834962524713 -22.838210679573653, -43.2835971557754 -22.83837902656604, -43.283714074093275 -22.83853667266833, -43.28384588143763 -22.838682099662375, -43.28399130843167 -22.838813907006728, -43.28414895453396 -22.838930825324606, -43.28431730152634 -22.839031728628697, -43.284494728135265 -22.839115645165023, -43.28467952564549 -22.839181766771464, -43.284869914355966 -22.839229456660807, -43.285064060719336 -22.839258255553347, -43.285260095 -22.8392678861, -43.28545612928066 -22.839258255553347, -43.28565027564403 -22.839229456660807, -43.28584066435451 -22.839181766771464, -43.28602546186473 -22.839115645165023, -43.28620288847365 -22.839031728628697, -43.286371235466035 -22.838930825324606, -43.28652888156832 -22.838813907006728, -43.28667430856237 -22.838682099662375, -43.28680611590672 -22.83853667266833, -43.2869230342246 -22.83837902656604, -43.287023937528694 -22.838210679573653, -43.28710785406502 -22.83803325296473, -43.287173975671465 -22.83784845545451, -43.28722166556081 -22.837658066744034, -43.287250464453344 -22.83746392038066, -43.287260095 -22.8372678861, -43.287250464453344 -22.837071851819342, -43.28722166556081 -22.83687770545597, -43.287173975671465 -22.836687316745493, -43.28710785406502 -22.83650251923527, -43.287023937528694 -22.83632509262635, -43.2869230342246 -22.83615674563396, -43.28680611590672 -22.835999099531673, -43.28667430856237 -22.835853672537628, -43.28652888156832 -22.835721865193275, -43.286371235466035 -22.835604946875396, -43.28620288847365 -22.835504043571305, -43.28602546186473 -22.83542012703498, -43.28584066435451 -22.835354005428538, -43.28565027564403 -22.835306315539196, -43.28545612928066 -22.835277516646656, -43.285260095 -22.835267886100002, -43.285064060719336 -22.835277516646656, -43.284869914355966 -22.835306315539196, -43.28467952564549 -22.835354005428538, -43.284494728135265 -22.83542012703498, -43.28431730152634 -22.835504043571305, -43.28414895453396 -22.835604946875396, -43.28399130843167 -22.835721865193275, -43.28384588143763 -22.835853672537628, -43.283714074093275 -22.835999099531673, -43.2835971557754 -22.83615674563396, -43.2834962524713 -22.83632509262635, -43.283412335934976 -22.83650251923527, -43.28334621432853 -22.836687316745493, -43.28329852443919 -22.83687770545597, -43.28326972554665 -22.837071851819342, -43.283260094999996 -22.8372678861))" +001490,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001491,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001492,Vila Isabel,Grande Tijuca,88a8a06153fffff,TRUE,13,-22.91855178,-43.26236411,PC,G,Canal do Mangue,"POLYGON ((-43.2603641068 -22.9185517816, -43.260373737346654 -22.91874781588066, -43.26040253623919 -22.918941962244034, -43.26045022612853 -22.91913235095451, -43.26051634773498 -22.91931714846473, -43.260600264271304 -22.919494575073653, -43.2607011675754 -22.919662922066042, -43.26081808589328 -22.91982056816833, -43.26094989323763 -22.919965995162375, -43.261095320231675 -22.920097802506728, -43.26125296633396 -22.920214720824607, -43.261421313326345 -22.920315624128698, -43.261598739935266 -22.920399540665024, -43.26178353744549 -22.920465662271464, -43.26197392615597 -22.920513352160807, -43.26216807251934 -22.920542151053347, -43.2623641068 -22.9205517816, -43.26256014108066 -22.920542151053347, -43.26275428744403 -22.920513352160807, -43.26294467615451 -22.920465662271464, -43.26312947366473 -22.920399540665024, -43.263306900273655 -22.920315624128698, -43.26347524726604 -22.920214720824607, -43.263632893368325 -22.920097802506728, -43.26377832036237 -22.919965995162375, -43.26391012770672 -22.91982056816833, -43.2640270460246 -22.919662922066042, -43.264127949328696 -22.919494575073653, -43.26421186586502 -22.91931714846473, -43.264277987471466 -22.91913235095451, -43.26432567736081 -22.918941962244034, -43.264354476253345 -22.91874781588066, -43.2643641068 -22.9185517816, -43.264354476253345 -22.918355747319342, -43.26432567736081 -22.91816160095597, -43.264277987471466 -22.917971212245494, -43.26421186586502 -22.91778641473527, -43.264127949328696 -22.91760898812635, -43.2640270460246 -22.91744064113396, -43.26391012770672 -22.917282995031673, -43.26377832036237 -22.917137568037628, -43.263632893368325 -22.917005760693275, -43.26347524726604 -22.916888842375396, -43.263306900273655 -22.916787939071305, -43.26312947366473 -22.91670402253498, -43.26294467615451 -22.91663790092854, -43.26275428744403 -22.916590211039196, -43.26256014108066 -22.916561412146656, -43.2623641068 -22.916551781600003, -43.26216807251934 -22.916561412146656, -43.26197392615597 -22.916590211039196, -43.26178353744549 -22.91663790092854, -43.261598739935266 -22.91670402253498, -43.261421313326345 -22.916787939071305, -43.26125296633396 -22.916888842375396, -43.261095320231675 -22.917005760693275, -43.26094989323763 -22.917137568037628, -43.26081808589328 -22.917282995031673, -43.2607011675754 -22.91744064113396, -43.260600264271304 -22.91760898812635, -43.26051634773498 -22.91778641473527, -43.26045022612853 -22.917971212245494, -43.26040253623919 -22.91816160095597, -43.260373737346654 -22.918355747319342, -43.2603641068 -22.9185517816))" +001493,Vila Isabel,Grande Tijuca,88a8a06153fffff,TRUE,13,-22.91855178,-43.26236411,PC,G,Canal do Mangue,"POLYGON ((-43.2603641068 -22.9185517816, -43.260373737346654 -22.91874781588066, -43.26040253623919 -22.918941962244034, -43.26045022612853 -22.91913235095451, -43.26051634773498 -22.91931714846473, -43.260600264271304 -22.919494575073653, -43.2607011675754 -22.919662922066042, -43.26081808589328 -22.91982056816833, -43.26094989323763 -22.919965995162375, -43.261095320231675 -22.920097802506728, -43.26125296633396 -22.920214720824607, -43.261421313326345 -22.920315624128698, -43.261598739935266 -22.920399540665024, -43.26178353744549 -22.920465662271464, -43.26197392615597 -22.920513352160807, -43.26216807251934 -22.920542151053347, -43.2623641068 -22.9205517816, -43.26256014108066 -22.920542151053347, -43.26275428744403 -22.920513352160807, -43.26294467615451 -22.920465662271464, -43.26312947366473 -22.920399540665024, -43.263306900273655 -22.920315624128698, -43.26347524726604 -22.920214720824607, -43.263632893368325 -22.920097802506728, -43.26377832036237 -22.919965995162375, -43.26391012770672 -22.91982056816833, -43.2640270460246 -22.919662922066042, -43.264127949328696 -22.919494575073653, -43.26421186586502 -22.91931714846473, -43.264277987471466 -22.91913235095451, -43.26432567736081 -22.918941962244034, -43.264354476253345 -22.91874781588066, -43.2643641068 -22.9185517816, -43.264354476253345 -22.918355747319342, -43.26432567736081 -22.91816160095597, -43.264277987471466 -22.917971212245494, -43.26421186586502 -22.91778641473527, -43.264127949328696 -22.91760898812635, -43.2640270460246 -22.91744064113396, -43.26391012770672 -22.917282995031673, -43.26377832036237 -22.917137568037628, -43.263632893368325 -22.917005760693275, -43.26347524726604 -22.916888842375396, -43.263306900273655 -22.916787939071305, -43.26312947366473 -22.91670402253498, -43.26294467615451 -22.91663790092854, -43.26275428744403 -22.916590211039196, -43.26256014108066 -22.916561412146656, -43.2623641068 -22.916551781600003, -43.26216807251934 -22.916561412146656, -43.26197392615597 -22.916590211039196, -43.26178353744549 -22.91663790092854, -43.261598739935266 -22.91670402253498, -43.261421313326345 -22.916787939071305, -43.26125296633396 -22.916888842375396, -43.261095320231675 -22.917005760693275, -43.26094989323763 -22.917137568037628, -43.26081808589328 -22.917282995031673, -43.2607011675754 -22.91744064113396, -43.260600264271304 -22.91760898812635, -43.26051634773498 -22.91778641473527, -43.26045022612853 -22.917971212245494, -43.26040253623919 -22.91816160095597, -43.260373737346654 -22.918355747319342, -43.2603641068 -22.9185517816))" +001494,Engenho de Dentro,Zona Norte,88a8a06035fffff,,,,,,,, +001495,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,395,-22.89582696,-43.29310346,PO,G,,"POLYGON ((-43.2911034599885 -22.8958269649174, -43.291113090535156 -22.89602299919806, -43.29114188942769 -22.896217145561433, -43.291189579317034 -22.89640753427191, -43.29125570092348 -22.89659233178213, -43.291339617459805 -22.896769758391052, -43.2914405207639 -22.89693810538344, -43.29155743908178 -22.89709575148573, -43.29168924642613 -22.897241178479774, -43.291834673420176 -22.897372985824127, -43.291992319522464 -22.897489904142006, -43.292160666514846 -22.897590807446097, -43.29233809312377 -22.897674723982423, -43.29252289063399 -22.897740845588864, -43.29271327934447 -22.897788535478206, -43.29290742570784 -22.897817334370746, -43.2931034599885 -22.8978269649174, -43.293299494269164 -22.897817334370746, -43.29349364063253 -22.897788535478206, -43.29368402934301 -22.897740845588864, -43.293868826853235 -22.897674723982423, -43.294046253462156 -22.897590807446097, -43.29421460045454 -22.897489904142006, -43.294372246556826 -22.897372985824127, -43.29451767355087 -22.897241178479774, -43.294649480895224 -22.89709575148573, -43.2947663992131 -22.89693810538344, -43.2948673025172 -22.896769758391052, -43.29495121905352 -22.89659233178213, -43.29501734065997 -22.89640753427191, -43.29506503054931 -22.896217145561433, -43.295093829441846 -22.89602299919806, -43.2951034599885 -22.8958269649174, -43.295093829441846 -22.89563093063674, -43.29506503054931 -22.895436784273368, -43.29501734065997 -22.895246395562893, -43.29495121905352 -22.89506159805267, -43.2948673025172 -22.89488417144375, -43.2947663992131 -22.89471582445136, -43.294649480895224 -22.894558178349072, -43.29451767355087 -22.894412751355027, -43.294372246556826 -22.894280944010674, -43.29421460045454 -22.894164025692795, -43.294046253462156 -22.894063122388705, -43.293868826853235 -22.89397920585238, -43.29368402934301 -22.893913084245938, -43.29349364063253 -22.893865394356595, -43.293299494269164 -22.893836595464055, -43.2931034599885 -22.8938269649174, -43.29290742570784 -22.893836595464055, -43.29271327934447 -22.893865394356595, -43.29252289063399 -22.893913084245938, -43.29233809312377 -22.89397920585238, -43.292160666514846 -22.894063122388705, -43.291992319522464 -22.894164025692795, -43.291834673420176 -22.894280944010674, -43.29168924642613 -22.894412751355027, -43.29155743908178 -22.894558178349072, -43.2914405207639 -22.89471582445136, -43.291339617459805 -22.89488417144375, -43.29125570092348 -22.89506159805267, -43.291189579317034 -22.895246395562893, -43.29114188942769 -22.895436784273368, -43.291113090535156 -22.89563093063674, -43.2911034599885 -22.8958269649174))" +001496,Praça da Bandeira,Grande Tijuca,88a8a0612dfffff,TRUE,11,-22.91068148,-43.21326028,PM,G,Canal do Mangue,"POLYGON ((-43.2112602792 -22.9106814823, -43.211269909746655 -22.91087751658066, -43.21129870863919 -22.911071662944032, -43.21134639852853 -22.911262051654507, -43.21141252013498 -22.91144684916473, -43.211496436671304 -22.91162427577365, -43.2115973399754 -22.91179262276604, -43.21171425829328 -22.911950268868328, -43.21184606563763 -22.912095695862373, -43.211991492631675 -22.912227503206726, -43.21214913873396 -22.912344421524605, -43.212317485726345 -22.912445324828695, -43.212494912335266 -22.91252924136502, -43.21267970984549 -22.912595362971462, -43.21287009855597 -22.912643052860805, -43.21306424491934 -22.912671851753345, -43.2132602792 -22.9126814823, -43.21345631348066 -22.912671851753345, -43.21365045984403 -22.912643052860805, -43.21384084855451 -22.912595362971462, -43.214025646064734 -22.91252924136502, -43.214203072673655 -22.912445324828695, -43.21437141966604 -22.912344421524605, -43.214529065768325 -22.912227503206726, -43.21467449276237 -22.912095695862373, -43.21480630010672 -22.911950268868328, -43.2149232184246 -22.91179262276604, -43.215024121728696 -22.91162427577365, -43.21510803826502 -22.91144684916473, -43.21517415987147 -22.911262051654507, -43.21522184976081 -22.911071662944032, -43.215250648653345 -22.91087751658066, -43.2152602792 -22.9106814823, -43.215250648653345 -22.91048544801934, -43.21522184976081 -22.910291301655967, -43.21517415987147 -22.91010091294549, -43.21510803826502 -22.90991611543527, -43.215024121728696 -22.909738688826348, -43.2149232184246 -22.90957034183396, -43.21480630010672 -22.90941269573167, -43.21467449276237 -22.909267268737626, -43.214529065768325 -22.909135461393273, -43.21437141966604 -22.909018543075394, -43.214203072673655 -22.908917639771303, -43.214025646064734 -22.908833723234977, -43.21384084855451 -22.908767601628536, -43.21365045984403 -22.908719911739194, -43.21345631348066 -22.908691112846654, -43.2132602792 -22.9086814823, -43.21306424491934 -22.908691112846654, -43.21287009855597 -22.908719911739194, -43.21267970984549 -22.908767601628536, -43.212494912335266 -22.908833723234977, -43.212317485726345 -22.908917639771303, -43.21214913873396 -22.909018543075394, -43.211991492631675 -22.909135461393273, -43.21184606563763 -22.909267268737626, -43.21171425829328 -22.90941269573167, -43.2115973399754 -22.90957034183396, -43.211496436671304 -22.909738688826348, -43.21141252013498 -22.90991611543527, -43.21134639852853 -22.91010091294549, -43.21129870863919 -22.910291301655967, -43.211269909746655 -22.91048544801934, -43.2112602792 -22.9106814823))" +001497,Praça da Bandeira,Grande Tijuca,88a8a0612dfffff,TRUE,11,-22.91068148,-43.21326028,PM,G,Canal do Mangue,"POLYGON ((-43.2112602792 -22.9106814823, -43.211269909746655 -22.91087751658066, -43.21129870863919 -22.911071662944032, -43.21134639852853 -22.911262051654507, -43.21141252013498 -22.91144684916473, -43.211496436671304 -22.91162427577365, -43.2115973399754 -22.91179262276604, -43.21171425829328 -22.911950268868328, -43.21184606563763 -22.912095695862373, -43.211991492631675 -22.912227503206726, -43.21214913873396 -22.912344421524605, -43.212317485726345 -22.912445324828695, -43.212494912335266 -22.91252924136502, -43.21267970984549 -22.912595362971462, -43.21287009855597 -22.912643052860805, -43.21306424491934 -22.912671851753345, -43.2132602792 -22.9126814823, -43.21345631348066 -22.912671851753345, -43.21365045984403 -22.912643052860805, -43.21384084855451 -22.912595362971462, -43.214025646064734 -22.91252924136502, -43.214203072673655 -22.912445324828695, -43.21437141966604 -22.912344421524605, -43.214529065768325 -22.912227503206726, -43.21467449276237 -22.912095695862373, -43.21480630010672 -22.911950268868328, -43.2149232184246 -22.91179262276604, -43.215024121728696 -22.91162427577365, -43.21510803826502 -22.91144684916473, -43.21517415987147 -22.911262051654507, -43.21522184976081 -22.911071662944032, -43.215250648653345 -22.91087751658066, -43.2152602792 -22.9106814823, -43.215250648653345 -22.91048544801934, -43.21522184976081 -22.910291301655967, -43.21517415987147 -22.91010091294549, -43.21510803826502 -22.90991611543527, -43.215024121728696 -22.909738688826348, -43.2149232184246 -22.90957034183396, -43.21480630010672 -22.90941269573167, -43.21467449276237 -22.909267268737626, -43.214529065768325 -22.909135461393273, -43.21437141966604 -22.909018543075394, -43.214203072673655 -22.908917639771303, -43.214025646064734 -22.908833723234977, -43.21384084855451 -22.908767601628536, -43.21365045984403 -22.908719911739194, -43.21345631348066 -22.908691112846654, -43.2132602792 -22.9086814823, -43.21306424491934 -22.908691112846654, -43.21287009855597 -22.908719911739194, -43.21267970984549 -22.908767601628536, -43.212494912335266 -22.908833723234977, -43.212317485726345 -22.908917639771303, -43.21214913873396 -22.909018543075394, -43.211991492631675 -22.909135461393273, -43.21184606563763 -22.909267268737626, -43.21171425829328 -22.90941269573167, -43.2115973399754 -22.90957034183396, -43.211496436671304 -22.909738688826348, -43.21141252013498 -22.90991611543527, -43.21134639852853 -22.91010091294549, -43.21129870863919 -22.910291301655967, -43.211269909746655 -22.91048544801934, -43.2112602792 -22.9106814823))" +001498,Vila Isabel,Grande Tijuca,88a8a06157fffff,TRUE,336,-22.91811048,-43.25964713,PO,G,Canal do Mangue,"POLYGON ((-43.2576471313 -22.9181104827, -43.257656761846654 -22.91830651698066, -43.25768556073919 -22.918500663344034, -43.25773325062853 -22.91869105205451, -43.25779937223498 -22.91887584956473, -43.2578832887713 -22.919053276173653, -43.2579841920754 -22.91922162316604, -43.25810111039328 -22.91937926926833, -43.25823291773763 -22.919524696262375, -43.258378344731675 -22.919656503606728, -43.25853599083396 -22.919773421924607, -43.258704337826344 -22.919874325228697, -43.258881764435266 -22.919958241765023, -43.25906656194549 -22.920024363371464, -43.25925695065597 -22.920072053260807, -43.25945109701934 -22.920100852153347, -43.2596471313 -22.9201104827, -43.25984316558066 -22.920100852153347, -43.26003731194403 -22.920072053260807, -43.26022770065451 -22.920024363371464, -43.26041249816473 -22.919958241765023, -43.260589924773655 -22.919874325228697, -43.260758271766036 -22.919773421924607, -43.260915917868324 -22.919656503606728, -43.26106134486237 -22.919524696262375, -43.26119315220672 -22.91937926926833, -43.2613100705246 -22.91922162316604, -43.261410973828696 -22.919053276173653, -43.26149489036502 -22.91887584956473, -43.261561011971466 -22.91869105205451, -43.26160870186081 -22.918500663344034, -43.261637500753345 -22.91830651698066, -43.2616471313 -22.9181104827, -43.261637500753345 -22.917914448419342, -43.26160870186081 -22.91772030205597, -43.261561011971466 -22.917529913345493, -43.26149489036502 -22.91734511583527, -43.261410973828696 -22.91716768922635, -43.2613100705246 -22.91699934223396, -43.26119315220672 -22.916841696131673, -43.26106134486237 -22.916696269137628, -43.260915917868324 -22.916564461793275, -43.260758271766036 -22.916447543475396, -43.260589924773655 -22.916346640171305, -43.26041249816473 -22.91626272363498, -43.26022770065451 -22.91619660202854, -43.26003731194403 -22.916148912139196, -43.25984316558066 -22.916120113246656, -43.2596471313 -22.916110482700002, -43.25945109701934 -22.916120113246656, -43.25925695065597 -22.916148912139196, -43.25906656194549 -22.91619660202854, -43.258881764435266 -22.91626272363498, -43.258704337826344 -22.916346640171305, -43.25853599083396 -22.916447543475396, -43.258378344731675 -22.916564461793275, -43.25823291773763 -22.916696269137628, -43.25810111039328 -22.916841696131673, -43.2579841920754 -22.91699934223396, -43.2578832887713 -22.91716768922635, -43.25779937223498 -22.91734511583527, -43.25773325062853 -22.917529913345493, -43.25768556073919 -22.91772030205597, -43.257656761846654 -22.917914448419342, -43.2576471313 -22.9181104827))" +001499,Vila Isabel,Grande Tijuca,88a8a06157fffff,TRUE,336,-22.91811048,-43.25964713,PO,G,Canal do Mangue,"POLYGON ((-43.2576471313 -22.9181104827, -43.257656761846654 -22.91830651698066, -43.25768556073919 -22.918500663344034, -43.25773325062853 -22.91869105205451, -43.25779937223498 -22.91887584956473, -43.2578832887713 -22.919053276173653, -43.2579841920754 -22.91922162316604, -43.25810111039328 -22.91937926926833, -43.25823291773763 -22.919524696262375, -43.258378344731675 -22.919656503606728, -43.25853599083396 -22.919773421924607, -43.258704337826344 -22.919874325228697, -43.258881764435266 -22.919958241765023, -43.25906656194549 -22.920024363371464, -43.25925695065597 -22.920072053260807, -43.25945109701934 -22.920100852153347, -43.2596471313 -22.9201104827, -43.25984316558066 -22.920100852153347, -43.26003731194403 -22.920072053260807, -43.26022770065451 -22.920024363371464, -43.26041249816473 -22.919958241765023, -43.260589924773655 -22.919874325228697, -43.260758271766036 -22.919773421924607, -43.260915917868324 -22.919656503606728, -43.26106134486237 -22.919524696262375, -43.26119315220672 -22.91937926926833, -43.2613100705246 -22.91922162316604, -43.261410973828696 -22.919053276173653, -43.26149489036502 -22.91887584956473, -43.261561011971466 -22.91869105205451, -43.26160870186081 -22.918500663344034, -43.261637500753345 -22.91830651698066, -43.2616471313 -22.9181104827, -43.261637500753345 -22.917914448419342, -43.26160870186081 -22.91772030205597, -43.261561011971466 -22.917529913345493, -43.26149489036502 -22.91734511583527, -43.261410973828696 -22.91716768922635, -43.2613100705246 -22.91699934223396, -43.26119315220672 -22.916841696131673, -43.26106134486237 -22.916696269137628, -43.260915917868324 -22.916564461793275, -43.260758271766036 -22.916447543475396, -43.260589924773655 -22.916346640171305, -43.26041249816473 -22.91626272363498, -43.26022770065451 -22.91619660202854, -43.26003731194403 -22.916148912139196, -43.25984316558066 -22.916120113246656, -43.2596471313 -22.916110482700002, -43.25945109701934 -22.916120113246656, -43.25925695065597 -22.916148912139196, -43.25906656194549 -22.91619660202854, -43.258881764435266 -22.91626272363498, -43.258704337826344 -22.916346640171305, -43.25853599083396 -22.916447543475396, -43.258378344731675 -22.916564461793275, -43.25823291773763 -22.916696269137628, -43.25810111039328 -22.916841696131673, -43.2579841920754 -22.91699934223396, -43.2578832887713 -22.91716768922635, -43.25779937223498 -22.91734511583527, -43.25773325062853 -22.917529913345493, -43.25768556073919 -22.91772030205597, -43.257656761846654 -22.917914448419342, -43.2576471313 -22.9181104827))" +001500,Tijuca,Grande Tijuca,88a8a0610dfffff,,,,,,,, +001501,Tijuca,Grande Tijuca,88a8a0610dfffff,,,,,,,, +001502,Urca,Zona Sul,88a8a078a9fffff,TRUE,305,-22.95105933,-43.17452325,PO,ZS,Praia de Botafogo,"POLYGON ((-43.1725232489 -22.9510593309, -43.172532879446656 -22.95125536518066, -43.17256167833919 -22.951449511544034, -43.172609368228535 -22.95163990025451, -43.17267548983498 -22.95182469776473, -43.172759406371306 -22.952002124373653, -43.1728603096754 -22.952170471366042, -43.17297722799328 -22.95232811746833, -43.17310903533763 -22.952473544462375, -43.17325446233168 -22.952605351806728, -43.173412108433965 -22.952722270124607, -43.17358045542635 -22.952823173428698, -43.17375788203527 -22.952907089965024, -43.17394267954549 -22.952973211571464, -43.17413306825597 -22.953020901460807, -43.17432721461934 -22.953049700353347, -43.1745232489 -22.9530593309, -43.174719283180664 -22.953049700353347, -43.174913429544034 -22.953020901460807, -43.17510381825451 -22.952973211571464, -43.175288615764735 -22.952907089965024, -43.17546604237366 -22.952823173428698, -43.17563438936604 -22.952722270124607, -43.175792035468326 -22.952605351806728, -43.17593746246237 -22.952473544462375, -43.176069269806725 -22.95232811746833, -43.1761861881246 -22.952170471366042, -43.1762870914287 -22.952002124373653, -43.176371007965024 -22.95182469776473, -43.17643712957147 -22.95163990025451, -43.17648481946081 -22.951449511544034, -43.17651361835335 -22.95125536518066, -43.176523248900004 -22.9510593309, -43.17651361835335 -22.950863296619342, -43.17648481946081 -22.95066915025597, -43.17643712957147 -22.950478761545494, -43.176371007965024 -22.95029396403527, -43.1762870914287 -22.95011653742635, -43.1761861881246 -22.94994819043396, -43.176069269806725 -22.949790544331673, -43.17593746246237 -22.949645117337628, -43.175792035468326 -22.949513309993275, -43.17563438936604 -22.949396391675396, -43.17546604237366 -22.949295488371305, -43.175288615764735 -22.94921157183498, -43.17510381825451 -22.94914545022854, -43.174913429544034 -22.949097760339196, -43.174719283180664 -22.949068961446656, -43.1745232489 -22.949059330900003, -43.17432721461934 -22.949068961446656, -43.17413306825597 -22.949097760339196, -43.17394267954549 -22.94914545022854, -43.17375788203527 -22.94921157183498, -43.17358045542635 -22.949295488371305, -43.173412108433965 -22.949396391675396, -43.17325446233168 -22.949513309993275, -43.17310903533763 -22.949645117337628, -43.17297722799328 -22.949790544331673, -43.1728603096754 -22.94994819043396, -43.172759406371306 -22.95011653742635, -43.17267548983498 -22.95029396403527, -43.172609368228535 -22.950478761545494, -43.17256167833919 -22.95066915025597, -43.172532879446656 -22.950863296619342, -43.1725232489 -22.9510593309))" +001503,Botafogo,Zona Sul,88a8a078a9fffff,TRUE,305,-22.95105933,-43.17452325,PO,ZS,Praia de Botafogo,"POLYGON ((-43.1725232489 -22.9510593309, -43.172532879446656 -22.95125536518066, -43.17256167833919 -22.951449511544034, -43.172609368228535 -22.95163990025451, -43.17267548983498 -22.95182469776473, -43.172759406371306 -22.952002124373653, -43.1728603096754 -22.952170471366042, -43.17297722799328 -22.95232811746833, -43.17310903533763 -22.952473544462375, -43.17325446233168 -22.952605351806728, -43.173412108433965 -22.952722270124607, -43.17358045542635 -22.952823173428698, -43.17375788203527 -22.952907089965024, -43.17394267954549 -22.952973211571464, -43.17413306825597 -22.953020901460807, -43.17432721461934 -22.953049700353347, -43.1745232489 -22.9530593309, -43.174719283180664 -22.953049700353347, -43.174913429544034 -22.953020901460807, -43.17510381825451 -22.952973211571464, -43.175288615764735 -22.952907089965024, -43.17546604237366 -22.952823173428698, -43.17563438936604 -22.952722270124607, -43.175792035468326 -22.952605351806728, -43.17593746246237 -22.952473544462375, -43.176069269806725 -22.95232811746833, -43.1761861881246 -22.952170471366042, -43.1762870914287 -22.952002124373653, -43.176371007965024 -22.95182469776473, -43.17643712957147 -22.95163990025451, -43.17648481946081 -22.951449511544034, -43.17651361835335 -22.95125536518066, -43.176523248900004 -22.9510593309, -43.17651361835335 -22.950863296619342, -43.17648481946081 -22.95066915025597, -43.17643712957147 -22.950478761545494, -43.176371007965024 -22.95029396403527, -43.1762870914287 -22.95011653742635, -43.1761861881246 -22.94994819043396, -43.176069269806725 -22.949790544331673, -43.17593746246237 -22.949645117337628, -43.175792035468326 -22.949513309993275, -43.17563438936604 -22.949396391675396, -43.17546604237366 -22.949295488371305, -43.175288615764735 -22.94921157183498, -43.17510381825451 -22.94914545022854, -43.174913429544034 -22.949097760339196, -43.174719283180664 -22.949068961446656, -43.1745232489 -22.949059330900003, -43.17432721461934 -22.949068961446656, -43.17413306825597 -22.949097760339196, -43.17394267954549 -22.94914545022854, -43.17375788203527 -22.94921157183498, -43.17358045542635 -22.949295488371305, -43.173412108433965 -22.949396391675396, -43.17325446233168 -22.949513309993275, -43.17310903533763 -22.949645117337628, -43.17297722799328 -22.949790544331673, -43.1728603096754 -22.94994819043396, -43.172759406371306 -22.95011653742635, -43.17267548983498 -22.95029396403527, -43.172609368228535 -22.950478761545494, -43.17256167833919 -22.95066915025597, -43.172532879446656 -22.950863296619342, -43.1725232489 -22.9510593309))" +001504,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +001505,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +001506,Botafogo,Zona Sul,88a8a07881fffff,,,,,,,, +001507,Botafogo,Zona Sul,88a8a07881fffff,,,,,,,, +001508,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +001509,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +001510,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +001511,São Cristóvão,Centro,88a8a06129fffff,,,,,,,, +001512,Campo Grande,Zona Oeste,88a8a02823fffff,,,,,,,, +001513,Campo Grande,Zona Oeste,88a8a02823fffff,,,,,,,, +001514,Vila Kosmos,Zona Norte,88a8a06193fffff,,,,,,,, +001515,Vila Kosmos,Zona Norte,88a8a06193fffff,,,,,,,, +001516,Brás de Pina,Zona Norte,88a8a06e6bfffff,,,,,,,, +001517,Brás de Pina,Zona Norte,88a8a06e6bfffff,,,,,,,, +001518,Brás de Pina,Zona Norte,88a8a06e6bfffff,,,,,,,, +001519,Brás de Pina,Zona Norte,88a8a06e6bfffff,,,,,,,, +001520,Vila da Penha,Zona Norte,88a8a06e6bfffff,,,,,,,, +001521,Vila da Penha,Zona Norte,88a8a06e6bfffff,,,,,,,, +001522,Praça Seca,Jacarepaguá,88a8a060cbfffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +001523,Praça Seca,Jacarepaguá,88a8a060cbfffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +001524,Vasco da Gama,Centro,88a8a06135fffff,,,,,,,, +001525,Vasco da Gama,Centro,88a8a06135fffff,,,,,,,, +001526,São Cristóvão,Centro,88a8a06123fffff,TRUE,62,-22.89493066,-43.21975158,PC,G,Canal do Cunha,"POLYGON ((-43.217751576699996 -22.8949306631, -43.21776120724665 -22.895126697380658, -43.21779000613919 -22.89532084374403, -43.21783769602853 -22.895511232454506, -43.217903817634976 -22.89569602996473, -43.2179877341713 -22.89587345657365, -43.2180886374754 -22.89604180356604, -43.218205555793276 -22.896199449668327, -43.21833736313763 -22.896344876662372, -43.218482790131674 -22.896476684006725, -43.21864043623396 -22.896593602324604, -43.21880878322634 -22.896694505628695, -43.218986209835265 -22.89677842216502, -43.21917100734549 -22.89684454377146, -43.219361396055966 -22.896892233660804, -43.219555542419336 -22.896921032553344, -43.2197515767 -22.896930663099997, -43.21994761098066 -22.896921032553344, -43.22014175734403 -22.896892233660804, -43.22033214605451 -22.89684454377146, -43.22051694356473 -22.89677842216502, -43.22069437017365 -22.896694505628695, -43.220862717166035 -22.896593602324604, -43.22102036326832 -22.896476684006725, -43.22116579026237 -22.896344876662372, -43.22129759760672 -22.896199449668327, -43.2214145159246 -22.89604180356604, -43.221515419228695 -22.89587345657365, -43.22159933576502 -22.89569602996473, -43.221665457371465 -22.895511232454506, -43.22171314726081 -22.89532084374403, -43.221741946153344 -22.895126697380658, -43.2217515767 -22.8949306631, -43.221741946153344 -22.89473462881934, -43.22171314726081 -22.894540482455966, -43.221665457371465 -22.89435009374549, -43.22159933576502 -22.89416529623527, -43.221515419228695 -22.893987869626347, -43.2214145159246 -22.893819522633958, -43.22129759760672 -22.89366187653167, -43.22116579026237 -22.893516449537625, -43.22102036326832 -22.893384642193272, -43.220862717166035 -22.893267723875393, -43.22069437017365 -22.893166820571302, -43.22051694356473 -22.893082904034976, -43.22033214605451 -22.893016782428536, -43.22014175734403 -22.892969092539193, -43.21994761098066 -22.892940293646653, -43.2197515767 -22.8929306631, -43.219555542419336 -22.892940293646653, -43.219361396055966 -22.892969092539193, -43.21917100734549 -22.893016782428536, -43.218986209835265 -22.893082904034976, -43.21880878322634 -22.893166820571302, -43.21864043623396 -22.893267723875393, -43.218482790131674 -22.893384642193272, -43.21833736313763 -22.893516449537625, -43.218205555793276 -22.89366187653167, -43.2180886374754 -22.893819522633958, -43.2179877341713 -22.893987869626347, -43.217903817634976 -22.89416529623527, -43.21783769602853 -22.89435009374549, -43.21779000613919 -22.894540482455966, -43.21776120724665 -22.89473462881934, -43.217751576699996 -22.8949306631))" +001527,São Cristóvão,Centro,88a8a06123fffff,TRUE,62,-22.89493066,-43.21975158,PC,G,Canal do Cunha,"POLYGON ((-43.217751576699996 -22.8949306631, -43.21776120724665 -22.895126697380658, -43.21779000613919 -22.89532084374403, -43.21783769602853 -22.895511232454506, -43.217903817634976 -22.89569602996473, -43.2179877341713 -22.89587345657365, -43.2180886374754 -22.89604180356604, -43.218205555793276 -22.896199449668327, -43.21833736313763 -22.896344876662372, -43.218482790131674 -22.896476684006725, -43.21864043623396 -22.896593602324604, -43.21880878322634 -22.896694505628695, -43.218986209835265 -22.89677842216502, -43.21917100734549 -22.89684454377146, -43.219361396055966 -22.896892233660804, -43.219555542419336 -22.896921032553344, -43.2197515767 -22.896930663099997, -43.21994761098066 -22.896921032553344, -43.22014175734403 -22.896892233660804, -43.22033214605451 -22.89684454377146, -43.22051694356473 -22.89677842216502, -43.22069437017365 -22.896694505628695, -43.220862717166035 -22.896593602324604, -43.22102036326832 -22.896476684006725, -43.22116579026237 -22.896344876662372, -43.22129759760672 -22.896199449668327, -43.2214145159246 -22.89604180356604, -43.221515419228695 -22.89587345657365, -43.22159933576502 -22.89569602996473, -43.221665457371465 -22.895511232454506, -43.22171314726081 -22.89532084374403, -43.221741946153344 -22.895126697380658, -43.2217515767 -22.8949306631, -43.221741946153344 -22.89473462881934, -43.22171314726081 -22.894540482455966, -43.221665457371465 -22.89435009374549, -43.22159933576502 -22.89416529623527, -43.221515419228695 -22.893987869626347, -43.2214145159246 -22.893819522633958, -43.22129759760672 -22.89366187653167, -43.22116579026237 -22.893516449537625, -43.22102036326832 -22.893384642193272, -43.220862717166035 -22.893267723875393, -43.22069437017365 -22.893166820571302, -43.22051694356473 -22.893082904034976, -43.22033214605451 -22.893016782428536, -43.22014175734403 -22.892969092539193, -43.21994761098066 -22.892940293646653, -43.2197515767 -22.8929306631, -43.219555542419336 -22.892940293646653, -43.219361396055966 -22.892969092539193, -43.21917100734549 -22.893016782428536, -43.218986209835265 -22.893082904034976, -43.21880878322634 -22.893166820571302, -43.21864043623396 -22.893267723875393, -43.218482790131674 -22.893384642193272, -43.21833736313763 -22.893516449537625, -43.218205555793276 -22.89366187653167, -43.2180886374754 -22.893819522633958, -43.2179877341713 -22.893987869626347, -43.217903817634976 -22.89416529623527, -43.21783769602853 -22.89435009374549, -43.21779000613919 -22.894540482455966, -43.21776120724665 -22.89473462881934, -43.217751576699996 -22.8949306631))" +001528,São Cristóvão,Centro,88a8a0612dfffff,TRUE,312,-22.90442445,-43.20968247,PO,G,Canal do Mangue,"POLYGON ((-43.207682469299996 -22.9044244498, -43.20769209984665 -22.90462048408066, -43.20772089873919 -22.904814630444033, -43.20776858862853 -22.90500501915451, -43.20783471023498 -22.90518981666473, -43.2079186267713 -22.905367243273652, -43.2080195300754 -22.90553559026604, -43.208136448393276 -22.90569323636833, -43.20826825573763 -22.905838663362374, -43.208413682731674 -22.905970470706727, -43.20857132883396 -22.906087389024606, -43.208739675826344 -22.906188292328697, -43.208917102435265 -22.906272208865023, -43.20910189994549 -22.906338330471463, -43.209292288655966 -22.906386020360806, -43.209486435019336 -22.906414819253346, -43.2096824693 -22.9064244498, -43.20987850358066 -22.906414819253346, -43.21007264994403 -22.906386020360806, -43.21026303865451 -22.906338330471463, -43.21044783616473 -22.906272208865023, -43.210625262773654 -22.906188292328697, -43.210793609766036 -22.906087389024606, -43.21095125586832 -22.905970470706727, -43.21109668286237 -22.905838663362374, -43.21122849020672 -22.90569323636833, -43.2113454085246 -22.90553559026604, -43.211446311828695 -22.905367243273652, -43.21153022836502 -22.90518981666473, -43.211596349971465 -22.90500501915451, -43.21164403986081 -22.904814630444033, -43.211672838753344 -22.90462048408066, -43.2116824693 -22.9044244498, -43.211672838753344 -22.90422841551934, -43.21164403986081 -22.904034269155968, -43.211596349971465 -22.903843880445493, -43.21153022836502 -22.90365908293527, -43.211446311828695 -22.90348165632635, -43.2113454085246 -22.90331330933396, -43.21122849020672 -22.903155663231672, -43.21109668286237 -22.903010236237627, -43.21095125586832 -22.902878428893274, -43.210793609766036 -22.902761510575395, -43.210625262773654 -22.902660607271304, -43.21044783616473 -22.90257669073498, -43.21026303865451 -22.902510569128538, -43.21007264994403 -22.902462879239195, -43.20987850358066 -22.902434080346655, -43.2096824693 -22.9024244498, -43.209486435019336 -22.902434080346655, -43.209292288655966 -22.902462879239195, -43.20910189994549 -22.902510569128538, -43.208917102435265 -22.90257669073498, -43.208739675826344 -22.902660607271304, -43.20857132883396 -22.902761510575395, -43.208413682731674 -22.902878428893274, -43.20826825573763 -22.903010236237627, -43.208136448393276 -22.903155663231672, -43.2080195300754 -22.90331330933396, -43.2079186267713 -22.90348165632635, -43.20783471023498 -22.90365908293527, -43.20776858862853 -22.903843880445493, -43.20772089873919 -22.904034269155968, -43.20769209984665 -22.90422841551934, -43.207682469299996 -22.9044244498))" +001530,Tijuca,Grande Tijuca,88a8a06161fffff,TRUE,313,-22.92022129,-43.21651183,PO,G,Canal do Mangue,"POLYGON ((-43.2145118299 -22.9202212893, -43.214521460446655 -22.920417323580658, -43.21455025933919 -22.92061146994403, -43.21459794922853 -22.920801858654507, -43.21466407083498 -22.92098665616473, -43.214747987371304 -22.92116408277365, -43.2148488906754 -22.92133242976604, -43.21496580899328 -22.921490075868327, -43.21509761633763 -22.921635502862372, -43.215243043331675 -22.921767310206725, -43.21540068943396 -22.921884228524604, -43.215569036426345 -22.921985131828695, -43.215746463035266 -22.92206904836502, -43.21593126054549 -22.92213516997146, -43.21612164925597 -22.922182859860804, -43.21631579561934 -22.922211658753344, -43.2165118299 -22.922221289299998, -43.21670786418066 -22.922211658753344, -43.21690201054403 -22.922182859860804, -43.21709239925451 -22.92213516997146, -43.217277196764734 -22.92206904836502, -43.217454623373655 -22.921985131828695, -43.21762297036604 -22.921884228524604, -43.217780616468325 -22.921767310206725, -43.21792604346237 -22.921635502862372, -43.21805785080672 -22.921490075868327, -43.2181747691246 -22.92133242976604, -43.218275672428696 -22.92116408277365, -43.21835958896502 -22.92098665616473, -43.218425710571466 -22.920801858654507, -43.21847340046081 -22.92061146994403, -43.218502199353345 -22.920417323580658, -43.2185118299 -22.9202212893, -43.218502199353345 -22.92002525501934, -43.21847340046081 -22.919831108655966, -43.218425710571466 -22.91964071994549, -43.21835958896502 -22.91945592243527, -43.218275672428696 -22.919278495826347, -43.2181747691246 -22.91911014883396, -43.21805785080672 -22.91895250273167, -43.21792604346237 -22.918807075737625, -43.217780616468325 -22.918675268393272, -43.21762297036604 -22.918558350075394, -43.217454623373655 -22.918457446771303, -43.217277196764734 -22.918373530234977, -43.21709239925451 -22.918307408628536, -43.21690201054403 -22.918259718739193, -43.21670786418066 -22.918230919846653, -43.2165118299 -22.9182212893, -43.21631579561934 -22.918230919846653, -43.21612164925597 -22.918259718739193, -43.21593126054549 -22.918307408628536, -43.215746463035266 -22.918373530234977, -43.215569036426345 -22.918457446771303, -43.21540068943396 -22.918558350075394, -43.215243043331675 -22.918675268393272, -43.21509761633763 -22.918807075737625, -43.21496580899328 -22.91895250273167, -43.2148488906754 -22.91911014883396, -43.214747987371304 -22.919278495826347, -43.21466407083498 -22.91945592243527, -43.21459794922853 -22.91964071994549, -43.21455025933919 -22.919831108655966, -43.214521460446655 -22.92002525501934, -43.2145118299 -22.9202212893))" +001531,Tijuca,Grande Tijuca,88a8a06161fffff,TRUE,313,-22.92022129,-43.21651183,PO,G,Canal do Mangue,"POLYGON ((-43.2145118299 -22.9202212893, -43.214521460446655 -22.920417323580658, -43.21455025933919 -22.92061146994403, -43.21459794922853 -22.920801858654507, -43.21466407083498 -22.92098665616473, -43.214747987371304 -22.92116408277365, -43.2148488906754 -22.92133242976604, -43.21496580899328 -22.921490075868327, -43.21509761633763 -22.921635502862372, -43.215243043331675 -22.921767310206725, -43.21540068943396 -22.921884228524604, -43.215569036426345 -22.921985131828695, -43.215746463035266 -22.92206904836502, -43.21593126054549 -22.92213516997146, -43.21612164925597 -22.922182859860804, -43.21631579561934 -22.922211658753344, -43.2165118299 -22.922221289299998, -43.21670786418066 -22.922211658753344, -43.21690201054403 -22.922182859860804, -43.21709239925451 -22.92213516997146, -43.217277196764734 -22.92206904836502, -43.217454623373655 -22.921985131828695, -43.21762297036604 -22.921884228524604, -43.217780616468325 -22.921767310206725, -43.21792604346237 -22.921635502862372, -43.21805785080672 -22.921490075868327, -43.2181747691246 -22.92133242976604, -43.218275672428696 -22.92116408277365, -43.21835958896502 -22.92098665616473, -43.218425710571466 -22.920801858654507, -43.21847340046081 -22.92061146994403, -43.218502199353345 -22.920417323580658, -43.2185118299 -22.9202212893, -43.218502199353345 -22.92002525501934, -43.21847340046081 -22.919831108655966, -43.218425710571466 -22.91964071994549, -43.21835958896502 -22.91945592243527, -43.218275672428696 -22.919278495826347, -43.2181747691246 -22.91911014883396, -43.21805785080672 -22.91895250273167, -43.21792604346237 -22.918807075737625, -43.217780616468325 -22.918675268393272, -43.21762297036604 -22.918558350075394, -43.217454623373655 -22.918457446771303, -43.217277196764734 -22.918373530234977, -43.21709239925451 -22.918307408628536, -43.21690201054403 -22.918259718739193, -43.21670786418066 -22.918230919846653, -43.2165118299 -22.9182212893, -43.21631579561934 -22.918230919846653, -43.21612164925597 -22.918259718739193, -43.21593126054549 -22.918307408628536, -43.215746463035266 -22.918373530234977, -43.215569036426345 -22.918457446771303, -43.21540068943396 -22.918558350075394, -43.215243043331675 -22.918675268393272, -43.21509761633763 -22.918807075737625, -43.21496580899328 -22.91895250273167, -43.2148488906754 -22.91911014883396, -43.214747987371304 -22.919278495826347, -43.21466407083498 -22.91945592243527, -43.21459794922853 -22.91964071994549, -43.21455025933919 -22.919831108655966, -43.214521460446655 -22.92002525501934, -43.2145118299 -22.9202212893))" +001532,Tijuca,Grande Tijuca,88a8a0616bfffff,TRUE,319,-22.92078845,-43.22614118,PO,G,Canal do Mangue,"POLYGON ((-43.2241411808 -22.9207884477, -43.224150811346654 -22.92098448198066, -43.22417961023919 -22.921178628344034, -43.22422730012853 -22.92136901705451, -43.22429342173498 -22.92155381456473, -43.2243773382713 -22.921731241173653, -43.2244782415754 -22.921899588166042, -43.224595159893276 -22.92205723426833, -43.22472696723763 -22.922202661262375, -43.224872394231674 -22.922334468606728, -43.22503004033396 -22.922451386924607, -43.225198387326344 -22.922552290228698, -43.225375813935266 -22.922636206765024, -43.22556061144549 -22.922702328371464, -43.22575100015597 -22.922750018260807, -43.22594514651934 -22.922778817153347, -43.2261411808 -22.9227884477, -43.22633721508066 -22.922778817153347, -43.22653136144403 -22.922750018260807, -43.22672175015451 -22.922702328371464, -43.22690654766473 -22.922636206765024, -43.227083974273654 -22.922552290228698, -43.227252321266036 -22.922451386924607, -43.227409967368324 -22.922334468606728, -43.22755539436237 -22.922202661262375, -43.22768720170672 -22.92205723426833, -43.2278041200246 -22.921899588166042, -43.227905023328695 -22.921731241173653, -43.22798893986502 -22.92155381456473, -43.228055061471466 -22.92136901705451, -43.22810275136081 -22.921178628344034, -43.228131550253345 -22.92098448198066, -43.2281411808 -22.9207884477, -43.228131550253345 -22.920592413419342, -43.22810275136081 -22.92039826705597, -43.228055061471466 -22.920207878345494, -43.22798893986502 -22.92002308083527, -43.227905023328695 -22.91984565422635, -43.2278041200246 -22.91967730723396, -43.22768720170672 -22.919519661131673, -43.22755539436237 -22.919374234137628, -43.227409967368324 -22.919242426793275, -43.227252321266036 -22.919125508475396, -43.227083974273654 -22.919024605171305, -43.22690654766473 -22.91894068863498, -43.22672175015451 -22.91887456702854, -43.22653136144403 -22.918826877139196, -43.22633721508066 -22.918798078246656, -43.2261411808 -22.918788447700003, -43.22594514651934 -22.918798078246656, -43.22575100015597 -22.918826877139196, -43.22556061144549 -22.91887456702854, -43.225375813935266 -22.91894068863498, -43.225198387326344 -22.919024605171305, -43.22503004033396 -22.919125508475396, -43.224872394231674 -22.919242426793275, -43.22472696723763 -22.919374234137628, -43.224595159893276 -22.919519661131673, -43.2244782415754 -22.91967730723396, -43.2243773382713 -22.91984565422635, -43.22429342173498 -22.92002308083527, -43.22422730012853 -22.920207878345494, -43.22417961023919 -22.92039826705597, -43.224150811346654 -22.920592413419342, -43.2241411808 -22.9207884477))" +001533,Tijuca,Grande Tijuca,88a8a0616bfffff,TRUE,319,-22.92078845,-43.22614118,PO,G,Canal do Mangue,"POLYGON ((-43.2241411808 -22.9207884477, -43.224150811346654 -22.92098448198066, -43.22417961023919 -22.921178628344034, -43.22422730012853 -22.92136901705451, -43.22429342173498 -22.92155381456473, -43.2243773382713 -22.921731241173653, -43.2244782415754 -22.921899588166042, -43.224595159893276 -22.92205723426833, -43.22472696723763 -22.922202661262375, -43.224872394231674 -22.922334468606728, -43.22503004033396 -22.922451386924607, -43.225198387326344 -22.922552290228698, -43.225375813935266 -22.922636206765024, -43.22556061144549 -22.922702328371464, -43.22575100015597 -22.922750018260807, -43.22594514651934 -22.922778817153347, -43.2261411808 -22.9227884477, -43.22633721508066 -22.922778817153347, -43.22653136144403 -22.922750018260807, -43.22672175015451 -22.922702328371464, -43.22690654766473 -22.922636206765024, -43.227083974273654 -22.922552290228698, -43.227252321266036 -22.922451386924607, -43.227409967368324 -22.922334468606728, -43.22755539436237 -22.922202661262375, -43.22768720170672 -22.92205723426833, -43.2278041200246 -22.921899588166042, -43.227905023328695 -22.921731241173653, -43.22798893986502 -22.92155381456473, -43.228055061471466 -22.92136901705451, -43.22810275136081 -22.921178628344034, -43.228131550253345 -22.92098448198066, -43.2281411808 -22.9207884477, -43.228131550253345 -22.920592413419342, -43.22810275136081 -22.92039826705597, -43.228055061471466 -22.920207878345494, -43.22798893986502 -22.92002308083527, -43.227905023328695 -22.91984565422635, -43.2278041200246 -22.91967730723396, -43.22768720170672 -22.919519661131673, -43.22755539436237 -22.919374234137628, -43.227409967368324 -22.919242426793275, -43.227252321266036 -22.919125508475396, -43.227083974273654 -22.919024605171305, -43.22690654766473 -22.91894068863498, -43.22672175015451 -22.91887456702854, -43.22653136144403 -22.918826877139196, -43.22633721508066 -22.918798078246656, -43.2261411808 -22.918788447700003, -43.22594514651934 -22.918798078246656, -43.22575100015597 -22.918826877139196, -43.22556061144549 -22.91887456702854, -43.225375813935266 -22.91894068863498, -43.225198387326344 -22.919024605171305, -43.22503004033396 -22.919125508475396, -43.224872394231674 -22.919242426793275, -43.22472696723763 -22.919374234137628, -43.224595159893276 -22.919519661131673, -43.2244782415754 -22.91967730723396, -43.2243773382713 -22.91984565422635, -43.22429342173498 -22.92002308083527, -43.22422730012853 -22.920207878345494, -43.22417961023919 -22.92039826705597, -43.224150811346654 -22.920592413419342, -43.2241411808 -22.9207884477))" +001534,Maracanã,Grande Tijuca,88a8a06129fffff,TRUE,316,-22.91204274,-43.2211205,PO,G,Canal do Mangue,"POLYGON ((-43.2191204986 -22.9120427431, -43.219130129146656 -22.912238777380658, -43.21915892803919 -22.91243292374403, -43.219206617928535 -22.912623312454507, -43.21927273953498 -22.91280810996473, -43.219356656071305 -22.91298553657365, -43.2194575593754 -22.91315388356604, -43.21957447769328 -22.913311529668327, -43.21970628503763 -22.913456956662372, -43.21985171203168 -22.913588764006725, -43.220009358133964 -22.913705682324604, -43.220177705126346 -22.913806585628695, -43.22035513173527 -22.91389050216502, -43.22053992924549 -22.913956623771462, -43.22073031795597 -22.914004313660804, -43.22092446431934 -22.914033112553344, -43.2211204986 -22.914042743099998, -43.221316532880664 -22.914033112553344, -43.221510679244034 -22.914004313660804, -43.22170106795451 -22.913956623771462, -43.221885865464735 -22.91389050216502, -43.222063292073656 -22.913806585628695, -43.22223163906604 -22.913705682324604, -43.222389285168326 -22.913588764006725, -43.22253471216237 -22.913456956662372, -43.222666519506724 -22.913311529668327, -43.2227834378246 -22.91315388356604, -43.2228843411287 -22.91298553657365, -43.22296825766502 -22.91280810996473, -43.22303437927147 -22.912623312454507, -43.22308206916081 -22.91243292374403, -43.22311086805335 -22.912238777380658, -43.223120498600004 -22.9120427431, -43.22311086805335 -22.91184670881934, -43.22308206916081 -22.911652562455966, -43.22303437927147 -22.91146217374549, -43.22296825766502 -22.91127737623527, -43.2228843411287 -22.911099949626347, -43.2227834378246 -22.91093160263396, -43.222666519506724 -22.91077395653167, -43.22253471216237 -22.910628529537625, -43.222389285168326 -22.910496722193272, -43.22223163906604 -22.910379803875394, -43.222063292073656 -22.910278900571303, -43.221885865464735 -22.910194984034977, -43.22170106795451 -22.910128862428536, -43.221510679244034 -22.910081172539194, -43.221316532880664 -22.910052373646653, -43.2211204986 -22.9100427431, -43.22092446431934 -22.910052373646653, -43.22073031795597 -22.910081172539194, -43.22053992924549 -22.910128862428536, -43.22035513173527 -22.910194984034977, -43.220177705126346 -22.910278900571303, -43.220009358133964 -22.910379803875394, -43.21985171203168 -22.910496722193272, -43.21970628503763 -22.910628529537625, -43.21957447769328 -22.91077395653167, -43.2194575593754 -22.91093160263396, -43.219356656071305 -22.911099949626347, -43.21927273953498 -22.91127737623527, -43.219206617928535 -22.91146217374549, -43.21915892803919 -22.911652562455966, -43.219130129146656 -22.91184670881934, -43.2191204986 -22.9120427431))" +001535,Maracanã,Grande Tijuca,88a8a06129fffff,TRUE,316,-22.91204274,-43.2211205,PO,G,Canal do Mangue,"POLYGON ((-43.2191204986 -22.9120427431, -43.219130129146656 -22.912238777380658, -43.21915892803919 -22.91243292374403, -43.219206617928535 -22.912623312454507, -43.21927273953498 -22.91280810996473, -43.219356656071305 -22.91298553657365, -43.2194575593754 -22.91315388356604, -43.21957447769328 -22.913311529668327, -43.21970628503763 -22.913456956662372, -43.21985171203168 -22.913588764006725, -43.220009358133964 -22.913705682324604, -43.220177705126346 -22.913806585628695, -43.22035513173527 -22.91389050216502, -43.22053992924549 -22.913956623771462, -43.22073031795597 -22.914004313660804, -43.22092446431934 -22.914033112553344, -43.2211204986 -22.914042743099998, -43.221316532880664 -22.914033112553344, -43.221510679244034 -22.914004313660804, -43.22170106795451 -22.913956623771462, -43.221885865464735 -22.91389050216502, -43.222063292073656 -22.913806585628695, -43.22223163906604 -22.913705682324604, -43.222389285168326 -22.913588764006725, -43.22253471216237 -22.913456956662372, -43.222666519506724 -22.913311529668327, -43.2227834378246 -22.91315388356604, -43.2228843411287 -22.91298553657365, -43.22296825766502 -22.91280810996473, -43.22303437927147 -22.912623312454507, -43.22308206916081 -22.91243292374403, -43.22311086805335 -22.912238777380658, -43.223120498600004 -22.9120427431, -43.22311086805335 -22.91184670881934, -43.22308206916081 -22.911652562455966, -43.22303437927147 -22.91146217374549, -43.22296825766502 -22.91127737623527, -43.2228843411287 -22.911099949626347, -43.2227834378246 -22.91093160263396, -43.222666519506724 -22.91077395653167, -43.22253471216237 -22.910628529537625, -43.222389285168326 -22.910496722193272, -43.22223163906604 -22.910379803875394, -43.222063292073656 -22.910278900571303, -43.221885865464735 -22.910194984034977, -43.22170106795451 -22.910128862428536, -43.221510679244034 -22.910081172539194, -43.221316532880664 -22.910052373646653, -43.2211204986 -22.9100427431, -43.22092446431934 -22.910052373646653, -43.22073031795597 -22.910081172539194, -43.22053992924549 -22.910128862428536, -43.22035513173527 -22.910194984034977, -43.220177705126346 -22.910278900571303, -43.220009358133964 -22.910379803875394, -43.21985171203168 -22.910496722193272, -43.21970628503763 -22.910628529537625, -43.21957447769328 -22.91077395653167, -43.2194575593754 -22.91093160263396, -43.219356656071305 -22.911099949626347, -43.21927273953498 -22.91127737623527, -43.219206617928535 -22.91146217374549, -43.21915892803919 -22.911652562455966, -43.219130129146656 -22.91184670881934, -43.2191204986 -22.9120427431))" +001538,Lagoa,Zona Sul,88a8a078cbfffff,TRUE,92,-22.97915686,-43.20207383,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.200073830099996 -22.9791568554, -43.20008346064665 -22.97935288968066, -43.20011225953919 -22.979547036044032, -43.20015994942853 -22.979737424754507, -43.200226071034976 -22.97992222226473, -43.2003099875713 -22.98009964887365, -43.200410890875396 -22.98026799586604, -43.200527809193275 -22.980425641968328, -43.20065961653763 -22.980571068962373, -43.20080504353167 -22.980702876306726, -43.20096268963396 -22.980819794624605, -43.20113103662634 -22.980920697928696, -43.201308463235264 -22.98100461446502, -43.20149326074549 -22.981070736071462, -43.201683649455966 -22.981118425960805, -43.201877795819335 -22.981147224853345, -43.2020738301 -22.9811568554, -43.20226986438066 -22.981147224853345, -43.20246401074403 -22.981118425960805, -43.20265439945451 -22.981070736071462, -43.20283919696473 -22.98100461446502, -43.20301662357365 -22.980920697928696, -43.203184970566035 -22.980819794624605, -43.20334261666832 -22.980702876306726, -43.20348804366237 -22.980571068962373, -43.20361985100672 -22.980425641968328, -43.2037367693246 -22.98026799586604, -43.203837672628694 -22.98009964887365, -43.20392158916502 -22.97992222226473, -43.203987710771464 -22.979737424754507, -43.20403540066081 -22.979547036044032, -43.20406419955334 -22.97935288968066, -43.2040738301 -22.9791568554, -43.20406419955334 -22.97896082111934, -43.20403540066081 -22.978766674755967, -43.203987710771464 -22.97857628604549, -43.20392158916502 -22.97839148853527, -43.203837672628694 -22.978214061926348, -43.2037367693246 -22.97804571493396, -43.20361985100672 -22.97788806883167, -43.20348804366237 -22.977742641837626, -43.20334261666832 -22.977610834493273, -43.203184970566035 -22.977493916175394, -43.20301662357365 -22.977393012871303, -43.20283919696473 -22.977309096334977, -43.20265439945451 -22.977242974728536, -43.20246401074403 -22.977195284839194, -43.20226986438066 -22.977166485946654, -43.2020738301 -22.9771568554, -43.201877795819335 -22.977166485946654, -43.201683649455966 -22.977195284839194, -43.20149326074549 -22.977242974728536, -43.201308463235264 -22.977309096334977, -43.20113103662634 -22.977393012871303, -43.20096268963396 -22.977493916175394, -43.20080504353167 -22.977610834493273, -43.20065961653763 -22.977742641837626, -43.200527809193275 -22.97788806883167, -43.200410890875396 -22.97804571493396, -43.2003099875713 -22.978214061926348, -43.200226071034976 -22.97839148853527, -43.20015994942853 -22.97857628604549, -43.20011225953919 -22.978766674755967, -43.20008346064665 -22.97896082111934, -43.200073830099996 -22.9791568554))" +001539,Lagoa,Zona Sul,88a8a078cbfffff,TRUE,92,-22.97915686,-43.20207383,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.200073830099996 -22.9791568554, -43.20008346064665 -22.97935288968066, -43.20011225953919 -22.979547036044032, -43.20015994942853 -22.979737424754507, -43.200226071034976 -22.97992222226473, -43.2003099875713 -22.98009964887365, -43.200410890875396 -22.98026799586604, -43.200527809193275 -22.980425641968328, -43.20065961653763 -22.980571068962373, -43.20080504353167 -22.980702876306726, -43.20096268963396 -22.980819794624605, -43.20113103662634 -22.980920697928696, -43.201308463235264 -22.98100461446502, -43.20149326074549 -22.981070736071462, -43.201683649455966 -22.981118425960805, -43.201877795819335 -22.981147224853345, -43.2020738301 -22.9811568554, -43.20226986438066 -22.981147224853345, -43.20246401074403 -22.981118425960805, -43.20265439945451 -22.981070736071462, -43.20283919696473 -22.98100461446502, -43.20301662357365 -22.980920697928696, -43.203184970566035 -22.980819794624605, -43.20334261666832 -22.980702876306726, -43.20348804366237 -22.980571068962373, -43.20361985100672 -22.980425641968328, -43.2037367693246 -22.98026799586604, -43.203837672628694 -22.98009964887365, -43.20392158916502 -22.97992222226473, -43.203987710771464 -22.979737424754507, -43.20403540066081 -22.979547036044032, -43.20406419955334 -22.97935288968066, -43.2040738301 -22.9791568554, -43.20406419955334 -22.97896082111934, -43.20403540066081 -22.978766674755967, -43.203987710771464 -22.97857628604549, -43.20392158916502 -22.97839148853527, -43.203837672628694 -22.978214061926348, -43.2037367693246 -22.97804571493396, -43.20361985100672 -22.97788806883167, -43.20348804366237 -22.977742641837626, -43.20334261666832 -22.977610834493273, -43.203184970566035 -22.977493916175394, -43.20301662357365 -22.977393012871303, -43.20283919696473 -22.977309096334977, -43.20265439945451 -22.977242974728536, -43.20246401074403 -22.977195284839194, -43.20226986438066 -22.977166485946654, -43.2020738301 -22.9771568554, -43.201877795819335 -22.977166485946654, -43.201683649455966 -22.977195284839194, -43.20149326074549 -22.977242974728536, -43.201308463235264 -22.977309096334977, -43.20113103662634 -22.977393012871303, -43.20096268963396 -22.977493916175394, -43.20080504353167 -22.977610834493273, -43.20065961653763 -22.977742641837626, -43.200527809193275 -22.97788806883167, -43.200410890875396 -22.97804571493396, -43.2003099875713 -22.978214061926348, -43.200226071034976 -22.97839148853527, -43.20015994942853 -22.97857628604549, -43.20011225953919 -22.978766674755967, -43.20008346064665 -22.97896082111934, -43.200073830099996 -22.9791568554))" +001540,Tijuca,Grande Tijuca,88a8a0610dfffff,,,,,,,, +001541,Tijuca,Grande Tijuca,88a8a0610dfffff,,,,,,,, +001542,Maracanã,Grande Tijuca,88a8a0610dfffff,,,,,,,, +001543,Tijuca,Grande Tijuca,88a8a0610dfffff,,,,,,,, +001544,Todos os Santos,Zona Norte,88a8a061c9fffff,,,,,,,, +001545,Todos os Santos,Zona Norte,88a8a061c9fffff,,,,,,,, +001546,Engenho Novo,Zona Norte,88a8a0611bfffff,TRUE,356,-22.902236,-43.263625,PO,G,,"POLYGON ((-43.261624999999995 -22.902236, -43.26163463054665 -22.902432034280658, -43.26166342943919 -22.90262618064403, -43.26171111932853 -22.902816569354506, -43.261777240934975 -22.90300136686473, -43.2618611574713 -22.90317879347365, -43.261962060775396 -22.90334714046604, -43.262078979093275 -22.903504786568327, -43.26221078643763 -22.903650213562372, -43.26235621343167 -22.903782020906725, -43.26251385953396 -22.903898939224604, -43.26268220652634 -22.903999842528695, -43.262859633135264 -22.90408375906502, -43.263044430645486 -22.90414988067146, -43.263234819355965 -22.904197570560804, -43.263428965719335 -22.904226369453344, -43.263625 -22.904235999999997, -43.26382103428066 -22.904226369453344, -43.26401518064403 -22.904197570560804, -43.26420556935451 -22.90414988067146, -43.26439036686473 -22.90408375906502, -43.26456779347365 -22.903999842528695, -43.264736140466034 -22.903898939224604, -43.26489378656832 -22.903782020906725, -43.26503921356237 -22.903650213562372, -43.26517102090672 -22.903504786568327, -43.2652879392246 -22.90334714046604, -43.265388842528694 -22.90317879347365, -43.26547275906502 -22.90300136686473, -43.265538880671464 -22.902816569354506, -43.26558657056081 -22.90262618064403, -43.26561536945334 -22.902432034280658, -43.265625 -22.902236, -43.26561536945334 -22.90203996571934, -43.26558657056081 -22.901845819355966, -43.265538880671464 -22.90165543064549, -43.26547275906502 -22.90147063313527, -43.265388842528694 -22.901293206526347, -43.2652879392246 -22.901124859533958, -43.26517102090672 -22.90096721343167, -43.26503921356237 -22.900821786437625, -43.26489378656832 -22.900689979093272, -43.264736140466034 -22.900573060775393, -43.26456779347365 -22.900472157471302, -43.26439036686473 -22.900388240934976, -43.26420556935451 -22.900322119328536, -43.26401518064403 -22.900274429439193, -43.26382103428066 -22.900245630546653, -43.263625 -22.900236, -43.263428965719335 -22.900245630546653, -43.263234819355965 -22.900274429439193, -43.263044430645486 -22.900322119328536, -43.262859633135264 -22.900388240934976, -43.26268220652634 -22.900472157471302, -43.26251385953396 -22.900573060775393, -43.26235621343167 -22.900689979093272, -43.26221078643763 -22.900821786437625, -43.262078979093275 -22.90096721343167, -43.261962060775396 -22.901124859533958, -43.2618611574713 -22.901293206526347, -43.261777240934975 -22.90147063313527, -43.26171111932853 -22.90165543064549, -43.26166342943919 -22.901845819355966, -43.26163463054665 -22.90203996571934, -43.261624999999995 -22.902236))" +001547,Engenho Novo,Zona Norte,88a8a0611bfffff,TRUE,356,-22.902236,-43.263625,PO,G,,"POLYGON ((-43.261624999999995 -22.902236, -43.26163463054665 -22.902432034280658, -43.26166342943919 -22.90262618064403, -43.26171111932853 -22.902816569354506, -43.261777240934975 -22.90300136686473, -43.2618611574713 -22.90317879347365, -43.261962060775396 -22.90334714046604, -43.262078979093275 -22.903504786568327, -43.26221078643763 -22.903650213562372, -43.26235621343167 -22.903782020906725, -43.26251385953396 -22.903898939224604, -43.26268220652634 -22.903999842528695, -43.262859633135264 -22.90408375906502, -43.263044430645486 -22.90414988067146, -43.263234819355965 -22.904197570560804, -43.263428965719335 -22.904226369453344, -43.263625 -22.904235999999997, -43.26382103428066 -22.904226369453344, -43.26401518064403 -22.904197570560804, -43.26420556935451 -22.90414988067146, -43.26439036686473 -22.90408375906502, -43.26456779347365 -22.903999842528695, -43.264736140466034 -22.903898939224604, -43.26489378656832 -22.903782020906725, -43.26503921356237 -22.903650213562372, -43.26517102090672 -22.903504786568327, -43.2652879392246 -22.90334714046604, -43.265388842528694 -22.90317879347365, -43.26547275906502 -22.90300136686473, -43.265538880671464 -22.902816569354506, -43.26558657056081 -22.90262618064403, -43.26561536945334 -22.902432034280658, -43.265625 -22.902236, -43.26561536945334 -22.90203996571934, -43.26558657056081 -22.901845819355966, -43.265538880671464 -22.90165543064549, -43.26547275906502 -22.90147063313527, -43.265388842528694 -22.901293206526347, -43.2652879392246 -22.901124859533958, -43.26517102090672 -22.90096721343167, -43.26503921356237 -22.900821786437625, -43.26489378656832 -22.900689979093272, -43.264736140466034 -22.900573060775393, -43.26456779347365 -22.900472157471302, -43.26439036686473 -22.900388240934976, -43.26420556935451 -22.900322119328536, -43.26401518064403 -22.900274429439193, -43.26382103428066 -22.900245630546653, -43.263625 -22.900236, -43.263428965719335 -22.900245630546653, -43.263234819355965 -22.900274429439193, -43.263044430645486 -22.900322119328536, -43.262859633135264 -22.900388240934976, -43.26268220652634 -22.900472157471302, -43.26251385953396 -22.900573060775393, -43.26235621343167 -22.900689979093272, -43.26221078643763 -22.900821786437625, -43.262078979093275 -22.90096721343167, -43.261962060775396 -22.901124859533958, -43.2618611574713 -22.901293206526347, -43.261777240934975 -22.90147063313527, -43.26171111932853 -22.90165543064549, -43.26166342943919 -22.901845819355966, -43.26163463054665 -22.90203996571934, -43.261624999999995 -22.902236))" +001548,Cachambi,Zona Norte,88a8a061c7fffff,,,,,,,, +001549,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +001550,São Conrado,Zona Sul,88a8a071a7fffff,,,,,,,, +001551,São Conrado,Zona Sul,88a8a0634dfffff,,,,,,,, +001552,Campo Grande,Zona Oeste,88a8a02959fffff,,,,,,,, +001553,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001554,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001555,Vila Militar,Grande Bangu,88a8a06731fffff,,,,,,,, +001556,Cidade Nova,Centro,88a8a06a53fffff,TRUE,273,-22.90986773,-43.20536305,PO,G,Canal do Mangue,"POLYGON ((-43.2033630511 -22.9098677325, -43.203372681646655 -22.91006376678066, -43.20340148053919 -22.910257913144033, -43.203449170428534 -22.910448301854508, -43.20351529203498 -22.91063309936473, -43.203599208571305 -22.910810525973652, -43.2037001118754 -22.91097887296604, -43.20381703019328 -22.91113651906833, -43.20394883753763 -22.911281946062374, -43.204094264531676 -22.911413753406727, -43.204251910633964 -22.911530671724606, -43.204420257626346 -22.911631575028697, -43.20459768423527 -22.911715491565023, -43.20478248174549 -22.911781613171463, -43.20497287045597 -22.911829303060806, -43.20516701681934 -22.911858101953346, -43.2053630511 -22.9118677325, -43.20555908538066 -22.911858101953346, -43.20575323174403 -22.911829303060806, -43.20594362045451 -22.911781613171463, -43.206128417964734 -22.911715491565023, -43.206305844573656 -22.911631575028697, -43.20647419156604 -22.911530671724606, -43.206631837668326 -22.911413753406727, -43.20677726466237 -22.911281946062374, -43.206909072006724 -22.91113651906833, -43.2070259903246 -22.91097887296604, -43.2071268936287 -22.910810525973652, -43.20721081016502 -22.91063309936473, -43.20727693177147 -22.910448301854508, -43.20732462166081 -22.910257913144033, -43.207353420553346 -22.91006376678066, -43.2073630511 -22.9098677325, -43.207353420553346 -22.90967169821934, -43.20732462166081 -22.909477551855968, -43.20727693177147 -22.909287163145493, -43.20721081016502 -22.90910236563527, -43.2071268936287 -22.90892493902635, -43.2070259903246 -22.90875659203396, -43.206909072006724 -22.908598945931672, -43.20677726466237 -22.908453518937627, -43.206631837668326 -22.908321711593274, -43.20647419156604 -22.908204793275395, -43.206305844573656 -22.908103889971304, -43.206128417964734 -22.90801997343498, -43.20594362045451 -22.907953851828537, -43.20575323174403 -22.907906161939195, -43.20555908538066 -22.907877363046655, -43.2053630511 -22.9078677325, -43.20516701681934 -22.907877363046655, -43.20497287045597 -22.907906161939195, -43.20478248174549 -22.907953851828537, -43.20459768423527 -22.90801997343498, -43.204420257626346 -22.908103889971304, -43.204251910633964 -22.908204793275395, -43.204094264531676 -22.908321711593274, -43.20394883753763 -22.908453518937627, -43.20381703019328 -22.908598945931672, -43.2037001118754 -22.90875659203396, -43.203599208571305 -22.90892493902635, -43.20351529203498 -22.90910236563527, -43.203449170428534 -22.909287163145493, -43.20340148053919 -22.909477551855968, -43.203372681646655 -22.90967169821934, -43.2033630511 -22.9098677325))" +001557,Cidade Nova,Centro,88a8a06a53fffff,TRUE,273,-22.90986773,-43.20536305,PO,G,Canal do Mangue,"POLYGON ((-43.2033630511 -22.9098677325, -43.203372681646655 -22.91006376678066, -43.20340148053919 -22.910257913144033, -43.203449170428534 -22.910448301854508, -43.20351529203498 -22.91063309936473, -43.203599208571305 -22.910810525973652, -43.2037001118754 -22.91097887296604, -43.20381703019328 -22.91113651906833, -43.20394883753763 -22.911281946062374, -43.204094264531676 -22.911413753406727, -43.204251910633964 -22.911530671724606, -43.204420257626346 -22.911631575028697, -43.20459768423527 -22.911715491565023, -43.20478248174549 -22.911781613171463, -43.20497287045597 -22.911829303060806, -43.20516701681934 -22.911858101953346, -43.2053630511 -22.9118677325, -43.20555908538066 -22.911858101953346, -43.20575323174403 -22.911829303060806, -43.20594362045451 -22.911781613171463, -43.206128417964734 -22.911715491565023, -43.206305844573656 -22.911631575028697, -43.20647419156604 -22.911530671724606, -43.206631837668326 -22.911413753406727, -43.20677726466237 -22.911281946062374, -43.206909072006724 -22.91113651906833, -43.2070259903246 -22.91097887296604, -43.2071268936287 -22.910810525973652, -43.20721081016502 -22.91063309936473, -43.20727693177147 -22.910448301854508, -43.20732462166081 -22.910257913144033, -43.207353420553346 -22.91006376678066, -43.2073630511 -22.9098677325, -43.207353420553346 -22.90967169821934, -43.20732462166081 -22.909477551855968, -43.20727693177147 -22.909287163145493, -43.20721081016502 -22.90910236563527, -43.2071268936287 -22.90892493902635, -43.2070259903246 -22.90875659203396, -43.206909072006724 -22.908598945931672, -43.20677726466237 -22.908453518937627, -43.206631837668326 -22.908321711593274, -43.20647419156604 -22.908204793275395, -43.206305844573656 -22.908103889971304, -43.206128417964734 -22.90801997343498, -43.20594362045451 -22.907953851828537, -43.20575323174403 -22.907906161939195, -43.20555908538066 -22.907877363046655, -43.2053630511 -22.9078677325, -43.20516701681934 -22.907877363046655, -43.20497287045597 -22.907906161939195, -43.20478248174549 -22.907953851828537, -43.20459768423527 -22.90801997343498, -43.204420257626346 -22.908103889971304, -43.204251910633964 -22.908204793275395, -43.204094264531676 -22.908321711593274, -43.20394883753763 -22.908453518937627, -43.20381703019328 -22.908598945931672, -43.2037001118754 -22.90875659203396, -43.203599208571305 -22.90892493902635, -43.20351529203498 -22.90910236563527, -43.203449170428534 -22.909287163145493, -43.20340148053919 -22.909477551855968, -43.203372681646655 -22.90967169821934, -43.2033630511 -22.9098677325))" +001558,Penha Circular,Zona Norte,88a8a06f5dfffff,,,,,,,, +001559,Centro,Centro,88a8a06a0bfffff,,,,,,,, +001560,São Cristóvão,Centro,88a8a06135fffff,TRUE,315,-22.88636999,-43.22588612,PO,G,Canal do Cunha,"POLYGON ((-43.223886117199996 -22.886369987, -43.22389574774665 -22.886566021280657, -43.22392454663919 -22.88676016764403, -43.22397223652853 -22.886950556354506, -43.224038358134976 -22.88713535386473, -43.2241222746713 -22.88731278047365, -43.2242231779754 -22.88748112746604, -43.224340096293275 -22.887638773568327, -43.22447190363763 -22.887784200562372, -43.22461733063167 -22.887916007906725, -43.22477497673396 -22.888032926224604, -43.22494332372634 -22.888133829528694, -43.225120750335265 -22.88821774606502, -43.22530554784549 -22.88828386767146, -43.225495936555966 -22.888331557560804, -43.225690082919336 -22.888360356453344, -43.2258861172 -22.888369986999997, -43.22608215148066 -22.888360356453344, -43.22627629784403 -22.888331557560804, -43.22646668655451 -22.88828386767146, -43.22665148406473 -22.88821774606502, -43.22682891067365 -22.888133829528694, -43.226997257666035 -22.888032926224604, -43.22715490376832 -22.887916007906725, -43.22730033076237 -22.887784200562372, -43.22743213810672 -22.887638773568327, -43.2275490564246 -22.88748112746604, -43.227649959728694 -22.88731278047365, -43.22773387626502 -22.88713535386473, -43.227799997871465 -22.886950556354506, -43.22784768776081 -22.88676016764403, -43.227876486653344 -22.886566021280657, -43.2278861172 -22.886369987, -43.227876486653344 -22.88617395271934, -43.22784768776081 -22.885979806355966, -43.227799997871465 -22.88578941764549, -43.22773387626502 -22.88560462013527, -43.227649959728694 -22.885427193526347, -43.2275490564246 -22.885258846533958, -43.22743213810672 -22.88510120043167, -43.22730033076237 -22.884955773437625, -43.22715490376832 -22.884823966093272, -43.226997257666035 -22.884707047775393, -43.22682891067365 -22.884606144471302, -43.22665148406473 -22.884522227934976, -43.22646668655451 -22.884456106328535, -43.22627629784403 -22.884408416439193, -43.22608215148066 -22.884379617546653, -43.2258861172 -22.884369987, -43.225690082919336 -22.884379617546653, -43.225495936555966 -22.884408416439193, -43.22530554784549 -22.884456106328535, -43.225120750335265 -22.884522227934976, -43.22494332372634 -22.884606144471302, -43.22477497673396 -22.884707047775393, -43.22461733063167 -22.884823966093272, -43.22447190363763 -22.884955773437625, -43.224340096293275 -22.88510120043167, -43.2242231779754 -22.885258846533958, -43.2241222746713 -22.885427193526347, -43.224038358134976 -22.88560462013527, -43.22397223652853 -22.88578941764549, -43.22392454663919 -22.885979806355966, -43.22389574774665 -22.88617395271934, -43.223886117199996 -22.886369987))" +001561,Méier,Zona Norte,88a8a061cdfffff,TRUE,425,-22.89850335,-43.27755419,PO,G,,"POLYGON ((-43.2755541852019 -22.8985033473414, -43.275563815748555 -22.89869938162206, -43.27559261464109 -22.898893527985432, -43.275640304530434 -22.899083916695908, -43.27570642613688 -22.89926871420613, -43.275790342673204 -22.89944614081505, -43.2758912459773 -22.89961448780744, -43.27600816429518 -22.899772133909728, -43.27613997163953 -22.899917560903774, -43.276285398633576 -22.900049368248126, -43.27644304473586 -22.900166286566005, -43.276611391728245 -22.900267189870096, -43.27678881833717 -22.900351106406422, -43.27697361584739 -22.900417228012863, -43.27716400455787 -22.900464917902205, -43.27735815092124 -22.900493716794745, -43.2775541852019 -22.9005033473414, -43.27775021948256 -22.900493716794745, -43.27794436584593 -22.900464917902205, -43.27813475455641 -22.900417228012863, -43.278319552066634 -22.900351106406422, -43.278496978675555 -22.900267189870096, -43.27866532566794 -22.900166286566005, -43.278822971770225 -22.900049368248126, -43.27896839876427 -22.899917560903774, -43.27910020610862 -22.899772133909728, -43.2792171244265 -22.89961448780744, -43.279318027730596 -22.89944614081505, -43.27940194426692 -22.89926871420613, -43.27946806587337 -22.899083916695908, -43.27951575576271 -22.898893527985432, -43.279544554655246 -22.89869938162206, -43.2795541852019 -22.8985033473414, -43.279544554655246 -22.89830731306074, -43.27951575576271 -22.898113166697367, -43.27946806587337 -22.897922777986892, -43.27940194426692 -22.89773798047667, -43.279318027730596 -22.89756055386775, -43.2792171244265 -22.89739220687536, -43.27910020610862 -22.89723456077307, -43.27896839876427 -22.897089133779026, -43.278822971770225 -22.896957326434674, -43.27866532566794 -22.896840408116795, -43.278496978675555 -22.896739504812704, -43.278319552066634 -22.896655588276378, -43.27813475455641 -22.896589466669937, -43.27794436584593 -22.896541776780595, -43.27775021948256 -22.896512977888055, -43.2775541852019 -22.8965033473414, -43.27735815092124 -22.896512977888055, -43.27716400455787 -22.896541776780595, -43.27697361584739 -22.896589466669937, -43.27678881833717 -22.896655588276378, -43.276611391728245 -22.896739504812704, -43.27644304473586 -22.896840408116795, -43.276285398633576 -22.896957326434674, -43.27613997163953 -22.897089133779026, -43.27600816429518 -22.89723456077307, -43.2758912459773 -22.89739220687536, -43.275790342673204 -22.89756055386775, -43.27570642613688 -22.89773798047667, -43.275640304530434 -22.897922777986892, -43.27559261464109 -22.898113166697367, -43.275563815748555 -22.89830731306074, -43.2755541852019 -22.8985033473414))" +001563,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,,,,,,,, +001564,Botafogo,Zona Sul,88a8a078abfffff,TRUE,2,-22.94936755,-43.18484537,PC,G,Praia de Botafogo,"POLYGON ((-43.182845371199996 -22.9493675527, -43.18285500174665 -22.94956358698066, -43.18288380063919 -22.949757733344033, -43.18293149052853 -22.949948122054508, -43.182997612134976 -22.95013291956473, -43.1830815286713 -22.95031034617365, -43.183182431975396 -22.95047869316604, -43.183299350293275 -22.95063633926833, -43.18343115763763 -22.950781766262374, -43.18357658463167 -22.950913573606726, -43.18373423073396 -22.951030491924605, -43.18390257772634 -22.951131395228696, -43.184080004335264 -22.951215311765022, -43.18426480184549 -22.951281433371463, -43.184455190555965 -22.951329123260805, -43.184649336919335 -22.951357922153345, -43.1848453712 -22.9513675527, -43.18504140548066 -22.951357922153345, -43.18523555184403 -22.951329123260805, -43.18542594055451 -22.951281433371463, -43.18561073806473 -22.951215311765022, -43.18578816467365 -22.951131395228696, -43.185956511666035 -22.951030491924605, -43.18611415776832 -22.950913573606726, -43.18625958476237 -22.950781766262374, -43.18639139210672 -22.95063633926833, -43.1865083104246 -22.95047869316604, -43.186609213728694 -22.95031034617365, -43.18669313026502 -22.95013291956473, -43.186759251871464 -22.949948122054508, -43.18680694176081 -22.949757733344033, -43.18683574065334 -22.94956358698066, -43.1868453712 -22.9493675527, -43.18683574065334 -22.94917151841934, -43.18680694176081 -22.948977372055968, -43.186759251871464 -22.948786983345492, -43.18669313026502 -22.94860218583527, -43.186609213728694 -22.94842475922635, -43.1865083104246 -22.94825641223396, -43.18639139210672 -22.94809876613167, -43.18625958476237 -22.947953339137626, -43.18611415776832 -22.947821531793274, -43.185956511666035 -22.947704613475395, -43.18578816467365 -22.947603710171304, -43.18561073806473 -22.947519793634978, -43.18542594055451 -22.947453672028537, -43.18523555184403 -22.947405982139195, -43.18504140548066 -22.947377183246655, -43.1848453712 -22.9473675527, -43.184649336919335 -22.947377183246655, -43.184455190555965 -22.947405982139195, -43.18426480184549 -22.947453672028537, -43.184080004335264 -22.947519793634978, -43.18390257772634 -22.947603710171304, -43.18373423073396 -22.947704613475395, -43.18357658463167 -22.947821531793274, -43.18343115763763 -22.947953339137626, -43.183299350293275 -22.94809876613167, -43.183182431975396 -22.94825641223396, -43.1830815286713 -22.94842475922635, -43.182997612134976 -22.94860218583527, -43.18293149052853 -22.948786983345492, -43.18288380063919 -22.948977372055968, -43.18285500174665 -22.94917151841934, -43.182845371199996 -22.9493675527))" +001565,Copacabana,Zona Sul,88a8a078c7fffff,,,,,,,, +001566,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +001567,Bangu,Grande Bangu,88a8a06635fffff,,,,,,,, +001568,Ipanema,Zona Sul,88a8a07ab7fffff,,,,,,,, +001570,Marechal Hermes,Zona Norte,88a8a06093fffff,TRUE,144,-22.86160826,-43.371422,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3694219959 -22.8616082602, -43.369431626446655 -22.86180429448066, -43.36946042533919 -22.861998440844033, -43.369508115228534 -22.86218882955451, -43.36957423683498 -22.86237362706473, -43.369658153371304 -22.862551053673652, -43.3697590566754 -22.86271940066604, -43.36987597499328 -22.86287704676833, -43.37000778233763 -22.863022473762374, -43.370153209331676 -22.863154281106727, -43.370310855433964 -22.863271199424606, -43.370479202426345 -22.863372102728697, -43.37065662903527 -22.863456019265023, -43.37084142654549 -22.863522140871464, -43.37103181525597 -22.863569830760806, -43.37122596161934 -22.863598629653346, -43.3714219959 -22.8636082602, -43.37161803018066 -22.863598629653346, -43.37181217654403 -22.863569830760806, -43.37200256525451 -22.863522140871464, -43.372187362764734 -22.863456019265023, -43.372364789373655 -22.863372102728697, -43.37253313636604 -22.863271199424606, -43.372690782468325 -22.863154281106727, -43.37283620946237 -22.863022473762374, -43.37296801680672 -22.86287704676833, -43.3730849351246 -22.86271940066604, -43.3731858384287 -22.862551053673652, -43.37326975496502 -22.86237362706473, -43.37333587657147 -22.86218882955451, -43.37338356646081 -22.861998440844033, -43.373412365353346 -22.86180429448066, -43.3734219959 -22.8616082602, -43.373412365353346 -22.86141222591934, -43.37338356646081 -22.861218079555968, -43.37333587657147 -22.861027690845493, -43.37326975496502 -22.86084289333527, -43.3731858384287 -22.86066546672635, -43.3730849351246 -22.86049711973396, -43.37296801680672 -22.860339473631672, -43.37283620946237 -22.860194046637627, -43.372690782468325 -22.860062239293274, -43.37253313636604 -22.859945320975395, -43.372364789373655 -22.859844417671304, -43.372187362764734 -22.85976050113498, -43.37200256525451 -22.859694379528538, -43.37181217654403 -22.859646689639195, -43.37161803018066 -22.859617890746655, -43.3714219959 -22.8596082602, -43.37122596161934 -22.859617890746655, -43.37103181525597 -22.859646689639195, -43.37084142654549 -22.859694379528538, -43.37065662903527 -22.85976050113498, -43.370479202426345 -22.859844417671304, -43.370310855433964 -22.859945320975395, -43.370153209331676 -22.860062239293274, -43.37000778233763 -22.860194046637627, -43.36987597499328 -22.860339473631672, -43.3697590566754 -22.86049711973396, -43.369658153371304 -22.86066546672635, -43.36957423683498 -22.86084289333527, -43.369508115228534 -22.861027690845493, -43.36946042533919 -22.861218079555968, -43.369431626446655 -22.86141222591934, -43.3694219959 -22.8616082602))" +001571,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,TRUE,302,-22.9968841,-43.36554928,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3635492839 -22.9968840955, -43.363558914446656 -22.99708012978066, -43.36358771333919 -22.997274276144033, -43.363635403228535 -22.99746466485451, -43.36370152483498 -22.99764946236473, -43.363785441371306 -22.997826888973652, -43.3638863446754 -22.99799523596604, -43.36400326299328 -22.99815288206833, -43.36413507033763 -22.998298309062374, -43.36428049733168 -22.998430116406727, -43.364438143433965 -22.998547034724606, -43.36460649042635 -22.998647938028697, -43.36478391703527 -22.998731854565023, -43.36496871454549 -22.998797976171463, -43.36515910325597 -22.998845666060806, -43.36535324961934 -22.998874464953346, -43.3655492839 -22.9988840955, -43.365745318180664 -22.998874464953346, -43.365939464544034 -22.998845666060806, -43.36612985325451 -22.998797976171463, -43.366314650764735 -22.998731854565023, -43.36649207737366 -22.998647938028697, -43.36666042436604 -22.998547034724606, -43.36681807046833 -22.998430116406727, -43.36696349746237 -22.998298309062374, -43.367095304806725 -22.99815288206833, -43.367212223124604 -22.99799523596604, -43.3673131264287 -22.997826888973652, -43.367397042965024 -22.99764946236473, -43.36746316457147 -22.99746466485451, -43.36751085446081 -22.997274276144033, -43.36753965335335 -22.99708012978066, -43.367549283900004 -22.9968840955, -43.36753965335335 -22.99668806121934, -43.36751085446081 -22.996493914855968, -43.36746316457147 -22.996303526145493, -43.367397042965024 -22.99611872863527, -43.3673131264287 -22.99594130202635, -43.367212223124604 -22.99577295503396, -43.367095304806725 -22.995615308931672, -43.36696349746237 -22.995469881937627, -43.36681807046833 -22.995338074593274, -43.36666042436604 -22.995221156275395, -43.36649207737366 -22.995120252971304, -43.366314650764735 -22.99503633643498, -43.36612985325451 -22.994970214828538, -43.365939464544034 -22.994922524939195, -43.365745318180664 -22.994893726046655, -43.3655492839 -22.9948840955, -43.36535324961934 -22.994893726046655, -43.36515910325597 -22.994922524939195, -43.36496871454549 -22.994970214828538, -43.36478391703527 -22.99503633643498, -43.36460649042635 -22.995120252971304, -43.364438143433965 -22.995221156275395, -43.36428049733168 -22.995338074593274, -43.36413507033763 -22.995469881937627, -43.36400326299328 -22.995615308931672, -43.3638863446754 -22.99577295503396, -43.363785441371306 -22.99594130202635, -43.36370152483498 -22.99611872863527, -43.363635403228535 -22.996303526145493, -43.36358771333919 -22.996493914855968, -43.363558914446656 -22.99668806121934, -43.3635492839 -22.9968840955))" +001572,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,TRUE,302,-22.9968841,-43.36554928,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3635492839 -22.9968840955, -43.363558914446656 -22.99708012978066, -43.36358771333919 -22.997274276144033, -43.363635403228535 -22.99746466485451, -43.36370152483498 -22.99764946236473, -43.363785441371306 -22.997826888973652, -43.3638863446754 -22.99799523596604, -43.36400326299328 -22.99815288206833, -43.36413507033763 -22.998298309062374, -43.36428049733168 -22.998430116406727, -43.364438143433965 -22.998547034724606, -43.36460649042635 -22.998647938028697, -43.36478391703527 -22.998731854565023, -43.36496871454549 -22.998797976171463, -43.36515910325597 -22.998845666060806, -43.36535324961934 -22.998874464953346, -43.3655492839 -22.9988840955, -43.365745318180664 -22.998874464953346, -43.365939464544034 -22.998845666060806, -43.36612985325451 -22.998797976171463, -43.366314650764735 -22.998731854565023, -43.36649207737366 -22.998647938028697, -43.36666042436604 -22.998547034724606, -43.36681807046833 -22.998430116406727, -43.36696349746237 -22.998298309062374, -43.367095304806725 -22.99815288206833, -43.367212223124604 -22.99799523596604, -43.3673131264287 -22.997826888973652, -43.367397042965024 -22.99764946236473, -43.36746316457147 -22.99746466485451, -43.36751085446081 -22.997274276144033, -43.36753965335335 -22.99708012978066, -43.367549283900004 -22.9968840955, -43.36753965335335 -22.99668806121934, -43.36751085446081 -22.996493914855968, -43.36746316457147 -22.996303526145493, -43.367397042965024 -22.99611872863527, -43.3673131264287 -22.99594130202635, -43.367212223124604 -22.99577295503396, -43.367095304806725 -22.995615308931672, -43.36696349746237 -22.995469881937627, -43.36681807046833 -22.995338074593274, -43.36666042436604 -22.995221156275395, -43.36649207737366 -22.995120252971304, -43.366314650764735 -22.99503633643498, -43.36612985325451 -22.994970214828538, -43.365939464544034 -22.994922524939195, -43.365745318180664 -22.994893726046655, -43.3655492839 -22.9948840955, -43.36535324961934 -22.994893726046655, -43.36515910325597 -22.994922524939195, -43.36496871454549 -22.994970214828538, -43.36478391703527 -22.99503633643498, -43.36460649042635 -22.995120252971304, -43.364438143433965 -22.995221156275395, -43.36428049733168 -22.995338074593274, -43.36413507033763 -22.995469881937627, -43.36400326299328 -22.995615308931672, -43.3638863446754 -22.99577295503396, -43.363785441371306 -22.99594130202635, -43.36370152483498 -22.99611872863527, -43.363635403228535 -22.996303526145493, -43.36358771333919 -22.996493914855968, -43.363558914446656 -22.99668806121934, -43.3635492839 -22.9968840955))" +001573,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,TRUE,302,-22.9968841,-43.36554928,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3635492839 -22.9968840955, -43.363558914446656 -22.99708012978066, -43.36358771333919 -22.997274276144033, -43.363635403228535 -22.99746466485451, -43.36370152483498 -22.99764946236473, -43.363785441371306 -22.997826888973652, -43.3638863446754 -22.99799523596604, -43.36400326299328 -22.99815288206833, -43.36413507033763 -22.998298309062374, -43.36428049733168 -22.998430116406727, -43.364438143433965 -22.998547034724606, -43.36460649042635 -22.998647938028697, -43.36478391703527 -22.998731854565023, -43.36496871454549 -22.998797976171463, -43.36515910325597 -22.998845666060806, -43.36535324961934 -22.998874464953346, -43.3655492839 -22.9988840955, -43.365745318180664 -22.998874464953346, -43.365939464544034 -22.998845666060806, -43.36612985325451 -22.998797976171463, -43.366314650764735 -22.998731854565023, -43.36649207737366 -22.998647938028697, -43.36666042436604 -22.998547034724606, -43.36681807046833 -22.998430116406727, -43.36696349746237 -22.998298309062374, -43.367095304806725 -22.99815288206833, -43.367212223124604 -22.99799523596604, -43.3673131264287 -22.997826888973652, -43.367397042965024 -22.99764946236473, -43.36746316457147 -22.99746466485451, -43.36751085446081 -22.997274276144033, -43.36753965335335 -22.99708012978066, -43.367549283900004 -22.9968840955, -43.36753965335335 -22.99668806121934, -43.36751085446081 -22.996493914855968, -43.36746316457147 -22.996303526145493, -43.367397042965024 -22.99611872863527, -43.3673131264287 -22.99594130202635, -43.367212223124604 -22.99577295503396, -43.367095304806725 -22.995615308931672, -43.36696349746237 -22.995469881937627, -43.36681807046833 -22.995338074593274, -43.36666042436604 -22.995221156275395, -43.36649207737366 -22.995120252971304, -43.366314650764735 -22.99503633643498, -43.36612985325451 -22.994970214828538, -43.365939464544034 -22.994922524939195, -43.365745318180664 -22.994893726046655, -43.3655492839 -22.9948840955, -43.36535324961934 -22.994893726046655, -43.36515910325597 -22.994922524939195, -43.36496871454549 -22.994970214828538, -43.36478391703527 -22.99503633643498, -43.36460649042635 -22.995120252971304, -43.364438143433965 -22.995221156275395, -43.36428049733168 -22.995338074593274, -43.36413507033763 -22.995469881937627, -43.36400326299328 -22.995615308931672, -43.3638863446754 -22.99577295503396, -43.363785441371306 -22.99594130202635, -43.36370152483498 -22.99611872863527, -43.363635403228535 -22.996303526145493, -43.36358771333919 -22.996493914855968, -43.363558914446656 -22.99668806121934, -43.3635492839 -22.9968840955))" +001574,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,TRUE,302,-22.9968841,-43.36554928,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3635492839 -22.9968840955, -43.363558914446656 -22.99708012978066, -43.36358771333919 -22.997274276144033, -43.363635403228535 -22.99746466485451, -43.36370152483498 -22.99764946236473, -43.363785441371306 -22.997826888973652, -43.3638863446754 -22.99799523596604, -43.36400326299328 -22.99815288206833, -43.36413507033763 -22.998298309062374, -43.36428049733168 -22.998430116406727, -43.364438143433965 -22.998547034724606, -43.36460649042635 -22.998647938028697, -43.36478391703527 -22.998731854565023, -43.36496871454549 -22.998797976171463, -43.36515910325597 -22.998845666060806, -43.36535324961934 -22.998874464953346, -43.3655492839 -22.9988840955, -43.365745318180664 -22.998874464953346, -43.365939464544034 -22.998845666060806, -43.36612985325451 -22.998797976171463, -43.366314650764735 -22.998731854565023, -43.36649207737366 -22.998647938028697, -43.36666042436604 -22.998547034724606, -43.36681807046833 -22.998430116406727, -43.36696349746237 -22.998298309062374, -43.367095304806725 -22.99815288206833, -43.367212223124604 -22.99799523596604, -43.3673131264287 -22.997826888973652, -43.367397042965024 -22.99764946236473, -43.36746316457147 -22.99746466485451, -43.36751085446081 -22.997274276144033, -43.36753965335335 -22.99708012978066, -43.367549283900004 -22.9968840955, -43.36753965335335 -22.99668806121934, -43.36751085446081 -22.996493914855968, -43.36746316457147 -22.996303526145493, -43.367397042965024 -22.99611872863527, -43.3673131264287 -22.99594130202635, -43.367212223124604 -22.99577295503396, -43.367095304806725 -22.995615308931672, -43.36696349746237 -22.995469881937627, -43.36681807046833 -22.995338074593274, -43.36666042436604 -22.995221156275395, -43.36649207737366 -22.995120252971304, -43.366314650764735 -22.99503633643498, -43.36612985325451 -22.994970214828538, -43.365939464544034 -22.994922524939195, -43.365745318180664 -22.994893726046655, -43.3655492839 -22.9948840955, -43.36535324961934 -22.994893726046655, -43.36515910325597 -22.994922524939195, -43.36496871454549 -22.994970214828538, -43.36478391703527 -22.99503633643498, -43.36460649042635 -22.995120252971304, -43.364438143433965 -22.995221156275395, -43.36428049733168 -22.995338074593274, -43.36413507033763 -22.995469881937627, -43.36400326299328 -22.995615308931672, -43.3638863446754 -22.99577295503396, -43.363785441371306 -22.99594130202635, -43.36370152483498 -22.99611872863527, -43.363635403228535 -22.996303526145493, -43.36358771333919 -22.996493914855968, -43.363558914446656 -22.99668806121934, -43.3635492839 -22.9968840955))" +001575,São Cristóvão,Centro,88a8a0612dfffff,TRUE,312,-22.90442445,-43.20968247,PO,G,Canal do Mangue,"POLYGON ((-43.207682469299996 -22.9044244498, -43.20769209984665 -22.90462048408066, -43.20772089873919 -22.904814630444033, -43.20776858862853 -22.90500501915451, -43.20783471023498 -22.90518981666473, -43.2079186267713 -22.905367243273652, -43.2080195300754 -22.90553559026604, -43.208136448393276 -22.90569323636833, -43.20826825573763 -22.905838663362374, -43.208413682731674 -22.905970470706727, -43.20857132883396 -22.906087389024606, -43.208739675826344 -22.906188292328697, -43.208917102435265 -22.906272208865023, -43.20910189994549 -22.906338330471463, -43.209292288655966 -22.906386020360806, -43.209486435019336 -22.906414819253346, -43.2096824693 -22.9064244498, -43.20987850358066 -22.906414819253346, -43.21007264994403 -22.906386020360806, -43.21026303865451 -22.906338330471463, -43.21044783616473 -22.906272208865023, -43.210625262773654 -22.906188292328697, -43.210793609766036 -22.906087389024606, -43.21095125586832 -22.905970470706727, -43.21109668286237 -22.905838663362374, -43.21122849020672 -22.90569323636833, -43.2113454085246 -22.90553559026604, -43.211446311828695 -22.905367243273652, -43.21153022836502 -22.90518981666473, -43.211596349971465 -22.90500501915451, -43.21164403986081 -22.904814630444033, -43.211672838753344 -22.90462048408066, -43.2116824693 -22.9044244498, -43.211672838753344 -22.90422841551934, -43.21164403986081 -22.904034269155968, -43.211596349971465 -22.903843880445493, -43.21153022836502 -22.90365908293527, -43.211446311828695 -22.90348165632635, -43.2113454085246 -22.90331330933396, -43.21122849020672 -22.903155663231672, -43.21109668286237 -22.903010236237627, -43.21095125586832 -22.902878428893274, -43.210793609766036 -22.902761510575395, -43.210625262773654 -22.902660607271304, -43.21044783616473 -22.90257669073498, -43.21026303865451 -22.902510569128538, -43.21007264994403 -22.902462879239195, -43.20987850358066 -22.902434080346655, -43.2096824693 -22.9024244498, -43.209486435019336 -22.902434080346655, -43.209292288655966 -22.902462879239195, -43.20910189994549 -22.902510569128538, -43.208917102435265 -22.90257669073498, -43.208739675826344 -22.902660607271304, -43.20857132883396 -22.902761510575395, -43.208413682731674 -22.902878428893274, -43.20826825573763 -22.903010236237627, -43.208136448393276 -22.903155663231672, -43.2080195300754 -22.90331330933396, -43.2079186267713 -22.90348165632635, -43.20783471023498 -22.90365908293527, -43.20776858862853 -22.903843880445493, -43.20772089873919 -22.904034269155968, -43.20769209984665 -22.90422841551934, -43.207682469299996 -22.9044244498))" +001577,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +001578,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +001579,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +001580,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +001581,Centro,Centro,88a8a06a57fffff,,,,,,,, +001582,Centro,Centro,88a8a06a57fffff,,,,,,,, +001583,Centro,Centro,88a8a06a01fffff,,,,,,,, +001584,Centro,Centro,88a8a06a01fffff,,,,,,,, +001585,Cidade Nova,Centro,88a8a06a53fffff,TRUE,273,-22.90986773,-43.20536305,PO,G,Canal do Mangue,"POLYGON ((-43.2033630511 -22.9098677325, -43.203372681646655 -22.91006376678066, -43.20340148053919 -22.910257913144033, -43.203449170428534 -22.910448301854508, -43.20351529203498 -22.91063309936473, -43.203599208571305 -22.910810525973652, -43.2037001118754 -22.91097887296604, -43.20381703019328 -22.91113651906833, -43.20394883753763 -22.911281946062374, -43.204094264531676 -22.911413753406727, -43.204251910633964 -22.911530671724606, -43.204420257626346 -22.911631575028697, -43.20459768423527 -22.911715491565023, -43.20478248174549 -22.911781613171463, -43.20497287045597 -22.911829303060806, -43.20516701681934 -22.911858101953346, -43.2053630511 -22.9118677325, -43.20555908538066 -22.911858101953346, -43.20575323174403 -22.911829303060806, -43.20594362045451 -22.911781613171463, -43.206128417964734 -22.911715491565023, -43.206305844573656 -22.911631575028697, -43.20647419156604 -22.911530671724606, -43.206631837668326 -22.911413753406727, -43.20677726466237 -22.911281946062374, -43.206909072006724 -22.91113651906833, -43.2070259903246 -22.91097887296604, -43.2071268936287 -22.910810525973652, -43.20721081016502 -22.91063309936473, -43.20727693177147 -22.910448301854508, -43.20732462166081 -22.910257913144033, -43.207353420553346 -22.91006376678066, -43.2073630511 -22.9098677325, -43.207353420553346 -22.90967169821934, -43.20732462166081 -22.909477551855968, -43.20727693177147 -22.909287163145493, -43.20721081016502 -22.90910236563527, -43.2071268936287 -22.90892493902635, -43.2070259903246 -22.90875659203396, -43.206909072006724 -22.908598945931672, -43.20677726466237 -22.908453518937627, -43.206631837668326 -22.908321711593274, -43.20647419156604 -22.908204793275395, -43.206305844573656 -22.908103889971304, -43.206128417964734 -22.90801997343498, -43.20594362045451 -22.907953851828537, -43.20575323174403 -22.907906161939195, -43.20555908538066 -22.907877363046655, -43.2053630511 -22.9078677325, -43.20516701681934 -22.907877363046655, -43.20497287045597 -22.907906161939195, -43.20478248174549 -22.907953851828537, -43.20459768423527 -22.90801997343498, -43.204420257626346 -22.908103889971304, -43.204251910633964 -22.908204793275395, -43.204094264531676 -22.908321711593274, -43.20394883753763 -22.908453518937627, -43.20381703019328 -22.908598945931672, -43.2037001118754 -22.90875659203396, -43.203599208571305 -22.90892493902635, -43.20351529203498 -22.90910236563527, -43.203449170428534 -22.909287163145493, -43.20340148053919 -22.909477551855968, -43.203372681646655 -22.90967169821934, -43.2033630511 -22.9098677325))" +001586,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +001587,Centro,Centro,88a8a06a57fffff,TRUE,314,-22.90544858,-43.19344391,PO,G,Canal do Mangue,"POLYGON ((-43.1914439121 -22.9054485779, -43.191453542646656 -22.90564461218066, -43.19148234153919 -22.905838758544032, -43.191530031428535 -22.906029147254507, -43.19159615303498 -22.90621394476473, -43.191680069571305 -22.90639137137365, -43.1917809728754 -22.90655971836604, -43.19189789119328 -22.906717364468328, -43.19202969853763 -22.906862791462373, -43.192175125531676 -22.906994598806726, -43.192332771633964 -22.907111517124605, -43.192501118626346 -22.907212420428696, -43.19267854523527 -22.90729633696502, -43.19286334274549 -22.907362458571463, -43.19305373145597 -22.907410148460805, -43.19324787781934 -22.907438947353345, -43.1934439121 -22.9074485779, -43.193639946380664 -22.907438947353345, -43.193834092744034 -22.907410148460805, -43.19402448145451 -22.907362458571463, -43.194209278964735 -22.90729633696502, -43.194386705573656 -22.907212420428696, -43.19455505256604 -22.907111517124605, -43.194712698668326 -22.906994598806726, -43.19485812566237 -22.906862791462373, -43.194989933006724 -22.906717364468328, -43.1951068513246 -22.90655971836604, -43.1952077546287 -22.90639137137365, -43.19529167116502 -22.90621394476473, -43.19535779277147 -22.906029147254507, -43.19540548266081 -22.905838758544032, -43.19543428155335 -22.90564461218066, -43.195443912100004 -22.9054485779, -43.19543428155335 -22.90525254361934, -43.19540548266081 -22.905058397255967, -43.19535779277147 -22.904868008545492, -43.19529167116502 -22.90468321103527, -43.1952077546287 -22.904505784426348, -43.1951068513246 -22.90433743743396, -43.194989933006724 -22.90417979133167, -43.19485812566237 -22.904034364337626, -43.194712698668326 -22.903902556993273, -43.19455505256604 -22.903785638675394, -43.194386705573656 -22.903684735371304, -43.194209278964735 -22.903600818834978, -43.19402448145451 -22.903534697228537, -43.193834092744034 -22.903487007339194, -43.193639946380664 -22.903458208446654, -43.1934439121 -22.9034485779, -43.19324787781934 -22.903458208446654, -43.19305373145597 -22.903487007339194, -43.19286334274549 -22.903534697228537, -43.19267854523527 -22.903600818834978, -43.192501118626346 -22.903684735371304, -43.192332771633964 -22.903785638675394, -43.192175125531676 -22.903902556993273, -43.19202969853763 -22.904034364337626, -43.19189789119328 -22.90417979133167, -43.1917809728754 -22.90433743743396, -43.191680069571305 -22.904505784426348, -43.19159615303498 -22.90468321103527, -43.191530031428535 -22.904868008545492, -43.19148234153919 -22.905058397255967, -43.191453542646656 -22.90525254361934, -43.1914439121 -22.9054485779))" +001588,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +001589,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +001590,Centro,Centro,88a8a06a57fffff,,,,,,,, +001591,Centro,Centro,88a8a06a57fffff,TRUE,314,-22.90544858,-43.19344391,PO,G,Canal do Mangue,"POLYGON ((-43.1914439121 -22.9054485779, -43.191453542646656 -22.90564461218066, -43.19148234153919 -22.905838758544032, -43.191530031428535 -22.906029147254507, -43.19159615303498 -22.90621394476473, -43.191680069571305 -22.90639137137365, -43.1917809728754 -22.90655971836604, -43.19189789119328 -22.906717364468328, -43.19202969853763 -22.906862791462373, -43.192175125531676 -22.906994598806726, -43.192332771633964 -22.907111517124605, -43.192501118626346 -22.907212420428696, -43.19267854523527 -22.90729633696502, -43.19286334274549 -22.907362458571463, -43.19305373145597 -22.907410148460805, -43.19324787781934 -22.907438947353345, -43.1934439121 -22.9074485779, -43.193639946380664 -22.907438947353345, -43.193834092744034 -22.907410148460805, -43.19402448145451 -22.907362458571463, -43.194209278964735 -22.90729633696502, -43.194386705573656 -22.907212420428696, -43.19455505256604 -22.907111517124605, -43.194712698668326 -22.906994598806726, -43.19485812566237 -22.906862791462373, -43.194989933006724 -22.906717364468328, -43.1951068513246 -22.90655971836604, -43.1952077546287 -22.90639137137365, -43.19529167116502 -22.90621394476473, -43.19535779277147 -22.906029147254507, -43.19540548266081 -22.905838758544032, -43.19543428155335 -22.90564461218066, -43.195443912100004 -22.9054485779, -43.19543428155335 -22.90525254361934, -43.19540548266081 -22.905058397255967, -43.19535779277147 -22.904868008545492, -43.19529167116502 -22.90468321103527, -43.1952077546287 -22.904505784426348, -43.1951068513246 -22.90433743743396, -43.194989933006724 -22.90417979133167, -43.19485812566237 -22.904034364337626, -43.194712698668326 -22.903902556993273, -43.19455505256604 -22.903785638675394, -43.194386705573656 -22.903684735371304, -43.194209278964735 -22.903600818834978, -43.19402448145451 -22.903534697228537, -43.193834092744034 -22.903487007339194, -43.193639946380664 -22.903458208446654, -43.1934439121 -22.9034485779, -43.19324787781934 -22.903458208446654, -43.19305373145597 -22.903487007339194, -43.19286334274549 -22.903534697228537, -43.19267854523527 -22.903600818834978, -43.192501118626346 -22.903684735371304, -43.192332771633964 -22.903785638675394, -43.192175125531676 -22.903902556993273, -43.19202969853763 -22.904034364337626, -43.19189789119328 -22.90417979133167, -43.1917809728754 -22.90433743743396, -43.191680069571305 -22.904505784426348, -43.19159615303498 -22.90468321103527, -43.191530031428535 -22.904868008545492, -43.19148234153919 -22.905058397255967, -43.191453542646656 -22.90525254361934, -43.1914439121 -22.9054485779))" +001593,Centro,Centro,88a8a06a57fffff,,,,,,,, +001594,Centro,Centro,88a8a06a51fffff,,,,,,,, +001595,Cidade Nova,Centro,88a8a06a51fffff,,,,,,,, +001596,Centro,Centro,88a8a06a51fffff,,,,,,,, +001597,Centro,Centro,88a8a06a51fffff,,,,,,,, +001598,Cidade Nova,Centro,88a8a06a51fffff,,,,,,,, +001599,Cidade Nova,Centro,88a8a06a51fffff,,,,,,,, +001600,Centro,Centro,88a8a06a51fffff,,,,,,,, +001601,Centro,Centro,88a8a06a51fffff,,,,,,,, +001602,Centro,Centro,88a8a06a57fffff,TRUE,314,-22.90544858,-43.19344391,PO,G,Canal do Mangue,"POLYGON ((-43.1914439121 -22.9054485779, -43.191453542646656 -22.90564461218066, -43.19148234153919 -22.905838758544032, -43.191530031428535 -22.906029147254507, -43.19159615303498 -22.90621394476473, -43.191680069571305 -22.90639137137365, -43.1917809728754 -22.90655971836604, -43.19189789119328 -22.906717364468328, -43.19202969853763 -22.906862791462373, -43.192175125531676 -22.906994598806726, -43.192332771633964 -22.907111517124605, -43.192501118626346 -22.907212420428696, -43.19267854523527 -22.90729633696502, -43.19286334274549 -22.907362458571463, -43.19305373145597 -22.907410148460805, -43.19324787781934 -22.907438947353345, -43.1934439121 -22.9074485779, -43.193639946380664 -22.907438947353345, -43.193834092744034 -22.907410148460805, -43.19402448145451 -22.907362458571463, -43.194209278964735 -22.90729633696502, -43.194386705573656 -22.907212420428696, -43.19455505256604 -22.907111517124605, -43.194712698668326 -22.906994598806726, -43.19485812566237 -22.906862791462373, -43.194989933006724 -22.906717364468328, -43.1951068513246 -22.90655971836604, -43.1952077546287 -22.90639137137365, -43.19529167116502 -22.90621394476473, -43.19535779277147 -22.906029147254507, -43.19540548266081 -22.905838758544032, -43.19543428155335 -22.90564461218066, -43.195443912100004 -22.9054485779, -43.19543428155335 -22.90525254361934, -43.19540548266081 -22.905058397255967, -43.19535779277147 -22.904868008545492, -43.19529167116502 -22.90468321103527, -43.1952077546287 -22.904505784426348, -43.1951068513246 -22.90433743743396, -43.194989933006724 -22.90417979133167, -43.19485812566237 -22.904034364337626, -43.194712698668326 -22.903902556993273, -43.19455505256604 -22.903785638675394, -43.194386705573656 -22.903684735371304, -43.194209278964735 -22.903600818834978, -43.19402448145451 -22.903534697228537, -43.193834092744034 -22.903487007339194, -43.193639946380664 -22.903458208446654, -43.1934439121 -22.9034485779, -43.19324787781934 -22.903458208446654, -43.19305373145597 -22.903487007339194, -43.19286334274549 -22.903534697228537, -43.19267854523527 -22.903600818834978, -43.192501118626346 -22.903684735371304, -43.192332771633964 -22.903785638675394, -43.192175125531676 -22.903902556993273, -43.19202969853763 -22.904034364337626, -43.19189789119328 -22.90417979133167, -43.1917809728754 -22.90433743743396, -43.191680069571305 -22.904505784426348, -43.19159615303498 -22.90468321103527, -43.191530031428535 -22.904868008545492, -43.19148234153919 -22.905058397255967, -43.191453542646656 -22.90525254361934, -43.1914439121 -22.9054485779))" +001603,Centro,Centro,88a8a06a57fffff,TRUE,314,-22.90544858,-43.19344391,PO,G,Canal do Mangue,"POLYGON ((-43.1914439121 -22.9054485779, -43.191453542646656 -22.90564461218066, -43.19148234153919 -22.905838758544032, -43.191530031428535 -22.906029147254507, -43.19159615303498 -22.90621394476473, -43.191680069571305 -22.90639137137365, -43.1917809728754 -22.90655971836604, -43.19189789119328 -22.906717364468328, -43.19202969853763 -22.906862791462373, -43.192175125531676 -22.906994598806726, -43.192332771633964 -22.907111517124605, -43.192501118626346 -22.907212420428696, -43.19267854523527 -22.90729633696502, -43.19286334274549 -22.907362458571463, -43.19305373145597 -22.907410148460805, -43.19324787781934 -22.907438947353345, -43.1934439121 -22.9074485779, -43.193639946380664 -22.907438947353345, -43.193834092744034 -22.907410148460805, -43.19402448145451 -22.907362458571463, -43.194209278964735 -22.90729633696502, -43.194386705573656 -22.907212420428696, -43.19455505256604 -22.907111517124605, -43.194712698668326 -22.906994598806726, -43.19485812566237 -22.906862791462373, -43.194989933006724 -22.906717364468328, -43.1951068513246 -22.90655971836604, -43.1952077546287 -22.90639137137365, -43.19529167116502 -22.90621394476473, -43.19535779277147 -22.906029147254507, -43.19540548266081 -22.905838758544032, -43.19543428155335 -22.90564461218066, -43.195443912100004 -22.9054485779, -43.19543428155335 -22.90525254361934, -43.19540548266081 -22.905058397255967, -43.19535779277147 -22.904868008545492, -43.19529167116502 -22.90468321103527, -43.1952077546287 -22.904505784426348, -43.1951068513246 -22.90433743743396, -43.194989933006724 -22.90417979133167, -43.19485812566237 -22.904034364337626, -43.194712698668326 -22.903902556993273, -43.19455505256604 -22.903785638675394, -43.194386705573656 -22.903684735371304, -43.194209278964735 -22.903600818834978, -43.19402448145451 -22.903534697228537, -43.193834092744034 -22.903487007339194, -43.193639946380664 -22.903458208446654, -43.1934439121 -22.9034485779, -43.19324787781934 -22.903458208446654, -43.19305373145597 -22.903487007339194, -43.19286334274549 -22.903534697228537, -43.19267854523527 -22.903600818834978, -43.192501118626346 -22.903684735371304, -43.192332771633964 -22.903785638675394, -43.192175125531676 -22.903902556993273, -43.19202969853763 -22.904034364337626, -43.19189789119328 -22.90417979133167, -43.1917809728754 -22.90433743743396, -43.191680069571305 -22.904505784426348, -43.19159615303498 -22.90468321103527, -43.191530031428535 -22.904868008545492, -43.19148234153919 -22.905058397255967, -43.191453542646656 -22.90525254361934, -43.1914439121 -22.9054485779))" +001604,Centro,Centro,88a8a06a57fffff,,,,,,,, +001605,Centro,Centro,88a8a06a57fffff,,,,,,,, +001606,Lapa,Centro,88a8a06a55fffff,TRUE,8,-22.91075391,-43.18498125,PC,G,Marina da Glória,"POLYGON ((-43.1829812477 -22.9107539132, -43.182990878246656 -22.91094994748066, -43.18301967713919 -22.911144093844033, -43.183067367028535 -22.91133448255451, -43.18313348863498 -22.91151928006473, -43.183217405171305 -22.911696706673652, -43.1833183084754 -22.91186505366604, -43.18343522679328 -22.91202269976833, -43.18356703413763 -22.912168126762374, -43.18371246113168 -22.912299934106727, -43.183870107233965 -22.912416852424606, -43.18403845422635 -22.912517755728697, -43.18421588083527 -22.912601672265023, -43.18440067834549 -22.912667793871464, -43.18459106705597 -22.912715483760806, -43.18478521341934 -22.912744282653346, -43.1849812477 -22.9127539132, -43.185177281980664 -22.912744282653346, -43.185371428344034 -22.912715483760806, -43.18556181705451 -22.912667793871464, -43.185746614564735 -22.912601672265023, -43.18592404117366 -22.912517755728697, -43.18609238816604 -22.912416852424606, -43.186250034268326 -22.912299934106727, -43.18639546126237 -22.912168126762374, -43.186527268606724 -22.91202269976833, -43.1866441869246 -22.91186505366604, -43.1867450902287 -22.911696706673652, -43.186829006765024 -22.91151928006473, -43.18689512837147 -22.91133448255451, -43.18694281826081 -22.911144093844033, -43.18697161715335 -22.91094994748066, -43.186981247700004 -22.9107539132, -43.18697161715335 -22.91055787891934, -43.18694281826081 -22.910363732555968, -43.18689512837147 -22.910173343845493, -43.186829006765024 -22.90998854633527, -43.1867450902287 -22.90981111972635, -43.1866441869246 -22.90964277273396, -43.186527268606724 -22.909485126631672, -43.18639546126237 -22.909339699637627, -43.186250034268326 -22.909207892293274, -43.18609238816604 -22.909090973975395, -43.18592404117366 -22.908990070671305, -43.185746614564735 -22.90890615413498, -43.18556181705451 -22.908840032528538, -43.185371428344034 -22.908792342639195, -43.185177281980664 -22.908763543746655, -43.1849812477 -22.9087539132, -43.18478521341934 -22.908763543746655, -43.18459106705597 -22.908792342639195, -43.18440067834549 -22.908840032528538, -43.18421588083527 -22.90890615413498, -43.18403845422635 -22.908990070671305, -43.183870107233965 -22.909090973975395, -43.18371246113168 -22.909207892293274, -43.18356703413763 -22.909339699637627, -43.18343522679328 -22.909485126631672, -43.1833183084754 -22.90964277273396, -43.183217405171305 -22.90981111972635, -43.18313348863498 -22.90998854633527, -43.183067367028535 -22.910173343845493, -43.18301967713919 -22.910363732555968, -43.182990878246656 -22.91055787891934, -43.1829812477 -22.9107539132))" +001607,Lapa,Centro,88a8a06a55fffff,TRUE,8,-22.91075391,-43.18498125,PC,G,Marina da Glória,"POLYGON ((-43.1829812477 -22.9107539132, -43.182990878246656 -22.91094994748066, -43.18301967713919 -22.911144093844033, -43.183067367028535 -22.91133448255451, -43.18313348863498 -22.91151928006473, -43.183217405171305 -22.911696706673652, -43.1833183084754 -22.91186505366604, -43.18343522679328 -22.91202269976833, -43.18356703413763 -22.912168126762374, -43.18371246113168 -22.912299934106727, -43.183870107233965 -22.912416852424606, -43.18403845422635 -22.912517755728697, -43.18421588083527 -22.912601672265023, -43.18440067834549 -22.912667793871464, -43.18459106705597 -22.912715483760806, -43.18478521341934 -22.912744282653346, -43.1849812477 -22.9127539132, -43.185177281980664 -22.912744282653346, -43.185371428344034 -22.912715483760806, -43.18556181705451 -22.912667793871464, -43.185746614564735 -22.912601672265023, -43.18592404117366 -22.912517755728697, -43.18609238816604 -22.912416852424606, -43.186250034268326 -22.912299934106727, -43.18639546126237 -22.912168126762374, -43.186527268606724 -22.91202269976833, -43.1866441869246 -22.91186505366604, -43.1867450902287 -22.911696706673652, -43.186829006765024 -22.91151928006473, -43.18689512837147 -22.91133448255451, -43.18694281826081 -22.911144093844033, -43.18697161715335 -22.91094994748066, -43.186981247700004 -22.9107539132, -43.18697161715335 -22.91055787891934, -43.18694281826081 -22.910363732555968, -43.18689512837147 -22.910173343845493, -43.186829006765024 -22.90998854633527, -43.1867450902287 -22.90981111972635, -43.1866441869246 -22.90964277273396, -43.186527268606724 -22.909485126631672, -43.18639546126237 -22.909339699637627, -43.186250034268326 -22.909207892293274, -43.18609238816604 -22.909090973975395, -43.18592404117366 -22.908990070671305, -43.185746614564735 -22.90890615413498, -43.18556181705451 -22.908840032528538, -43.185371428344034 -22.908792342639195, -43.185177281980664 -22.908763543746655, -43.1849812477 -22.9087539132, -43.18478521341934 -22.908763543746655, -43.18459106705597 -22.908792342639195, -43.18440067834549 -22.908840032528538, -43.18421588083527 -22.90890615413498, -43.18403845422635 -22.908990070671305, -43.183870107233965 -22.909090973975395, -43.18371246113168 -22.909207892293274, -43.18356703413763 -22.909339699637627, -43.18343522679328 -22.909485126631672, -43.1833183084754 -22.90964277273396, -43.183217405171305 -22.90981111972635, -43.18313348863498 -22.90998854633527, -43.183067367028535 -22.910173343845493, -43.18301967713919 -22.910363732555968, -43.182990878246656 -22.91055787891934, -43.1829812477 -22.9107539132))" +001608,Lapa,Centro,88a8a06a55fffff,TRUE,352,-22.9123464,-43.18402901,PO,G,Centro,"POLYGON ((-43.1820290111 -22.9123464032, -43.182038641646656 -22.91254243748066, -43.18206744053919 -22.912736583844033, -43.182115130428535 -22.91292697255451, -43.18218125203498 -22.91311177006473, -43.182265168571305 -22.913289196673652, -43.1823660718754 -22.91345754366604, -43.18248299019328 -22.91361518976833, -43.18261479753763 -22.913760616762374, -43.18276022453168 -22.913892424106727, -43.182917870633965 -22.914009342424606, -43.18308621762635 -22.914110245728697, -43.18326364423527 -22.914194162265023, -43.18344844174549 -22.914260283871464, -43.18363883045597 -22.914307973760806, -43.18383297681934 -22.914336772653346, -43.1840290111 -22.9143464032, -43.184225045380664 -22.914336772653346, -43.184419191744034 -22.914307973760806, -43.18460958045451 -22.914260283871464, -43.184794377964735 -22.914194162265023, -43.18497180457366 -22.914110245728697, -43.18514015156604 -22.914009342424606, -43.185297797668326 -22.913892424106727, -43.18544322466237 -22.913760616762374, -43.185575032006724 -22.91361518976833, -43.1856919503246 -22.91345754366604, -43.1857928536287 -22.913289196673652, -43.185876770165024 -22.91311177006473, -43.18594289177147 -22.91292697255451, -43.18599058166081 -22.912736583844033, -43.18601938055335 -22.91254243748066, -43.186029011100004 -22.9123464032, -43.18601938055335 -22.91215036891934, -43.18599058166081 -22.91195622255597, -43.18594289177147 -22.911765833845493, -43.185876770165024 -22.91158103633527, -43.1857928536287 -22.91140360972635, -43.1856919503246 -22.91123526273396, -43.185575032006724 -22.911077616631673, -43.18544322466237 -22.910932189637627, -43.185297797668326 -22.910800382293274, -43.18514015156604 -22.910683463975396, -43.18497180457366 -22.910582560671305, -43.184794377964735 -22.91049864413498, -43.18460958045451 -22.910432522528538, -43.184419191744034 -22.910384832639195, -43.184225045380664 -22.910356033746655, -43.1840290111 -22.910346403200002, -43.18383297681934 -22.910356033746655, -43.18363883045597 -22.910384832639195, -43.18344844174549 -22.910432522528538, -43.18326364423527 -22.91049864413498, -43.18308621762635 -22.910582560671305, -43.182917870633965 -22.910683463975396, -43.18276022453168 -22.910800382293274, -43.18261479753763 -22.910932189637627, -43.18248299019328 -22.911077616631673, -43.1823660718754 -22.91123526273396, -43.182265168571305 -22.91140360972635, -43.18218125203498 -22.91158103633527, -43.182115130428535 -22.911765833845493, -43.18206744053919 -22.91195622255597, -43.182038641646656 -22.91215036891934, -43.1820290111 -22.9123464032))" +001609,Lapa,Centro,88a8a06a55fffff,TRUE,352,-22.9123464,-43.18402901,PO,G,Centro,"POLYGON ((-43.1820290111 -22.9123464032, -43.182038641646656 -22.91254243748066, -43.18206744053919 -22.912736583844033, -43.182115130428535 -22.91292697255451, -43.18218125203498 -22.91311177006473, -43.182265168571305 -22.913289196673652, -43.1823660718754 -22.91345754366604, -43.18248299019328 -22.91361518976833, -43.18261479753763 -22.913760616762374, -43.18276022453168 -22.913892424106727, -43.182917870633965 -22.914009342424606, -43.18308621762635 -22.914110245728697, -43.18326364423527 -22.914194162265023, -43.18344844174549 -22.914260283871464, -43.18363883045597 -22.914307973760806, -43.18383297681934 -22.914336772653346, -43.1840290111 -22.9143464032, -43.184225045380664 -22.914336772653346, -43.184419191744034 -22.914307973760806, -43.18460958045451 -22.914260283871464, -43.184794377964735 -22.914194162265023, -43.18497180457366 -22.914110245728697, -43.18514015156604 -22.914009342424606, -43.185297797668326 -22.913892424106727, -43.18544322466237 -22.913760616762374, -43.185575032006724 -22.91361518976833, -43.1856919503246 -22.91345754366604, -43.1857928536287 -22.913289196673652, -43.185876770165024 -22.91311177006473, -43.18594289177147 -22.91292697255451, -43.18599058166081 -22.912736583844033, -43.18601938055335 -22.91254243748066, -43.186029011100004 -22.9123464032, -43.18601938055335 -22.91215036891934, -43.18599058166081 -22.91195622255597, -43.18594289177147 -22.911765833845493, -43.185876770165024 -22.91158103633527, -43.1857928536287 -22.91140360972635, -43.1856919503246 -22.91123526273396, -43.185575032006724 -22.911077616631673, -43.18544322466237 -22.910932189637627, -43.185297797668326 -22.910800382293274, -43.18514015156604 -22.910683463975396, -43.18497180457366 -22.910582560671305, -43.184794377964735 -22.91049864413498, -43.18460958045451 -22.910432522528538, -43.184419191744034 -22.910384832639195, -43.184225045380664 -22.910356033746655, -43.1840290111 -22.910346403200002, -43.18383297681934 -22.910356033746655, -43.18363883045597 -22.910384832639195, -43.18344844174549 -22.910432522528538, -43.18326364423527 -22.91049864413498, -43.18308621762635 -22.910582560671305, -43.182917870633965 -22.910683463975396, -43.18276022453168 -22.910800382293274, -43.18261479753763 -22.910932189637627, -43.18248299019328 -22.911077616631673, -43.1823660718754 -22.91123526273396, -43.182265168571305 -22.91140360972635, -43.18218125203498 -22.91158103633527, -43.182115130428535 -22.911765833845493, -43.18206744053919 -22.91195622255597, -43.182038641646656 -22.91215036891934, -43.1820290111 -22.9123464032))" +001610,Lapa,Centro,88a8a06a55fffff,TRUE,352,-22.9123464,-43.18402901,PO,G,Centro,"POLYGON ((-43.1820290111 -22.9123464032, -43.182038641646656 -22.91254243748066, -43.18206744053919 -22.912736583844033, -43.182115130428535 -22.91292697255451, -43.18218125203498 -22.91311177006473, -43.182265168571305 -22.913289196673652, -43.1823660718754 -22.91345754366604, -43.18248299019328 -22.91361518976833, -43.18261479753763 -22.913760616762374, -43.18276022453168 -22.913892424106727, -43.182917870633965 -22.914009342424606, -43.18308621762635 -22.914110245728697, -43.18326364423527 -22.914194162265023, -43.18344844174549 -22.914260283871464, -43.18363883045597 -22.914307973760806, -43.18383297681934 -22.914336772653346, -43.1840290111 -22.9143464032, -43.184225045380664 -22.914336772653346, -43.184419191744034 -22.914307973760806, -43.18460958045451 -22.914260283871464, -43.184794377964735 -22.914194162265023, -43.18497180457366 -22.914110245728697, -43.18514015156604 -22.914009342424606, -43.185297797668326 -22.913892424106727, -43.18544322466237 -22.913760616762374, -43.185575032006724 -22.91361518976833, -43.1856919503246 -22.91345754366604, -43.1857928536287 -22.913289196673652, -43.185876770165024 -22.91311177006473, -43.18594289177147 -22.91292697255451, -43.18599058166081 -22.912736583844033, -43.18601938055335 -22.91254243748066, -43.186029011100004 -22.9123464032, -43.18601938055335 -22.91215036891934, -43.18599058166081 -22.91195622255597, -43.18594289177147 -22.911765833845493, -43.185876770165024 -22.91158103633527, -43.1857928536287 -22.91140360972635, -43.1856919503246 -22.91123526273396, -43.185575032006724 -22.911077616631673, -43.18544322466237 -22.910932189637627, -43.185297797668326 -22.910800382293274, -43.18514015156604 -22.910683463975396, -43.18497180457366 -22.910582560671305, -43.184794377964735 -22.91049864413498, -43.18460958045451 -22.910432522528538, -43.184419191744034 -22.910384832639195, -43.184225045380664 -22.910356033746655, -43.1840290111 -22.910346403200002, -43.18383297681934 -22.910356033746655, -43.18363883045597 -22.910384832639195, -43.18344844174549 -22.910432522528538, -43.18326364423527 -22.91049864413498, -43.18308621762635 -22.910582560671305, -43.182917870633965 -22.910683463975396, -43.18276022453168 -22.910800382293274, -43.18261479753763 -22.910932189637627, -43.18248299019328 -22.911077616631673, -43.1823660718754 -22.91123526273396, -43.182265168571305 -22.91140360972635, -43.18218125203498 -22.91158103633527, -43.182115130428535 -22.911765833845493, -43.18206744053919 -22.91195622255597, -43.182038641646656 -22.91215036891934, -43.1820290111 -22.9123464032))" +001611,Lapa,Centro,88a8a06a55fffff,TRUE,352,-22.9123464,-43.18402901,PO,G,Centro,"POLYGON ((-43.1820290111 -22.9123464032, -43.182038641646656 -22.91254243748066, -43.18206744053919 -22.912736583844033, -43.182115130428535 -22.91292697255451, -43.18218125203498 -22.91311177006473, -43.182265168571305 -22.913289196673652, -43.1823660718754 -22.91345754366604, -43.18248299019328 -22.91361518976833, -43.18261479753763 -22.913760616762374, -43.18276022453168 -22.913892424106727, -43.182917870633965 -22.914009342424606, -43.18308621762635 -22.914110245728697, -43.18326364423527 -22.914194162265023, -43.18344844174549 -22.914260283871464, -43.18363883045597 -22.914307973760806, -43.18383297681934 -22.914336772653346, -43.1840290111 -22.9143464032, -43.184225045380664 -22.914336772653346, -43.184419191744034 -22.914307973760806, -43.18460958045451 -22.914260283871464, -43.184794377964735 -22.914194162265023, -43.18497180457366 -22.914110245728697, -43.18514015156604 -22.914009342424606, -43.185297797668326 -22.913892424106727, -43.18544322466237 -22.913760616762374, -43.185575032006724 -22.91361518976833, -43.1856919503246 -22.91345754366604, -43.1857928536287 -22.913289196673652, -43.185876770165024 -22.91311177006473, -43.18594289177147 -22.91292697255451, -43.18599058166081 -22.912736583844033, -43.18601938055335 -22.91254243748066, -43.186029011100004 -22.9123464032, -43.18601938055335 -22.91215036891934, -43.18599058166081 -22.91195622255597, -43.18594289177147 -22.911765833845493, -43.185876770165024 -22.91158103633527, -43.1857928536287 -22.91140360972635, -43.1856919503246 -22.91123526273396, -43.185575032006724 -22.911077616631673, -43.18544322466237 -22.910932189637627, -43.185297797668326 -22.910800382293274, -43.18514015156604 -22.910683463975396, -43.18497180457366 -22.910582560671305, -43.184794377964735 -22.91049864413498, -43.18460958045451 -22.910432522528538, -43.184419191744034 -22.910384832639195, -43.184225045380664 -22.910356033746655, -43.1840290111 -22.910346403200002, -43.18383297681934 -22.910356033746655, -43.18363883045597 -22.910384832639195, -43.18344844174549 -22.910432522528538, -43.18326364423527 -22.91049864413498, -43.18308621762635 -22.910582560671305, -43.182917870633965 -22.910683463975396, -43.18276022453168 -22.910800382293274, -43.18261479753763 -22.910932189637627, -43.18248299019328 -22.911077616631673, -43.1823660718754 -22.91123526273396, -43.182265168571305 -22.91140360972635, -43.18218125203498 -22.91158103633527, -43.182115130428535 -22.911765833845493, -43.18206744053919 -22.91195622255597, -43.182038641646656 -22.91215036891934, -43.1820290111 -22.9123464032))" +001612,Catumbi,Centro,88a8a06a51fffff,,,,,,,, +001613,Catumbi,Centro,88a8a06a51fffff,,,,,,,, +001614,Lapa,Centro,88a8a06a43fffff,,,,,,,, +001615,Lapa,Centro,88a8a06a43fffff,,,,,,,, +001616,Glória,Centro,88a8a06a43fffff,,,,,,,, +001617,Glória,Centro,88a8a06a47fffff,,,,,,,, +001618,Glória,Centro,88a8a06a47fffff,,,,,,,, +001621,Lapa,Centro,88a8a06a43fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +001622,Lapa,Centro,88a8a06a43fffff,,,,,,,, +001623,Lapa,Centro,88a8a06a43fffff,,,,,,,, +001624,Centro,Centro,88a8a06a01fffff,,,,,,,, +001625,Lapa,Centro,88a8a06a43fffff,,,,,,,, +001626,Lapa,Centro,88a8a06a43fffff,,,,,,,, +001627,Lapa,Centro,88a8a06a09fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +001628,Lapa,Centro,88a8a06a09fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +001629,Glória,Centro,88a8a06a47fffff,,,,,,,, +001630,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +001631,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +001632,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001633,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001634,Campo Grande,Zona Oeste,88a8a02955fffff,,,,,,,, +001635,São Cristóvão,Centro,88a8a06ac9fffff,TRUE,315,-22.88636999,-43.22588612,PO,G,Canal do Cunha,"POLYGON ((-43.223886117199996 -22.886369987, -43.22389574774665 -22.886566021280657, -43.22392454663919 -22.88676016764403, -43.22397223652853 -22.886950556354506, -43.224038358134976 -22.88713535386473, -43.2241222746713 -22.88731278047365, -43.2242231779754 -22.88748112746604, -43.224340096293275 -22.887638773568327, -43.22447190363763 -22.887784200562372, -43.22461733063167 -22.887916007906725, -43.22477497673396 -22.888032926224604, -43.22494332372634 -22.888133829528694, -43.225120750335265 -22.88821774606502, -43.22530554784549 -22.88828386767146, -43.225495936555966 -22.888331557560804, -43.225690082919336 -22.888360356453344, -43.2258861172 -22.888369986999997, -43.22608215148066 -22.888360356453344, -43.22627629784403 -22.888331557560804, -43.22646668655451 -22.88828386767146, -43.22665148406473 -22.88821774606502, -43.22682891067365 -22.888133829528694, -43.226997257666035 -22.888032926224604, -43.22715490376832 -22.887916007906725, -43.22730033076237 -22.887784200562372, -43.22743213810672 -22.887638773568327, -43.2275490564246 -22.88748112746604, -43.227649959728694 -22.88731278047365, -43.22773387626502 -22.88713535386473, -43.227799997871465 -22.886950556354506, -43.22784768776081 -22.88676016764403, -43.227876486653344 -22.886566021280657, -43.2278861172 -22.886369987, -43.227876486653344 -22.88617395271934, -43.22784768776081 -22.885979806355966, -43.227799997871465 -22.88578941764549, -43.22773387626502 -22.88560462013527, -43.227649959728694 -22.885427193526347, -43.2275490564246 -22.885258846533958, -43.22743213810672 -22.88510120043167, -43.22730033076237 -22.884955773437625, -43.22715490376832 -22.884823966093272, -43.226997257666035 -22.884707047775393, -43.22682891067365 -22.884606144471302, -43.22665148406473 -22.884522227934976, -43.22646668655451 -22.884456106328535, -43.22627629784403 -22.884408416439193, -43.22608215148066 -22.884379617546653, -43.2258861172 -22.884369987, -43.225690082919336 -22.884379617546653, -43.225495936555966 -22.884408416439193, -43.22530554784549 -22.884456106328535, -43.225120750335265 -22.884522227934976, -43.22494332372634 -22.884606144471302, -43.22477497673396 -22.884707047775393, -43.22461733063167 -22.884823966093272, -43.22447190363763 -22.884955773437625, -43.224340096293275 -22.88510120043167, -43.2242231779754 -22.885258846533958, -43.2241222746713 -22.885427193526347, -43.224038358134976 -22.88560462013527, -43.22397223652853 -22.88578941764549, -43.22392454663919 -22.885979806355966, -43.22389574774665 -22.88617395271934, -43.223886117199996 -22.886369987))" +001636,São Cristóvão,Centro,88a8a06ac9fffff,TRUE,450,-22.887875,-43.225284,PO,G,,"POLYGON ((-43.223284 -22.887875, -43.22329363054666 -22.88807103428066, -43.22332242943919 -22.888265180644034, -43.223370119328536 -22.88845556935451, -43.22343624093498 -22.88864036686473, -43.223520157471306 -22.888817793473653, -43.2236210607754 -22.88898614046604, -43.22373797909328 -22.88914378656833, -43.22386978643763 -22.889289213562375, -43.22401521343168 -22.889421020906727, -43.224172859533965 -22.889537939224606, -43.22434120652635 -22.889638842528697, -43.22451863313527 -22.889722759065023, -43.22470343064549 -22.889788880671464, -43.22489381935597 -22.889836570560806, -43.22508796571934 -22.889865369453346, -43.225284 -22.889875, -43.225480034280665 -22.889865369453346, -43.225674180644035 -22.889836570560806, -43.22586456935451 -22.889788880671464, -43.226049366864736 -22.889722759065023, -43.22622679347366 -22.889638842528697, -43.22639514046604 -22.889537939224606, -43.22655278656833 -22.889421020906727, -43.22669821356237 -22.889289213562375, -43.226830020906725 -22.88914378656833, -43.226946939224604 -22.88898614046604, -43.2270478425287 -22.888817793473653, -43.227131759065024 -22.88864036686473, -43.22719788067147 -22.88845556935451, -43.22724557056081 -22.888265180644034, -43.22727436945335 -22.88807103428066, -43.227284000000004 -22.887875, -43.22727436945335 -22.887678965719342, -43.22724557056081 -22.88748481935597, -43.22719788067147 -22.887294430645493, -43.227131759065024 -22.88710963313527, -43.2270478425287 -22.88693220652635, -43.226946939224604 -22.88676385953396, -43.226830020906725 -22.886606213431673, -43.22669821356237 -22.886460786437627, -43.22655278656833 -22.886328979093275, -43.22639514046604 -22.886212060775396, -43.22622679347366 -22.886111157471305, -43.226049366864736 -22.88602724093498, -43.22586456935451 -22.885961119328538, -43.225674180644035 -22.885913429439196, -43.225480034280665 -22.885884630546656, -43.225284 -22.885875000000002, -43.22508796571934 -22.885884630546656, -43.22489381935597 -22.885913429439196, -43.22470343064549 -22.885961119328538, -43.22451863313527 -22.88602724093498, -43.22434120652635 -22.886111157471305, -43.224172859533965 -22.886212060775396, -43.22401521343168 -22.886328979093275, -43.22386978643763 -22.886460786437627, -43.22373797909328 -22.886606213431673, -43.2236210607754 -22.88676385953396, -43.223520157471306 -22.88693220652635, -43.22343624093498 -22.88710963313527, -43.223370119328536 -22.887294430645493, -43.22332242943919 -22.88748481935597, -43.22329363054666 -22.887678965719342, -43.223284 -22.887875))" +001637,Cachambi,Zona Norte,88a8a061c1fffff,,,,,,,, +001638,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +001639,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +001640,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +001641,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001642,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001643,Centro,Centro,88a8a06a55fffff,TRUE,7,-22.91455584,-43.18727689,PC,G,Marina da Glória,"POLYGON ((-43.185276892299996 -22.9145558433, -43.18528652284665 -22.91475187758066, -43.18531532173919 -22.914946023944033, -43.18536301162853 -22.91513641265451, -43.185429133234976 -22.91532121016473, -43.1855130497713 -22.915498636773652, -43.185613953075396 -22.91566698376604, -43.185730871393275 -22.91582462986833, -43.18586267873763 -22.915970056862374, -43.18600810573167 -22.916101864206727, -43.18616575183396 -22.916218782524606, -43.18633409882634 -22.916319685828697, -43.186511525435265 -22.916403602365023, -43.18669632294549 -22.916469723971463, -43.186886711655966 -22.916517413860806, -43.187080858019335 -22.916546212753346, -43.1872768923 -22.9165558433, -43.18747292658066 -22.916546212753346, -43.18766707294403 -22.916517413860806, -43.18785746165451 -22.916469723971463, -43.18804225916473 -22.916403602365023, -43.18821968577365 -22.916319685828697, -43.188388032766035 -22.916218782524606, -43.18854567886832 -22.916101864206727, -43.18869110586237 -22.915970056862374, -43.18882291320672 -22.91582462986833, -43.1889398315246 -22.91566698376604, -43.189040734828694 -22.915498636773652, -43.18912465136502 -22.91532121016473, -43.189190772971465 -22.91513641265451, -43.18923846286081 -22.914946023944033, -43.18926726175334 -22.91475187758066, -43.1892768923 -22.9145558433, -43.18926726175334 -22.91435980901934, -43.18923846286081 -22.914165662655968, -43.189190772971465 -22.913975273945493, -43.18912465136502 -22.91379047643527, -43.189040734828694 -22.91361304982635, -43.1889398315246 -22.91344470283396, -43.18882291320672 -22.913287056731672, -43.18869110586237 -22.913141629737627, -43.18854567886832 -22.913009822393274, -43.188388032766035 -22.912892904075395, -43.18821968577365 -22.912792000771304, -43.18804225916473 -22.91270808423498, -43.18785746165451 -22.912641962628538, -43.18766707294403 -22.912594272739195, -43.18747292658066 -22.912565473846655, -43.1872768923 -22.9125558433, -43.187080858019335 -22.912565473846655, -43.186886711655966 -22.912594272739195, -43.18669632294549 -22.912641962628538, -43.186511525435265 -22.91270808423498, -43.18633409882634 -22.912792000771304, -43.18616575183396 -22.912892904075395, -43.18600810573167 -22.913009822393274, -43.18586267873763 -22.913141629737627, -43.185730871393275 -22.913287056731672, -43.185613953075396 -22.91344470283396, -43.1855130497713 -22.91361304982635, -43.185429133234976 -22.91379047643527, -43.18536301162853 -22.913975273945493, -43.18531532173919 -22.914165662655968, -43.18528652284665 -22.91435980901934, -43.185276892299996 -22.9145558433))" +001644,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +001645,Botafogo,Zona Sul,88a8a07881fffff,TRUE,311,-22.9548744,-43.19740135,PO,ZS,Praia de Botafogo,"POLYGON ((-43.1954013536 -22.9548743952, -43.195410984146655 -22.95507042948066, -43.19543978303919 -22.955264575844033, -43.195487472928534 -22.95545496455451, -43.19555359453498 -22.95563976206473, -43.195637511071304 -22.955817188673652, -43.1957384143754 -22.95598553566604, -43.19585533269328 -22.95614318176833, -43.19598714003763 -22.956288608762375, -43.196132567031675 -22.956420416106727, -43.19629021313396 -22.956537334424606, -43.196458560126345 -22.956638237728697, -43.19663598673527 -22.956722154265023, -43.19682078424549 -22.956788275871464, -43.19701117295597 -22.956835965760806, -43.19720531931934 -22.956864764653346, -43.1974013536 -22.9568743952, -43.19759738788066 -22.956864764653346, -43.19779153424403 -22.956835965760806, -43.19798192295451 -22.956788275871464, -43.198166720464734 -22.956722154265023, -43.198344147073655 -22.956638237728697, -43.19851249406604 -22.956537334424606, -43.198670140168325 -22.956420416106727, -43.19881556716237 -22.956288608762375, -43.19894737450672 -22.95614318176833, -43.1990642928246 -22.95598553566604, -43.199165196128696 -22.955817188673652, -43.19924911266502 -22.95563976206473, -43.19931523427147 -22.95545496455451, -43.19936292416081 -22.955264575844033, -43.199391723053346 -22.95507042948066, -43.1994013536 -22.9548743952, -43.199391723053346 -22.954678360919342, -43.19936292416081 -22.95448421455597, -43.19931523427147 -22.954293825845493, -43.19924911266502 -22.95410902833527, -43.199165196128696 -22.95393160172635, -43.1990642928246 -22.95376325473396, -43.19894737450672 -22.953605608631673, -43.19881556716237 -22.953460181637627, -43.198670140168325 -22.953328374293275, -43.19851249406604 -22.953211455975396, -43.198344147073655 -22.953110552671305, -43.198166720464734 -22.95302663613498, -43.19798192295451 -22.952960514528538, -43.19779153424403 -22.952912824639196, -43.19759738788066 -22.952884025746656, -43.1974013536 -22.952874395200002, -43.19720531931934 -22.952884025746656, -43.19701117295597 -22.952912824639196, -43.19682078424549 -22.952960514528538, -43.19663598673527 -22.95302663613498, -43.196458560126345 -22.953110552671305, -43.19629021313396 -22.953211455975396, -43.196132567031675 -22.953328374293275, -43.19598714003763 -22.953460181637627, -43.19585533269328 -22.953605608631673, -43.1957384143754 -22.95376325473396, -43.195637511071304 -22.95393160172635, -43.19555359453498 -22.95410902833527, -43.195487472928534 -22.954293825845493, -43.19543978303919 -22.95448421455597, -43.195410984146655 -22.954678360919342, -43.1954013536 -22.9548743952))" +001646,Botafogo,Zona Sul,88a8a07885fffff,,,,,,,, +001647,Botafogo,Zona Sul,88a8a07881fffff,,,,,,,, +001648,Botafogo,Zona Sul,88a8a07887fffff,,,,,,,, +001649,Botafogo,Zona Sul,88a8a07887fffff,,,,,,,, +001650,Campo Grande,Zona Oeste,88a8a02911fffff,,,,,,,, +001651,Campo Grande,Zona Oeste,88a8a02917fffff,TRUE,278,-22.8850915,-43.55659782,PO,S,Rio Campinho,"POLYGON ((-43.554597815099996 -22.8850914981, -43.55460744564665 -22.88528753238066, -43.55463624453919 -22.885481678744032, -43.55468393442853 -22.885672067454507, -43.554750056034976 -22.88585686496473, -43.5548339725713 -22.88603429157365, -43.5549348758754 -22.88620263856604, -43.555051794193275 -22.886360284668328, -43.55518360153763 -22.886505711662373, -43.55532902853167 -22.886637519006726, -43.55548667463396 -22.886754437324605, -43.55565502162634 -22.886855340628696, -43.555832448235265 -22.88693925716502, -43.55601724574549 -22.887005378771462, -43.556207634455966 -22.887053068660805, -43.556401780819336 -22.887081867553345, -43.5565978151 -22.8870914981, -43.55679384938066 -22.887081867553345, -43.55698799574403 -22.887053068660805, -43.55717838445451 -22.887005378771462, -43.55736318196473 -22.88693925716502, -43.55754060857365 -22.886855340628696, -43.557708955566035 -22.886754437324605, -43.55786660166832 -22.886637519006726, -43.55801202866237 -22.886505711662373, -43.55814383600672 -22.886360284668328, -43.5582607543246 -22.88620263856604, -43.558361657628694 -22.88603429157365, -43.55844557416502 -22.88585686496473, -43.558511695771465 -22.885672067454507, -43.55855938566081 -22.885481678744032, -43.558588184553344 -22.88528753238066, -43.5585978151 -22.8850914981, -43.558588184553344 -22.88489546381934, -43.55855938566081 -22.884701317455967, -43.558511695771465 -22.88451092874549, -43.55844557416502 -22.88432613123527, -43.558361657628694 -22.884148704626348, -43.5582607543246 -22.88398035763396, -43.55814383600672 -22.88382271153167, -43.55801202866237 -22.883677284537626, -43.55786660166832 -22.883545477193273, -43.557708955566035 -22.883428558875394, -43.55754060857365 -22.883327655571303, -43.55736318196473 -22.883243739034977, -43.55717838445451 -22.883177617428537, -43.55698799574403 -22.883129927539194, -43.55679384938066 -22.883101128646654, -43.5565978151 -22.8830914981, -43.556401780819336 -22.883101128646654, -43.556207634455966 -22.883129927539194, -43.55601724574549 -22.883177617428537, -43.555832448235265 -22.883243739034977, -43.55565502162634 -22.883327655571303, -43.55548667463396 -22.883428558875394, -43.55532902853167 -22.883545477193273, -43.55518360153763 -22.883677284537626, -43.555051794193275 -22.88382271153167, -43.5549348758754 -22.88398035763396, -43.5548339725713 -22.884148704626348, -43.554750056034976 -22.88432613123527, -43.55468393442853 -22.88451092874549, -43.55463624453919 -22.884701317455967, -43.55460744564665 -22.88489546381934, -43.554597815099996 -22.8850914981))" +001652,Campo Grande,Zona Oeste,88a8a02917fffff,TRUE,278,-22.8850915,-43.55659782,PO,S,Rio Campinho,"POLYGON ((-43.554597815099996 -22.8850914981, -43.55460744564665 -22.88528753238066, -43.55463624453919 -22.885481678744032, -43.55468393442853 -22.885672067454507, -43.554750056034976 -22.88585686496473, -43.5548339725713 -22.88603429157365, -43.5549348758754 -22.88620263856604, -43.555051794193275 -22.886360284668328, -43.55518360153763 -22.886505711662373, -43.55532902853167 -22.886637519006726, -43.55548667463396 -22.886754437324605, -43.55565502162634 -22.886855340628696, -43.555832448235265 -22.88693925716502, -43.55601724574549 -22.887005378771462, -43.556207634455966 -22.887053068660805, -43.556401780819336 -22.887081867553345, -43.5565978151 -22.8870914981, -43.55679384938066 -22.887081867553345, -43.55698799574403 -22.887053068660805, -43.55717838445451 -22.887005378771462, -43.55736318196473 -22.88693925716502, -43.55754060857365 -22.886855340628696, -43.557708955566035 -22.886754437324605, -43.55786660166832 -22.886637519006726, -43.55801202866237 -22.886505711662373, -43.55814383600672 -22.886360284668328, -43.5582607543246 -22.88620263856604, -43.558361657628694 -22.88603429157365, -43.55844557416502 -22.88585686496473, -43.558511695771465 -22.885672067454507, -43.55855938566081 -22.885481678744032, -43.558588184553344 -22.88528753238066, -43.5585978151 -22.8850914981, -43.558588184553344 -22.88489546381934, -43.55855938566081 -22.884701317455967, -43.558511695771465 -22.88451092874549, -43.55844557416502 -22.88432613123527, -43.558361657628694 -22.884148704626348, -43.5582607543246 -22.88398035763396, -43.55814383600672 -22.88382271153167, -43.55801202866237 -22.883677284537626, -43.55786660166832 -22.883545477193273, -43.557708955566035 -22.883428558875394, -43.55754060857365 -22.883327655571303, -43.55736318196473 -22.883243739034977, -43.55717838445451 -22.883177617428537, -43.55698799574403 -22.883129927539194, -43.55679384938066 -22.883101128646654, -43.5565978151 -22.8830914981, -43.556401780819336 -22.883101128646654, -43.556207634455966 -22.883129927539194, -43.55601724574549 -22.883177617428537, -43.555832448235265 -22.883243739034977, -43.55565502162634 -22.883327655571303, -43.55548667463396 -22.883428558875394, -43.55532902853167 -22.883545477193273, -43.55518360153763 -22.883677284537626, -43.555051794193275 -22.88382271153167, -43.5549348758754 -22.88398035763396, -43.5548339725713 -22.884148704626348, -43.554750056034976 -22.88432613123527, -43.55468393442853 -22.88451092874549, -43.55463624453919 -22.884701317455967, -43.55460744564665 -22.88489546381934, -43.554597815099996 -22.8850914981))" +001653,Campo Grande,Zona Oeste,88a8a02917fffff,TRUE,278,-22.8850915,-43.55659782,PO,S,Rio Campinho,"POLYGON ((-43.554597815099996 -22.8850914981, -43.55460744564665 -22.88528753238066, -43.55463624453919 -22.885481678744032, -43.55468393442853 -22.885672067454507, -43.554750056034976 -22.88585686496473, -43.5548339725713 -22.88603429157365, -43.5549348758754 -22.88620263856604, -43.555051794193275 -22.886360284668328, -43.55518360153763 -22.886505711662373, -43.55532902853167 -22.886637519006726, -43.55548667463396 -22.886754437324605, -43.55565502162634 -22.886855340628696, -43.555832448235265 -22.88693925716502, -43.55601724574549 -22.887005378771462, -43.556207634455966 -22.887053068660805, -43.556401780819336 -22.887081867553345, -43.5565978151 -22.8870914981, -43.55679384938066 -22.887081867553345, -43.55698799574403 -22.887053068660805, -43.55717838445451 -22.887005378771462, -43.55736318196473 -22.88693925716502, -43.55754060857365 -22.886855340628696, -43.557708955566035 -22.886754437324605, -43.55786660166832 -22.886637519006726, -43.55801202866237 -22.886505711662373, -43.55814383600672 -22.886360284668328, -43.5582607543246 -22.88620263856604, -43.558361657628694 -22.88603429157365, -43.55844557416502 -22.88585686496473, -43.558511695771465 -22.885672067454507, -43.55855938566081 -22.885481678744032, -43.558588184553344 -22.88528753238066, -43.5585978151 -22.8850914981, -43.558588184553344 -22.88489546381934, -43.55855938566081 -22.884701317455967, -43.558511695771465 -22.88451092874549, -43.55844557416502 -22.88432613123527, -43.558361657628694 -22.884148704626348, -43.5582607543246 -22.88398035763396, -43.55814383600672 -22.88382271153167, -43.55801202866237 -22.883677284537626, -43.55786660166832 -22.883545477193273, -43.557708955566035 -22.883428558875394, -43.55754060857365 -22.883327655571303, -43.55736318196473 -22.883243739034977, -43.55717838445451 -22.883177617428537, -43.55698799574403 -22.883129927539194, -43.55679384938066 -22.883101128646654, -43.5565978151 -22.8830914981, -43.556401780819336 -22.883101128646654, -43.556207634455966 -22.883129927539194, -43.55601724574549 -22.883177617428537, -43.555832448235265 -22.883243739034977, -43.55565502162634 -22.883327655571303, -43.55548667463396 -22.883428558875394, -43.55532902853167 -22.883545477193273, -43.55518360153763 -22.883677284537626, -43.555051794193275 -22.88382271153167, -43.5549348758754 -22.88398035763396, -43.5548339725713 -22.884148704626348, -43.554750056034976 -22.88432613123527, -43.55468393442853 -22.88451092874549, -43.55463624453919 -22.884701317455967, -43.55460744564665 -22.88489546381934, -43.554597815099996 -22.8850914981))" +001654,Catete,Zona Sul,88a8a06a49fffff,TRUE,5,-22.92977593,-43.17739661,PC,G,Rio Carioca,"POLYGON ((-43.1753966127 -22.9297759342, -43.175406243246655 -22.929971968480658, -43.17543504213919 -22.93016611484403, -43.175482732028534 -22.930356503554506, -43.17554885363498 -22.93054130106473, -43.175632770171305 -22.93071872767365, -43.1757336734754 -22.93088707466604, -43.17585059179328 -22.931044720768327, -43.17598239913763 -22.931190147762372, -43.176127826131676 -22.931321955106725, -43.176285472233964 -22.931438873424604, -43.176453819226346 -22.931539776728695, -43.17663124583527 -22.93162369326502, -43.17681604334549 -22.93168981487146, -43.17700643205597 -22.931737504760804, -43.17720057841934 -22.931766303653344, -43.1773966127 -22.931775934199997, -43.17759264698066 -22.931766303653344, -43.17778679334403 -22.931737504760804, -43.17797718205451 -22.93168981487146, -43.178161979564734 -22.93162369326502, -43.178339406173656 -22.931539776728695, -43.17850775316604 -22.931438873424604, -43.178665399268326 -22.931321955106725, -43.17881082626237 -22.931190147762372, -43.178942633606724 -22.931044720768327, -43.1790595519246 -22.93088707466604, -43.1791604552287 -22.93071872767365, -43.17924437176502 -22.93054130106473, -43.17931049337147 -22.930356503554506, -43.17935818326081 -22.93016611484403, -43.179386982153346 -22.929971968480658, -43.1793966127 -22.9297759342, -43.179386982153346 -22.92957989991934, -43.17935818326081 -22.929385753555966, -43.17931049337147 -22.92919536484549, -43.17924437176502 -22.92901056733527, -43.1791604552287 -22.928833140726347, -43.1790595519246 -22.928664793733958, -43.178942633606724 -22.92850714763167, -43.17881082626237 -22.928361720637625, -43.178665399268326 -22.928229913293272, -43.17850775316604 -22.928112994975393, -43.178339406173656 -22.928012091671302, -43.178161979564734 -22.927928175134976, -43.17797718205451 -22.927862053528536, -43.17778679334403 -22.927814363639193, -43.17759264698066 -22.927785564746653, -43.1773966127 -22.9277759342, -43.17720057841934 -22.927785564746653, -43.17700643205597 -22.927814363639193, -43.17681604334549 -22.927862053528536, -43.17663124583527 -22.927928175134976, -43.176453819226346 -22.928012091671302, -43.176285472233964 -22.928112994975393, -43.176127826131676 -22.928229913293272, -43.17598239913763 -22.928361720637625, -43.17585059179328 -22.92850714763167, -43.1757336734754 -22.928664793733958, -43.175632770171305 -22.928833140726347, -43.17554885363498 -22.92901056733527, -43.175482732028534 -22.92919536484549, -43.17543504213919 -22.929385753555966, -43.175406243246655 -22.92957989991934, -43.1753966127 -22.9297759342))" +001655,Botafogo,Zona Sul,88a8a07885fffff,TRUE,3,-22.9545708,-43.18746808,PC,G,Praia de Botafogo,"POLYGON ((-43.185468082499995 -22.9545708016, -43.18547771304665 -22.95476683588066, -43.18550651193919 -22.95496098224403, -43.18555420182853 -22.955151370954507, -43.185620323434975 -22.95533616846473, -43.1857042399713 -22.95551359507365, -43.185805143275395 -22.95568194206604, -43.185922061593274 -22.955839588168327, -43.18605386893763 -22.955985015162373, -43.18619929593167 -22.956116822506726, -43.18635694203396 -22.956233740824604, -43.18652528902634 -22.956334644128695, -43.18670271563526 -22.95641856066502, -43.186887513145486 -22.956484682271462, -43.187077901855965 -22.956532372160805, -43.187272048219334 -22.956561171053345, -43.1874680825 -22.956570801599998, -43.18766411678066 -22.956561171053345, -43.18785826314403 -22.956532372160805, -43.18804865185451 -22.956484682271462, -43.18823344936473 -22.95641856066502, -43.18841087597365 -22.956334644128695, -43.188579222966034 -22.956233740824604, -43.18873686906832 -22.956116822506726, -43.18888229606237 -22.955985015162373, -43.18901410340672 -22.955839588168327, -43.1891310217246 -22.95568194206604, -43.18923192502869 -22.95551359507365, -43.18931584156502 -22.95533616846473, -43.18938196317146 -22.955151370954507, -43.189429653060806 -22.95496098224403, -43.18945845195334 -22.95476683588066, -43.1894680825 -22.9545708016, -43.18945845195334 -22.95437476731934, -43.189429653060806 -22.954180620955967, -43.18938196317146 -22.95399023224549, -43.18931584156502 -22.95380543473527, -43.18923192502869 -22.953628008126348, -43.1891310217246 -22.95345966113396, -43.18901410340672 -22.95330201503167, -43.18888229606237 -22.953156588037626, -43.18873686906832 -22.953024780693273, -43.188579222966034 -22.952907862375394, -43.18841087597365 -22.952806959071303, -43.18823344936473 -22.952723042534977, -43.18804865185451 -22.952656920928536, -43.18785826314403 -22.952609231039194, -43.18766411678066 -22.952580432146654, -43.1874680825 -22.9525708016, -43.187272048219334 -22.952580432146654, -43.187077901855965 -22.952609231039194, -43.186887513145486 -22.952656920928536, -43.18670271563526 -22.952723042534977, -43.18652528902634 -22.952806959071303, -43.18635694203396 -22.952907862375394, -43.18619929593167 -22.953024780693273, -43.18605386893763 -22.953156588037626, -43.185922061593274 -22.95330201503167, -43.185805143275395 -22.95345966113396, -43.1857042399713 -22.953628008126348, -43.185620323434975 -22.95380543473527, -43.18555420182853 -22.95399023224549, -43.18550651193919 -22.954180620955967, -43.18547771304665 -22.95437476731934, -43.185468082499995 -22.9545708016))" +001656,Flamengo,Zona Sul,88a8a06a49fffff,,,,,,,, +001657,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001658,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001659,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001660,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001661,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001662,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001663,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001664,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001665,Pilares,Zona Norte,88a8a061c3fffff,,,,,,,, +001666,Pilares,Zona Norte,88a8a061c3fffff,,,,,,,, +001667,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,152,-22.89504469,-43.29443455,PM,G,Canal do Cunha,"POLYGON ((-43.2924345485 -22.8950446886, -43.292444179046655 -22.895240722880658, -43.29247297793919 -22.89543486924403, -43.29252066782853 -22.895625257954507, -43.29258678943498 -22.89581005546473, -43.292670705971304 -22.89598748207365, -43.2927716092754 -22.89615582906604, -43.29288852759328 -22.896313475168327, -43.29302033493763 -22.896458902162372, -43.293165761931675 -22.896590709506725, -43.29332340803396 -22.896707627824604, -43.293491755026345 -22.896808531128695, -43.293669181635266 -22.89689244766502, -43.29385397914549 -22.89695856927146, -43.29404436785597 -22.897006259160804, -43.29423851421934 -22.897035058053344, -43.2944345485 -22.897044688599998, -43.29463058278066 -22.897035058053344, -43.29482472914403 -22.897006259160804, -43.29501511785451 -22.89695856927146, -43.295199915364734 -22.89689244766502, -43.295377341973655 -22.896808531128695, -43.29554568896604 -22.896707627824604, -43.295703335068325 -22.896590709506725, -43.29584876206237 -22.896458902162372, -43.29598056940672 -22.896313475168327, -43.2960974877246 -22.89615582906604, -43.296198391028696 -22.89598748207365, -43.29628230756502 -22.89581005546473, -43.296348429171466 -22.895625257954507, -43.29639611906081 -22.89543486924403, -43.296424917953345 -22.895240722880658, -43.2964345485 -22.8950446886, -43.296424917953345 -22.89484865431934, -43.29639611906081 -22.894654507955966, -43.296348429171466 -22.89446411924549, -43.29628230756502 -22.89427932173527, -43.296198391028696 -22.894101895126347, -43.2960974877246 -22.89393354813396, -43.29598056940672 -22.89377590203167, -43.29584876206237 -22.893630475037625, -43.295703335068325 -22.893498667693272, -43.29554568896604 -22.893381749375393, -43.295377341973655 -22.893280846071303, -43.295199915364734 -22.893196929534977, -43.29501511785451 -22.893130807928536, -43.29482472914403 -22.893083118039193, -43.29463058278066 -22.893054319146653, -43.2944345485 -22.8930446886, -43.29423851421934 -22.893054319146653, -43.29404436785597 -22.893083118039193, -43.29385397914549 -22.893130807928536, -43.293669181635266 -22.893196929534977, -43.293491755026345 -22.893280846071303, -43.29332340803396 -22.893381749375393, -43.293165761931675 -22.893498667693272, -43.29302033493763 -22.893630475037625, -43.29288852759328 -22.89377590203167, -43.2927716092754 -22.89393354813396, -43.292670705971304 -22.894101895126347, -43.29258678943498 -22.89427932173527, -43.29252066782853 -22.89446411924549, -43.29247297793919 -22.894654507955966, -43.292444179046655 -22.89484865431934, -43.2924345485 -22.8950446886))" +001668,Engenho de Dentro,Zona Norte,88a8a061cbfffff,TRUE,42,-22.89200353,-43.28755951,PC,G,Canal do Cunha,"POLYGON ((-43.2855595131 -22.8920035324, -43.285569143646654 -22.89219956668066, -43.28559794253919 -22.892393713044033, -43.28564563242853 -22.892584101754508, -43.28571175403498 -22.89276889926473, -43.285795670571304 -22.892946325873652, -43.2858965738754 -22.89311467286604, -43.28601349219328 -22.89327231896833, -43.28614529953763 -22.893417745962374, -43.286290726531675 -22.893549553306727, -43.28644837263396 -22.893666471624606, -43.286616719626345 -22.893767374928697, -43.286794146235266 -22.893851291465023, -43.28697894374549 -22.893917413071463, -43.28716933245597 -22.893965102960806, -43.28736347881934 -22.893993901853346, -43.2875595131 -22.8940035324, -43.28775554738066 -22.893993901853346, -43.28794969374403 -22.893965102960806, -43.28814008245451 -22.893917413071463, -43.28832487996473 -22.893851291465023, -43.288502306573655 -22.893767374928697, -43.28867065356604 -22.893666471624606, -43.288828299668324 -22.893549553306727, -43.28897372666237 -22.893417745962374, -43.28910553400672 -22.89327231896833, -43.2892224523246 -22.89311467286604, -43.289323355628696 -22.892946325873652, -43.28940727216502 -22.89276889926473, -43.289473393771466 -22.892584101754508, -43.28952108366081 -22.892393713044033, -43.289549882553345 -22.89219956668066, -43.2895595131 -22.8920035324, -43.289549882553345 -22.89180749811934, -43.28952108366081 -22.891613351755968, -43.289473393771466 -22.891422963045493, -43.28940727216502 -22.89123816553527, -43.289323355628696 -22.89106073892635, -43.2892224523246 -22.89089239193396, -43.28910553400672 -22.890734745831672, -43.28897372666237 -22.890589318837627, -43.288828299668324 -22.890457511493274, -43.28867065356604 -22.890340593175395, -43.288502306573655 -22.890239689871304, -43.28832487996473 -22.89015577333498, -43.28814008245451 -22.890089651728537, -43.28794969374403 -22.890041961839195, -43.28775554738066 -22.890013162946655, -43.2875595131 -22.8900035324, -43.28736347881934 -22.890013162946655, -43.28716933245597 -22.890041961839195, -43.28697894374549 -22.890089651728537, -43.286794146235266 -22.89015577333498, -43.286616719626345 -22.890239689871304, -43.28644837263396 -22.890340593175395, -43.286290726531675 -22.890457511493274, -43.28614529953763 -22.890589318837627, -43.28601349219328 -22.890734745831672, -43.2858965738754 -22.89089239193396, -43.285795670571304 -22.89106073892635, -43.28571175403498 -22.89123816553527, -43.28564563242853 -22.891422963045493, -43.28559794253919 -22.891613351755968, -43.285569143646654 -22.89180749811934, -43.2855595131 -22.8920035324))" +001669,Todos os Santos,Zona Norte,88a8a061c9fffff,,,,,,,, +001670,Pilares,Zona Norte,88a8a061cbfffff,TRUE,9,-22.89024466,-43.29378408,PM,G,Canal do Cunha,"POLYGON ((-43.2917840828 -22.8902446621, -43.29179371334666 -22.890440696380658, -43.29182251223919 -22.89063484274403, -43.291870202128536 -22.890825231454507, -43.29193632373498 -22.89101002896473, -43.292020240271306 -22.89118745557365, -43.2921211435754 -22.89135580256604, -43.29223806189328 -22.891513448668327, -43.29236986923763 -22.891658875662372, -43.29251529623168 -22.891790683006725, -43.292672942333965 -22.891907601324604, -43.29284128932635 -22.892008504628695, -43.29301871593527 -22.89209242116502, -43.29320351344549 -22.892158542771462, -43.29339390215597 -22.892206232660804, -43.29358804851934 -22.892235031553344, -43.2937840828 -22.892244662099998, -43.293980117080665 -22.892235031553344, -43.294174263444035 -22.892206232660804, -43.29436465215451 -22.892158542771462, -43.294549449664736 -22.89209242116502, -43.29472687627366 -22.892008504628695, -43.29489522326604 -22.891907601324604, -43.29505286936833 -22.891790683006725, -43.29519829636237 -22.891658875662372, -43.295330103706725 -22.891513448668327, -43.295447022024604 -22.89135580256604, -43.2955479253287 -22.89118745557365, -43.295631841865024 -22.89101002896473, -43.29569796347147 -22.890825231454507, -43.29574565336081 -22.89063484274403, -43.29577445225335 -22.890440696380658, -43.295784082800004 -22.8902446621, -43.29577445225335 -22.89004862781934, -43.29574565336081 -22.889854481455966, -43.29569796347147 -22.88966409274549, -43.295631841865024 -22.88947929523527, -43.2955479253287 -22.889301868626347, -43.295447022024604 -22.88913352163396, -43.295330103706725 -22.88897587553167, -43.29519829636237 -22.888830448537625, -43.29505286936833 -22.888698641193272, -43.29489522326604 -22.888581722875394, -43.29472687627366 -22.888480819571303, -43.294549449664736 -22.888396903034977, -43.29436465215451 -22.888330781428536, -43.294174263444035 -22.888283091539193, -43.293980117080665 -22.888254292646653, -43.2937840828 -22.8882446621, -43.29358804851934 -22.888254292646653, -43.29339390215597 -22.888283091539193, -43.29320351344549 -22.888330781428536, -43.29301871593527 -22.888396903034977, -43.29284128932635 -22.888480819571303, -43.292672942333965 -22.888581722875394, -43.29251529623168 -22.888698641193272, -43.29236986923763 -22.888830448537625, -43.29223806189328 -22.88897587553167, -43.2921211435754 -22.88913352163396, -43.292020240271306 -22.889301868626347, -43.29193632373498 -22.88947929523527, -43.291870202128536 -22.88966409274549, -43.29182251223919 -22.889854481455966, -43.29179371334666 -22.89004862781934, -43.2917840828 -22.8902446621))" +001671,Ramos,Zona Norte,88a8a061a5fffff,,,,,,,, +001672,Irajá,Zona Norte,88a8a06e41fffff,,,,,,,, +001673,Irajá,Zona Norte,88a8a06e45fffff,,,,,,,, +001674,Santa Cruz,Zona Oeste,88a8a02ab3fffff,,,,,,,, +001675,Inhoaíba,Zona Oeste,88a8a02805fffff,,,,,,,, +001676,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +001677,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +001678,Campo Grande,Zona Oeste,88a8a0290bfffff,,,,,,,, +001679,Campo Grande,Zona Oeste,88a8a02909fffff,,,,,,,, +001681,Tijuca,Grande Tijuca,88a8a06335fffff,,,,,,,, +001683,Tijuca,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001684,Tijuca,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001685,Alto da Boa Vista,Grande Tijuca,88a8a06331fffff,,,,,,,, +001687,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001688,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001689,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001690,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001691,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001692,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001693,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001694,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001695,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001696,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001697,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001698,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001699,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001700,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001701,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001702,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001703,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001704,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001705,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001706,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001710,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +001711,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +001714,Alto da Boa Vista,Grande Tijuca,88a8a06331fffff,,,,,,,, +001715,Alto da Boa Vista,Grande Tijuca,88a8a06331fffff,,,,,,,, +001716,Alto da Boa Vista,Grande Tijuca,88a8a06331fffff,,,,,,,, +001717,Alto da Boa Vista,Grande Tijuca,88a8a06331fffff,,,,,,,, +001718,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001719,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001720,Ricardo de Albuquerque,Zona Norte,88a8a06555fffff,,,,,,,, +001721,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001722,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001723,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001724,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001725,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001727,Anchieta,Zona Norte,88a8a0651dfffff,,,,,,,, +001728,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001729,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001730,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001731,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001732,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001733,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001734,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001735,Alto da Boa Vista,Grande Tijuca,88a8a0633dfffff,,,,,,,, +001736,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001737,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001738,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001739,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001740,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001741,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001742,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001743,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001746,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001747,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001748,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001749,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001750,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001751,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001753,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001754,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001756,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001757,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001758,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001760,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001761,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001762,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001763,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001765,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001766,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001767,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001768,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001769,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001770,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001771,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001772,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001773,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001774,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001775,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001776,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001777,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001778,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001780,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001781,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001782,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001783,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001784,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001785,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001786,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001788,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001789,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001790,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001799,Alto da Boa Vista,Grande Tijuca,88a8a06357fffff,,,,,,,, +001800,Alto da Boa Vista,Grande Tijuca,88a8a06357fffff,,,,,,,, +001801,Alto da Boa Vista,Grande Tijuca,88a8a06357fffff,,,,,,,, +001803,Alto da Boa Vista,Grande Tijuca,88a8a06357fffff,,,,,,,, +001809,Alto da Boa Vista,Grande Tijuca,88a8a06357fffff,,,,,,,, +001810,Alto da Boa Vista,Grande Tijuca,88a8a06351fffff,,,,,,,, +001811,Alto da Boa Vista,Grande Tijuca,88a8a06351fffff,,,,,,,, +001815,Alto da Boa Vista,Grande Tijuca,88a8a06351fffff,,,,,,,, +001816,Alto da Boa Vista,Grande Tijuca,88a8a06351fffff,,,,,,,, +001817,Alto da Boa Vista,Grande Tijuca,88a8a06351fffff,,,,,,,, +001819,Alto da Boa Vista,Grande Tijuca,88a8a0635bfffff,,,,,,,, +001821,Alto da Boa Vista,Grande Tijuca,88a8a0635bfffff,,,,,,,, +001825,Alto da Boa Vista,Grande Tijuca,88a8a06357fffff,,,,,,,, +001826,Alto da Boa Vista,Grande Tijuca,88a8a06351fffff,,,,,,,, +001832,Alto da Boa Vista,Grande Tijuca,88a8a0635bfffff,,,,,,,, +001835,Itanhangá,Barra da Tijuca,88a8a0635bfffff,,,,,,,, +001838,Itanhangá,Barra da Tijuca,88a8a0635bfffff,,,,,,,, +001841,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001843,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001844,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001845,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001852,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001853,Itanhangá,Barra da Tijuca,88a8a06267fffff,,,,,,,, +001857,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001858,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001860,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001861,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001862,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001865,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001866,Itanhangá,Barra da Tijuca,88a8a06265fffff,TRUE,99,-22.98788742,-43.30006009,PC,J,Rio da Cachoeira,"POLYGON ((-43.29806009 -22.9878874185, -43.29806972054666 -22.98808345278066, -43.29809851943919 -22.988277599144034, -43.298146209328536 -22.98846798785451, -43.29821233093498 -22.98865278536473, -43.298296247471306 -22.988830211973653, -43.2983971507754 -22.988998558966042, -43.29851406909328 -22.98915620506833, -43.29864587643763 -22.989301632062375, -43.29879130343168 -22.989433439406728, -43.298948949533965 -22.989550357724607, -43.29911729652635 -22.989651261028698, -43.29929472313527 -22.989735177565024, -43.29947952064549 -22.989801299171464, -43.29966990935597 -22.989848989060807, -43.29986405571934 -22.989877787953347, -43.30006009 -22.9898874185, -43.300256124280665 -22.989877787953347, -43.300450270644035 -22.989848989060807, -43.300640659354514 -22.989801299171464, -43.300825456864736 -22.989735177565024, -43.30100288347366 -22.989651261028698, -43.30117123046604 -22.989550357724607, -43.30132887656833 -22.989433439406728, -43.30147430356237 -22.989301632062375, -43.301606110906725 -22.98915620506833, -43.301723029224604 -22.988998558966042, -43.3018239325287 -22.988830211973653, -43.301907849065024 -22.98865278536473, -43.30197397067147 -22.98846798785451, -43.30202166056081 -22.988277599144034, -43.30205045945335 -22.98808345278066, -43.302060090000005 -22.9878874185, -43.30205045945335 -22.987691384219342, -43.30202166056081 -22.98749723785597, -43.30197397067147 -22.987306849145494, -43.301907849065024 -22.98712205163527, -43.3018239325287 -22.98694462502635, -43.301723029224604 -22.98677627803396, -43.301606110906725 -22.986618631931673, -43.30147430356237 -22.986473204937628, -43.30132887656833 -22.986341397593275, -43.30117123046604 -22.986224479275396, -43.30100288347366 -22.986123575971305, -43.300825456864736 -22.98603965943498, -43.300640659354514 -22.98597353782854, -43.300450270644035 -22.985925847939196, -43.300256124280665 -22.985897049046656, -43.30006009 -22.985887418500003, -43.29986405571934 -22.985897049046656, -43.29966990935597 -22.985925847939196, -43.29947952064549 -22.98597353782854, -43.29929472313527 -22.98603965943498, -43.29911729652635 -22.986123575971305, -43.298948949533965 -22.986224479275396, -43.29879130343168 -22.986341397593275, -43.29864587643763 -22.986473204937628, -43.29851406909328 -22.986618631931673, -43.2983971507754 -22.98677627803396, -43.298296247471306 -22.98694462502635, -43.29821233093498 -22.98712205163527, -43.298146209328536 -22.987306849145494, -43.29809851943919 -22.98749723785597, -43.29806972054666 -22.987691384219342, -43.29806009 -22.9878874185))" +001867,Itanhangá,Barra da Tijuca,88a8a06261fffff,,,,,,,, +001868,Alto da Boa Vista,Grande Tijuca,88a8a06303fffff,,,,,,,, +001870,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001872,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001873,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001874,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001875,Alto da Boa Vista,Grande Tijuca,88a8a06339fffff,,,,,,,, +001876,Alto da Boa Vista,Grande Tijuca,88a8a0631dfffff,,,,,,,, +001878,Itanhangá,Barra da Tijuca,88a8a06261fffff,,,,,,,, +001880,Ricardo de Albuquerque,Zona Norte,88a8a06555fffff,TRUE,181,-22.83924475,-43.39863784,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3966378364 -22.8392447479, -43.39664746694665 -22.83944078218066, -43.39667626583919 -22.839634928544033, -43.39672395572853 -22.83982531725451, -43.39679007733498 -22.84001011476473, -43.3968739938713 -22.840187541373652, -43.3969748971754 -22.84035588836604, -43.397091815493276 -22.84051353446833, -43.39722362283763 -22.840658961462374, -43.397369049831674 -22.840790768806727, -43.39752669593396 -22.840907687124606, -43.397695042926344 -22.841008590428697, -43.397872469535265 -22.841092506965023, -43.39805726704549 -22.841158628571463, -43.398247655755966 -22.841206318460806, -43.398441802119336 -22.841235117353346, -43.3986378364 -22.8412447479, -43.39883387068066 -22.841235117353346, -43.39902801704403 -22.841206318460806, -43.39921840575451 -22.841158628571463, -43.39940320326473 -22.841092506965023, -43.399580629873654 -22.841008590428697, -43.399748976866036 -22.840907687124606, -43.399906622968324 -22.840790768806727, -43.40005204996237 -22.840658961462374, -43.40018385730672 -22.84051353446833, -43.4003007756246 -22.84035588836604, -43.400401678928695 -22.840187541373652, -43.40048559546502 -22.84001011476473, -43.400551717071465 -22.83982531725451, -43.40059940696081 -22.839634928544033, -43.400628205853344 -22.83944078218066, -43.4006378364 -22.8392447479, -43.400628205853344 -22.83904871361934, -43.40059940696081 -22.838854567255968, -43.400551717071465 -22.838664178545493, -43.40048559546502 -22.83847938103527, -43.400401678928695 -22.83830195442635, -43.4003007756246 -22.83813360743396, -43.40018385730672 -22.837975961331672, -43.40005204996237 -22.837830534337627, -43.399906622968324 -22.837698726993274, -43.399748976866036 -22.837581808675395, -43.399580629873654 -22.837480905371304, -43.39940320326473 -22.83739698883498, -43.39921840575451 -22.837330867228538, -43.39902801704403 -22.837283177339195, -43.39883387068066 -22.837254378446655, -43.3986378364 -22.8372447479, -43.398441802119336 -22.837254378446655, -43.398247655755966 -22.837283177339195, -43.39805726704549 -22.837330867228538, -43.397872469535265 -22.83739698883498, -43.397695042926344 -22.837480905371304, -43.39752669593396 -22.837581808675395, -43.397369049831674 -22.837698726993274, -43.39722362283763 -22.837830534337627, -43.397091815493276 -22.837975961331672, -43.3969748971754 -22.83813360743396, -43.3968739938713 -22.83830195442635, -43.39679007733498 -22.83847938103527, -43.39672395572853 -22.838664178545493, -43.39667626583919 -22.838854567255968, -43.39664746694665 -22.83904871361934, -43.3966378364 -22.8392447479))" +001881,Parque Anchieta,Zona Norte,88a8a0650bfffff,,,,,,,, +001882,Anchieta,Zona Norte,88a8a0651dfffff,,,,,,,, +001883,Grajaú,Grande Tijuca,88a8a06151fffff,TRUE,13,-22.91855178,-43.26236411,PC,G,Canal do Mangue,"POLYGON ((-43.2603641068 -22.9185517816, -43.260373737346654 -22.91874781588066, -43.26040253623919 -22.918941962244034, -43.26045022612853 -22.91913235095451, -43.26051634773498 -22.91931714846473, -43.260600264271304 -22.919494575073653, -43.2607011675754 -22.919662922066042, -43.26081808589328 -22.91982056816833, -43.26094989323763 -22.919965995162375, -43.261095320231675 -22.920097802506728, -43.26125296633396 -22.920214720824607, -43.261421313326345 -22.920315624128698, -43.261598739935266 -22.920399540665024, -43.26178353744549 -22.920465662271464, -43.26197392615597 -22.920513352160807, -43.26216807251934 -22.920542151053347, -43.2623641068 -22.9205517816, -43.26256014108066 -22.920542151053347, -43.26275428744403 -22.920513352160807, -43.26294467615451 -22.920465662271464, -43.26312947366473 -22.920399540665024, -43.263306900273655 -22.920315624128698, -43.26347524726604 -22.920214720824607, -43.263632893368325 -22.920097802506728, -43.26377832036237 -22.919965995162375, -43.26391012770672 -22.91982056816833, -43.2640270460246 -22.919662922066042, -43.264127949328696 -22.919494575073653, -43.26421186586502 -22.91931714846473, -43.264277987471466 -22.91913235095451, -43.26432567736081 -22.918941962244034, -43.264354476253345 -22.91874781588066, -43.2643641068 -22.9185517816, -43.264354476253345 -22.918355747319342, -43.26432567736081 -22.91816160095597, -43.264277987471466 -22.917971212245494, -43.26421186586502 -22.91778641473527, -43.264127949328696 -22.91760898812635, -43.2640270460246 -22.91744064113396, -43.26391012770672 -22.917282995031673, -43.26377832036237 -22.917137568037628, -43.263632893368325 -22.917005760693275, -43.26347524726604 -22.916888842375396, -43.263306900273655 -22.916787939071305, -43.26312947366473 -22.91670402253498, -43.26294467615451 -22.91663790092854, -43.26275428744403 -22.916590211039196, -43.26256014108066 -22.916561412146656, -43.2623641068 -22.916551781600003, -43.26216807251934 -22.916561412146656, -43.26197392615597 -22.916590211039196, -43.26178353744549 -22.91663790092854, -43.261598739935266 -22.91670402253498, -43.261421313326345 -22.916787939071305, -43.26125296633396 -22.916888842375396, -43.261095320231675 -22.917005760693275, -43.26094989323763 -22.917137568037628, -43.26081808589328 -22.917282995031673, -43.2607011675754 -22.91744064113396, -43.260600264271304 -22.91760898812635, -43.26051634773498 -22.91778641473527, -43.26045022612853 -22.917971212245494, -43.26040253623919 -22.91816160095597, -43.260373737346654 -22.918355747319342, -43.2603641068 -22.9185517816))" +001884,Grajaú,Grande Tijuca,88a8a06151fffff,TRUE,13,-22.91855178,-43.26236411,PC,G,Canal do Mangue,"POLYGON ((-43.2603641068 -22.9185517816, -43.260373737346654 -22.91874781588066, -43.26040253623919 -22.918941962244034, -43.26045022612853 -22.91913235095451, -43.26051634773498 -22.91931714846473, -43.260600264271304 -22.919494575073653, -43.2607011675754 -22.919662922066042, -43.26081808589328 -22.91982056816833, -43.26094989323763 -22.919965995162375, -43.261095320231675 -22.920097802506728, -43.26125296633396 -22.920214720824607, -43.261421313326345 -22.920315624128698, -43.261598739935266 -22.920399540665024, -43.26178353744549 -22.920465662271464, -43.26197392615597 -22.920513352160807, -43.26216807251934 -22.920542151053347, -43.2623641068 -22.9205517816, -43.26256014108066 -22.920542151053347, -43.26275428744403 -22.920513352160807, -43.26294467615451 -22.920465662271464, -43.26312947366473 -22.920399540665024, -43.263306900273655 -22.920315624128698, -43.26347524726604 -22.920214720824607, -43.263632893368325 -22.920097802506728, -43.26377832036237 -22.919965995162375, -43.26391012770672 -22.91982056816833, -43.2640270460246 -22.919662922066042, -43.264127949328696 -22.919494575073653, -43.26421186586502 -22.91931714846473, -43.264277987471466 -22.91913235095451, -43.26432567736081 -22.918941962244034, -43.264354476253345 -22.91874781588066, -43.2643641068 -22.9185517816, -43.264354476253345 -22.918355747319342, -43.26432567736081 -22.91816160095597, -43.264277987471466 -22.917971212245494, -43.26421186586502 -22.91778641473527, -43.264127949328696 -22.91760898812635, -43.2640270460246 -22.91744064113396, -43.26391012770672 -22.917282995031673, -43.26377832036237 -22.917137568037628, -43.263632893368325 -22.917005760693275, -43.26347524726604 -22.916888842375396, -43.263306900273655 -22.916787939071305, -43.26312947366473 -22.91670402253498, -43.26294467615451 -22.91663790092854, -43.26275428744403 -22.916590211039196, -43.26256014108066 -22.916561412146656, -43.2623641068 -22.916551781600003, -43.26216807251934 -22.916561412146656, -43.26197392615597 -22.916590211039196, -43.26178353744549 -22.91663790092854, -43.261598739935266 -22.91670402253498, -43.261421313326345 -22.916787939071305, -43.26125296633396 -22.916888842375396, -43.261095320231675 -22.917005760693275, -43.26094989323763 -22.917137568037628, -43.26081808589328 -22.917282995031673, -43.2607011675754 -22.91744064113396, -43.260600264271304 -22.91760898812635, -43.26051634773498 -22.91778641473527, -43.26045022612853 -22.917971212245494, -43.26040253623919 -22.91816160095597, -43.260373737346654 -22.918355747319342, -43.2603641068 -22.9185517816))" +001885,Méier,Zona Norte,88a8a06027fffff,TRUE,397,-22.90120306,-43.27883973,PO,G,,"POLYGON ((-43.2768397306997 -22.9012030573715, -43.276849361246356 -22.90139909165216, -43.27687816013889 -22.901593238015533, -43.276925850028235 -22.901783626726008, -43.27699197163468 -22.90196842423623, -43.277075888171005 -22.90214585084515, -43.2771767914751 -22.90231419783754, -43.27729370979298 -22.90247184393983, -43.27742551713733 -22.902617270933874, -43.27757094413138 -22.902749078278227, -43.277728590233664 -22.902865996596105, -43.277896937226046 -22.902966899900196, -43.27807436383497 -22.903050816436522, -43.27825916134519 -22.903116938042963, -43.27844955005567 -22.903164627932306, -43.27864369641904 -22.903193426824846, -43.2788397306997 -22.9032030573715, -43.279035764980364 -22.903193426824846, -43.279229911343734 -22.903164627932306, -43.27942030005421 -22.903116938042963, -43.279605097564435 -22.903050816436522, -43.279782524173356 -22.902966899900196, -43.27995087116574 -22.902865996596105, -43.280108517268026 -22.902749078278227, -43.28025394426207 -22.902617270933874, -43.280385751606424 -22.90247184393983, -43.2805026699243 -22.90231419783754, -43.2806035732284 -22.90214585084515, -43.28068748976472 -22.90196842423623, -43.28075361137117 -22.901783626726008, -43.28080130126051 -22.901593238015533, -43.28083010015305 -22.90139909165216, -43.280839730699704 -22.9012030573715, -43.28083010015305 -22.90100702309084, -43.28080130126051 -22.900812876727468, -43.28075361137117 -22.900622488016992, -43.28068748976472 -22.90043769050677, -43.2806035732284 -22.90026026389785, -43.2805026699243 -22.90009191690546, -43.280385751606424 -22.899934270803172, -43.28025394426207 -22.899788843809127, -43.280108517268026 -22.899657036464774, -43.27995087116574 -22.899540118146895, -43.279782524173356 -22.899439214842804, -43.279605097564435 -22.899355298306478, -43.27942030005421 -22.899289176700037, -43.279229911343734 -22.899241486810695, -43.279035764980364 -22.899212687918155, -43.2788397306997 -22.8992030573715, -43.27864369641904 -22.899212687918155, -43.27844955005567 -22.899241486810695, -43.27825916134519 -22.899289176700037, -43.27807436383497 -22.899355298306478, -43.277896937226046 -22.899439214842804, -43.277728590233664 -22.899540118146895, -43.27757094413138 -22.899657036464774, -43.27742551713733 -22.899788843809127, -43.27729370979298 -22.899934270803172, -43.2771767914751 -22.90009191690546, -43.277075888171005 -22.90026026389785, -43.27699197163468 -22.90043769050677, -43.276925850028235 -22.900622488016992, -43.27687816013889 -22.900812876727468, -43.276849361246356 -22.90100702309084, -43.2768397306997 -22.9012030573715))" +001886,Praça da Bandeira,Grande Tijuca,88a8a06167fffff,,,,,,,, +001887,Praça da Bandeira,Grande Tijuca,88a8a06167fffff,,,,,,,, +001888,Tijuca,Grande Tijuca,88a8a06167fffff,,,,,,,, +001889,Campo Grande,Zona Oeste,88a8a02917fffff,,,,,,,, +001890,Campo Grande,Zona Oeste,88a8a029edfffff,,,,,,,, +001891,Campo Grande,Zona Oeste,88a8a029edfffff,,,,,,,, +001892,Campo Grande,Zona Oeste,88a8a029edfffff,,,,,,,, +001894,Campo Grande,Zona Oeste,88a8a029edfffff,,,,,,,, +001895,Campo Grande,Zona Oeste,88a8a029edfffff,,,,,,,, +001896,Campo Grande,Zona Oeste,88a8a029edfffff,,,,,,,, +001897,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +001898,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +001899,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +001900,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +001901,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +001902,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +001903,Campo Grande,Zona Oeste,88a8a066dbfffff,,,,,,,, +001904,Campo Grande,Zona Oeste,88a8a066dbfffff,,,,,,,, +001905,Campo Grande,Zona Oeste,88a8a02913fffff,,,,,,,, +001906,Campo Grande,Zona Oeste,88a8a02913fffff,,,,,,,, +001907,Campo Grande,Zona Oeste,88a8a02913fffff,,,,,,,, +001908,Campo Grande,Zona Oeste,88a8a029c5fffff,TRUE,261,-22.88308542,-43.57309198,PO,S,Rio Campinho,"POLYGON ((-43.5710919764 -22.8830854193, -43.571101606946655 -22.883281453580658, -43.57113040583919 -22.88347559994403, -43.571178095728534 -22.883665988654506, -43.57124421733498 -22.88385078616473, -43.571328133871305 -22.88402821277365, -43.5714290371754 -22.88419655976604, -43.57154595549328 -22.884354205868327, -43.57167776283763 -22.884499632862372, -43.571823189831676 -22.884631440206725, -43.571980835933964 -22.884748358524604, -43.572149182926346 -22.884849261828695, -43.57232660953527 -22.88493317836502, -43.57251140704549 -22.88499929997146, -43.57270179575597 -22.885046989860804, -43.57289594211934 -22.885075788753344, -43.5730919764 -22.885085419299998, -43.57328801068066 -22.885075788753344, -43.57348215704403 -22.885046989860804, -43.57367254575451 -22.88499929997146, -43.573857343264734 -22.88493317836502, -43.574034769873656 -22.884849261828695, -43.57420311686604 -22.884748358524604, -43.574360762968325 -22.884631440206725, -43.57450618996237 -22.884499632862372, -43.57463799730672 -22.884354205868327, -43.5747549156246 -22.88419655976604, -43.5748558189287 -22.88402821277365, -43.57493973546502 -22.88385078616473, -43.57500585707147 -22.883665988654506, -43.57505354696081 -22.88347559994403, -43.575082345853346 -22.883281453580658, -43.5750919764 -22.8830854193, -43.575082345853346 -22.88288938501934, -43.57505354696081 -22.882695238655966, -43.57500585707147 -22.88250484994549, -43.57493973546502 -22.88232005243527, -43.5748558189287 -22.882142625826347, -43.5747549156246 -22.881974278833958, -43.57463799730672 -22.88181663273167, -43.57450618996237 -22.881671205737625, -43.574360762968325 -22.881539398393272, -43.57420311686604 -22.881422480075393, -43.574034769873656 -22.881321576771303, -43.573857343264734 -22.881237660234977, -43.57367254575451 -22.881171538628536, -43.57348215704403 -22.881123848739193, -43.57328801068066 -22.881095049846653, -43.5730919764 -22.8810854193, -43.57289594211934 -22.881095049846653, -43.57270179575597 -22.881123848739193, -43.57251140704549 -22.881171538628536, -43.57232660953527 -22.881237660234977, -43.572149182926346 -22.881321576771303, -43.571980835933964 -22.881422480075393, -43.571823189831676 -22.881539398393272, -43.57167776283763 -22.881671205737625, -43.57154595549328 -22.88181663273167, -43.5714290371754 -22.881974278833958, -43.571328133871305 -22.882142625826347, -43.57124421733498 -22.88232005243527, -43.571178095728534 -22.88250484994549, -43.57113040583919 -22.882695238655966, -43.571101606946655 -22.88288938501934, -43.5710919764 -22.8830854193))" +001909,Campo Grande,Zona Oeste,88a8a029c5fffff,TRUE,261,-22.88308542,-43.57309198,PO,S,Rio Campinho,"POLYGON ((-43.5710919764 -22.8830854193, -43.571101606946655 -22.883281453580658, -43.57113040583919 -22.88347559994403, -43.571178095728534 -22.883665988654506, -43.57124421733498 -22.88385078616473, -43.571328133871305 -22.88402821277365, -43.5714290371754 -22.88419655976604, -43.57154595549328 -22.884354205868327, -43.57167776283763 -22.884499632862372, -43.571823189831676 -22.884631440206725, -43.571980835933964 -22.884748358524604, -43.572149182926346 -22.884849261828695, -43.57232660953527 -22.88493317836502, -43.57251140704549 -22.88499929997146, -43.57270179575597 -22.885046989860804, -43.57289594211934 -22.885075788753344, -43.5730919764 -22.885085419299998, -43.57328801068066 -22.885075788753344, -43.57348215704403 -22.885046989860804, -43.57367254575451 -22.88499929997146, -43.573857343264734 -22.88493317836502, -43.574034769873656 -22.884849261828695, -43.57420311686604 -22.884748358524604, -43.574360762968325 -22.884631440206725, -43.57450618996237 -22.884499632862372, -43.57463799730672 -22.884354205868327, -43.5747549156246 -22.88419655976604, -43.5748558189287 -22.88402821277365, -43.57493973546502 -22.88385078616473, -43.57500585707147 -22.883665988654506, -43.57505354696081 -22.88347559994403, -43.575082345853346 -22.883281453580658, -43.5750919764 -22.8830854193, -43.575082345853346 -22.88288938501934, -43.57505354696081 -22.882695238655966, -43.57500585707147 -22.88250484994549, -43.57493973546502 -22.88232005243527, -43.5748558189287 -22.882142625826347, -43.5747549156246 -22.881974278833958, -43.57463799730672 -22.88181663273167, -43.57450618996237 -22.881671205737625, -43.574360762968325 -22.881539398393272, -43.57420311686604 -22.881422480075393, -43.574034769873656 -22.881321576771303, -43.573857343264734 -22.881237660234977, -43.57367254575451 -22.881171538628536, -43.57348215704403 -22.881123848739193, -43.57328801068066 -22.881095049846653, -43.5730919764 -22.8810854193, -43.57289594211934 -22.881095049846653, -43.57270179575597 -22.881123848739193, -43.57251140704549 -22.881171538628536, -43.57232660953527 -22.881237660234977, -43.572149182926346 -22.881321576771303, -43.571980835933964 -22.881422480075393, -43.571823189831676 -22.881539398393272, -43.57167776283763 -22.881671205737625, -43.57154595549328 -22.88181663273167, -43.5714290371754 -22.881974278833958, -43.571328133871305 -22.882142625826347, -43.57124421733498 -22.88232005243527, -43.571178095728534 -22.88250484994549, -43.57113040583919 -22.882695238655966, -43.571101606946655 -22.88288938501934, -43.5710919764 -22.8830854193))" +001910,Itanhangá,Barra da Tijuca,88a8a06261fffff,,,,,,,, +001913,Méier,Zona Norte,88a8a06027fffff,,,,,,,, +001914,Campo Grande,Zona Oeste,88a8a02913fffff,,,,,,,, +001915,Campo Grande,Zona Oeste,88a8a02911fffff,,,,,,,, +001916,Campo Grande,Zona Oeste,88a8a02911fffff,,,,,,,, +001917,Campo Grande,Zona Oeste,88a8a02911fffff,,,,,,,, +001918,Campo Grande,Zona Oeste,88a8a066dbfffff,,,,,,,, +001919,Campo Grande,Zona Oeste,88a8a066d1fffff,,,,,,,, +001920,Campo Grande,Zona Oeste,88a8a066d1fffff,,,,,,,, +001921,Campo Grande,Zona Oeste,88a8a066d1fffff,,,,,,,, +001924,Benfica,Centro,88a8a0613dfffff,,,,,,,, +001925,Benfica,Centro,88a8a0613dfffff,,,,,,,, +001926,Copacabana,Zona Sul,88a8a078e3fffff,,,,,,,, +001930,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +001931,Itanhangá,Barra da Tijuca,88a8a06265fffff,,,,,,,, +001937,Benfica,Centro,88a8a06139fffff,,,,,,,, +001938,Benfica,Centro,88a8a06139fffff,,,,,,,, +001939,Benfica,Centro,88a8a06139fffff,,,,,,,, +001941,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001942,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +001944,Campo Grande,Zona Oeste,88a8a02913fffff,,,,,,,, +001962,Centro,Centro,88a8a06a09fffff,,,,,,,, +001963,Centro,Centro,88a8a06a09fffff,,,,,,,, +001964,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001965,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +001966,Lapa,Centro,88a8a06a43fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +001967,Glória,Centro,88a8a06a47fffff,,,,,,,, +001968,Glória,Centro,88a8a06a43fffff,,,,,,,, +001970,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07615fffff,,,,,,,, +001971,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07615fffff,,,,,,,, +001972,Humaitá,Zona Sul,88a8a07881fffff,,,,,,,, +001973,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07617fffff,,,,,,,, +001974,Catete,Zona Sul,88a8a06a49fffff,,,,,,,, +001975,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0763bfffff,,,,,,,, +001976,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076edfffff,,,,,,,, +001977,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076edfffff,,,,,,,, +001978,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076edfffff,TRUE,390,-23.01535837,-43.49216438,PO,J,Canal de Sernambetiba,"POLYGON ((-43.49016437795787 -23.01535836799227, -43.490174008504525 -23.01555440227293, -43.49020280739706 -23.015748548636303, -43.490250497286404 -23.015938937346778, -43.49031661889285 -23.016123734857, -43.490400535429174 -23.016301161465922, -43.49050143873327 -23.01646950845831, -43.49061835705115 -23.0166271545606, -43.4907501643955 -23.016772581554644, -43.490895591389545 -23.016904388898997, -43.49105323749183 -23.017021307216876, -43.491221584484215 -23.017122210520967, -43.49139901109314 -23.017206127057293, -43.49158380860336 -23.017272248663733, -43.49177419731384 -23.017319938553076, -43.49196834367721 -23.017348737445616, -43.49216437795787 -23.01735836799227, -43.49236041223853 -23.017348737445616, -43.4925545586019 -23.017319938553076, -43.49274494731238 -23.017272248663733, -43.492929744822604 -23.017206127057293, -43.493107171431525 -23.017122210520967, -43.49327551842391 -23.017021307216876, -43.493433164526195 -23.016904388898997, -43.49357859152024 -23.016772581554644, -43.49371039886459 -23.0166271545606, -43.49382731718247 -23.01646950845831, -43.493928220486566 -23.016301161465922, -43.49401213702289 -23.016123734857, -43.49407825862934 -23.015938937346778, -43.49412594851868 -23.015748548636303, -43.494154747411216 -23.01555440227293, -43.49416437795787 -23.01535836799227, -43.494154747411216 -23.01516233371161, -43.49412594851868 -23.014968187348238, -43.49407825862934 -23.014777798637763, -43.49401213702289 -23.01459300112754, -43.493928220486566 -23.01441557451862, -43.49382731718247 -23.01424722752623, -43.49371039886459 -23.014089581423942, -43.49357859152024 -23.013944154429897, -43.493433164526195 -23.013812347085544, -43.49327551842391 -23.013695428767665, -43.493107171431525 -23.013594525463574, -43.492929744822604 -23.01351060892725, -43.49274494731238 -23.013444487320807, -43.4925545586019 -23.013396797431465, -43.49236041223853 -23.013367998538925, -43.49216437795787 -23.01335836799227, -43.49196834367721 -23.013367998538925, -43.49177419731384 -23.013396797431465, -43.49158380860336 -23.013444487320807, -43.49139901109314 -23.01351060892725, -43.491221584484215 -23.013594525463574, -43.49105323749183 -23.013695428767665, -43.490895591389545 -23.013812347085544, -43.4907501643955 -23.013944154429897, -43.49061835705115 -23.014089581423942, -43.49050143873327 -23.01424722752623, -43.490400535429174 -23.01441557451862, -43.49031661889285 -23.01459300112754, -43.490250497286404 -23.014777798637763, -43.49020280739706 -23.014968187348238, -43.490174008504525 -23.01516233371161, -43.49016437795787 -23.01535836799227))" +001979,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076e5fffff,,,,,,,, +001980,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076e5fffff,,,,,,,, +001981,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076e7fffff,,,,,,,, +001982,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076e7fffff,,,,,,,, +001984,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076adfffff,,,,,,,, +001985,Vargem Grande,Barra da Tijuca,88a8a076adfffff,,,,,,,, +001986,Vargem Pequena,Barra da Tijuca,88a8a076adfffff,,,,,,,, +001988,Vargem Grande,Barra da Tijuca,88a8a076a5fffff,TRUE,239,-22.99012154,-43.49213053,PC,J,Canal de Sernambetiba,"POLYGON ((-43.4901305331 -22.990121538, -43.49014016364666 -22.99031757228066, -43.490168962539194 -22.990511718644033, -43.490216652428536 -22.990702107354508, -43.49028277403498 -22.99088690486473, -43.49036669057131 -22.991064331473652, -43.4904675938754 -22.99123267846604, -43.49058451219328 -22.99139032456833, -43.49071631953763 -22.991535751562374, -43.49086174653168 -22.991667558906727, -43.491019392633966 -22.991784477224606, -43.49118773962635 -22.991885380528696, -43.49136516623527 -22.991969297065022, -43.49154996374549 -22.992035418671463, -43.49174035245597 -22.992083108560806, -43.49193449881934 -22.992111907453346, -43.4921305331 -22.992121538, -43.492326567380665 -22.992111907453346, -43.492520713744035 -22.992083108560806, -43.492711102454514 -22.992035418671463, -43.492895899964736 -22.991969297065022, -43.49307332657366 -22.991885380528696, -43.49324167356604 -22.991784477224606, -43.49339931966833 -22.991667558906727, -43.49354474666237 -22.991535751562374, -43.493676554006726 -22.99139032456833, -43.493793472324604 -22.99123267846604, -43.4938943756287 -22.991064331473652, -43.493978292165025 -22.99088690486473, -43.49404441377147 -22.990702107354508, -43.49409210366081 -22.990511718644033, -43.49412090255335 -22.99031757228066, -43.494130533100005 -22.990121538, -43.49412090255335 -22.98992550371934, -43.49409210366081 -22.989731357355968, -43.49404441377147 -22.989540968645493, -43.493978292165025 -22.98935617113527, -43.4938943756287 -22.98917874452635, -43.493793472324604 -22.98901039753396, -43.493676554006726 -22.988852751431672, -43.49354474666237 -22.988707324437627, -43.49339931966833 -22.988575517093274, -43.49324167356604 -22.988458598775395, -43.49307332657366 -22.988357695471304, -43.492895899964736 -22.98827377893498, -43.492711102454514 -22.988207657328537, -43.492520713744035 -22.988159967439195, -43.492326567380665 -22.988131168546655, -43.4921305331 -22.988121538, -43.49193449881934 -22.988131168546655, -43.49174035245597 -22.988159967439195, -43.49154996374549 -22.988207657328537, -43.49136516623527 -22.98827377893498, -43.49118773962635 -22.988357695471304, -43.491019392633966 -22.988458598775395, -43.49086174653168 -22.988575517093274, -43.49071631953763 -22.988707324437627, -43.49058451219328 -22.988852751431672, -43.4904675938754 -22.98901039753396, -43.49036669057131 -22.98917874452635, -43.49028277403498 -22.98935617113527, -43.490216652428536 -22.989540968645493, -43.490168962539194 -22.989731357355968, -43.49014016364666 -22.98992550371934, -43.4901305331 -22.990121538))" +001989,Vargem Grande,Barra da Tijuca,88a8a076a5fffff,,,,,,,, +001990,Vargem Pequena,Barra da Tijuca,88a8a076a5fffff,,,,,,,, +001991,Vargem Pequena,Barra da Tijuca,88a8a076a5fffff,,,,,,,, +001992,Vargem Pequena,Barra da Tijuca,88a8a076a5fffff,,,,,,,, +001993,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +001994,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +001995,Tijuca,Grande Tijuca,88a8a06145fffff,,,,,,,, +001996,Centro,Centro,88a8a06a55fffff,,,,,,,, +001997,Centro,Centro,88a8a06a55fffff,,,,,,,, +001998,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +001999,Coelho Neto,Zona Norte,88a8a06e53fffff,,,,,,,, +002000,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +002001,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +002002,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +002003,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +002004,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +002005,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +002015,Ramos,Zona Norte,88a8a061a5fffff,,,,,,,, +002016,Ramos,Zona Norte,88a8a061a5fffff,,,,,,,, +002017,Ramos,Zona Norte,88a8a061a5fffff,,,,,,,, +002018,Maré,Zona Norte,88a8a06a9bfffff,,,,,,,, +002019,Maré,Zona Norte,88a8a06a9bfffff,,,,,,,, +002020,Maré,Zona Norte,88a8a06a9bfffff,,,,,,,, +002021,Centro,Centro,88a8a06a01fffff,,,,,,,, +002022,Ramos,Zona Norte,88a8a061a1fffff,,,,,,,, +002023,Ramos,Zona Norte,88a8a061a1fffff,,,,,,,, +002024,Ramos,Zona Norte,88a8a061a1fffff,,,,,,,, +002025,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002026,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002027,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002028,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002029,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002030,Penha,Zona Norte,88a8a061b1fffff,,,,,,,, +002031,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002032,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002033,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002034,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002035,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002036,Penha,Zona Norte,88a8a061b7fffff,,,,,,,, +002037,Penha,Zona Norte,88a8a061b3fffff,,,,,,,, +002038,Penha,Zona Norte,88a8a061b3fffff,,,,,,,, +002039,Penha,Zona Norte,88a8a061b3fffff,,,,,,,, +002040,Penha Circular,Zona Norte,88a8a061b3fffff,,,,,,,, +002041,Penha Circular,Zona Norte,88a8a061b3fffff,,,,,,,, +002042,Penha Circular,Zona Norte,88a8a061b3fffff,,,,,,,, +002043,Penha Circular,Zona Norte,88a8a06e6dfffff,,,,,,,, +002044,Penha Circular,Zona Norte,88a8a06e6dfffff,,,,,,,, +002045,Penha Circular,Zona Norte,88a8a06e6dfffff,,,,,,,, +002046,Penha Circular,Zona Norte,88a8a06e6dfffff,,,,,,,, +002047,Penha Circular,Zona Norte,88a8a06e6dfffff,,,,,,,, +002048,Penha Circular,Zona Norte,88a8a06e6dfffff,,,,,,,, +002049,Vila Kosmos,Zona Norte,88a8a06193fffff,,,,,,,, +002050,Vila Kosmos,Zona Norte,88a8a06193fffff,,,,,,,, +002051,Vila Kosmos,Zona Norte,88a8a06193fffff,,,,,,,, +002052,Vicente de Carvalho,Zona Norte,88a8a06193fffff,,,,,,,, +002053,Vicente de Carvalho,Zona Norte,88a8a06193fffff,,,,,,,, +002054,Vicente de Carvalho,Zona Norte,88a8a06193fffff,,,,,,,, +002055,Vicente de Carvalho,Zona Norte,88a8a06193fffff,,,,,,,, +002056,Vicente de Carvalho,Zona Norte,88a8a06193fffff,,,,,,,, +002057,Vicente de Carvalho,Zona Norte,88a8a0619bfffff,,,,,,,, +002058,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +002059,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +002060,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +002061,Vaz Lobo,Zona Norte,88a8a060a3fffff,TRUE,149,-22.85689162,-43.32665266,PM,G,Rio Iraja/Canal da Penha_,"POLYGON ((-43.3246526588 -22.8568916191, -43.324662289346655 -22.85708765338066, -43.32469108823919 -22.857281799744033, -43.324738778128534 -22.85747218845451, -43.32480489973498 -22.85765698596473, -43.324888816271304 -22.857834412573652, -43.3249897195754 -22.85800275956604, -43.32510663789328 -22.85816040566833, -43.32523844523763 -22.858305832662374, -43.325383872231676 -22.858437640006727, -43.325541518333964 -22.858554558324606, -43.325709865326345 -22.858655461628697, -43.32588729193527 -22.858739378165023, -43.32607208944549 -22.858805499771464, -43.32626247815597 -22.858853189660806, -43.32645662451934 -22.858881988553346, -43.3266526588 -22.8588916191, -43.32684869308066 -22.858881988553346, -43.32704283944403 -22.858853189660806, -43.32723322815451 -22.858805499771464, -43.327418025664734 -22.858739378165023, -43.327595452273655 -22.858655461628697, -43.32776379926604 -22.858554558324606, -43.327921445368325 -22.858437640006727, -43.32806687236237 -22.858305832662374, -43.32819867970672 -22.85816040566833, -43.3283155980246 -22.85800275956604, -43.3284165013287 -22.857834412573652, -43.32850041786502 -22.85765698596473, -43.32856653947147 -22.85747218845451, -43.32861422936081 -22.857281799744033, -43.328643028253346 -22.85708765338066, -43.3286526588 -22.8568916191, -43.328643028253346 -22.85669558481934, -43.32861422936081 -22.856501438455968, -43.32856653947147 -22.856311049745493, -43.32850041786502 -22.85612625223527, -43.3284165013287 -22.85594882562635, -43.3283155980246 -22.85578047863396, -43.32819867970672 -22.855622832531672, -43.32806687236237 -22.855477405537627, -43.327921445368325 -22.855345598193274, -43.32776379926604 -22.855228679875395, -43.327595452273655 -22.855127776571305, -43.327418025664734 -22.85504386003498, -43.32723322815451 -22.854977738428538, -43.32704283944403 -22.854930048539195, -43.32684869308066 -22.854901249646655, -43.3266526588 -22.8548916191, -43.32645662451934 -22.854901249646655, -43.32626247815597 -22.854930048539195, -43.32607208944549 -22.854977738428538, -43.32588729193527 -22.85504386003498, -43.325709865326345 -22.855127776571305, -43.325541518333964 -22.855228679875395, -43.325383872231676 -22.855345598193274, -43.32523844523763 -22.855477405537627, -43.32510663789328 -22.855622832531672, -43.3249897195754 -22.85578047863396, -43.324888816271304 -22.85594882562635, -43.32480489973498 -22.85612625223527, -43.324738778128534 -22.856311049745493, -43.32469108823919 -22.856501438455968, -43.324662289346655 -22.85669558481934, -43.3246526588 -22.8568916191))" +002062,Vaz Lobo,Zona Norte,88a8a060a3fffff,TRUE,149,-22.85689162,-43.32665266,PM,G,Rio Iraja/Canal da Penha_,"POLYGON ((-43.3246526588 -22.8568916191, -43.324662289346655 -22.85708765338066, -43.32469108823919 -22.857281799744033, -43.324738778128534 -22.85747218845451, -43.32480489973498 -22.85765698596473, -43.324888816271304 -22.857834412573652, -43.3249897195754 -22.85800275956604, -43.32510663789328 -22.85816040566833, -43.32523844523763 -22.858305832662374, -43.325383872231676 -22.858437640006727, -43.325541518333964 -22.858554558324606, -43.325709865326345 -22.858655461628697, -43.32588729193527 -22.858739378165023, -43.32607208944549 -22.858805499771464, -43.32626247815597 -22.858853189660806, -43.32645662451934 -22.858881988553346, -43.3266526588 -22.8588916191, -43.32684869308066 -22.858881988553346, -43.32704283944403 -22.858853189660806, -43.32723322815451 -22.858805499771464, -43.327418025664734 -22.858739378165023, -43.327595452273655 -22.858655461628697, -43.32776379926604 -22.858554558324606, -43.327921445368325 -22.858437640006727, -43.32806687236237 -22.858305832662374, -43.32819867970672 -22.85816040566833, -43.3283155980246 -22.85800275956604, -43.3284165013287 -22.857834412573652, -43.32850041786502 -22.85765698596473, -43.32856653947147 -22.85747218845451, -43.32861422936081 -22.857281799744033, -43.328643028253346 -22.85708765338066, -43.3286526588 -22.8568916191, -43.328643028253346 -22.85669558481934, -43.32861422936081 -22.856501438455968, -43.32856653947147 -22.856311049745493, -43.32850041786502 -22.85612625223527, -43.3284165013287 -22.85594882562635, -43.3283155980246 -22.85578047863396, -43.32819867970672 -22.855622832531672, -43.32806687236237 -22.855477405537627, -43.327921445368325 -22.855345598193274, -43.32776379926604 -22.855228679875395, -43.327595452273655 -22.855127776571305, -43.327418025664734 -22.85504386003498, -43.32723322815451 -22.854977738428538, -43.32704283944403 -22.854930048539195, -43.32684869308066 -22.854901249646655, -43.3266526588 -22.8548916191, -43.32645662451934 -22.854901249646655, -43.32626247815597 -22.854930048539195, -43.32607208944549 -22.854977738428538, -43.32588729193527 -22.85504386003498, -43.325709865326345 -22.855127776571305, -43.325541518333964 -22.855228679875395, -43.325383872231676 -22.855345598193274, -43.32523844523763 -22.855477405537627, -43.32510663789328 -22.855622832531672, -43.3249897195754 -22.85578047863396, -43.324888816271304 -22.85594882562635, -43.32480489973498 -22.85612625223527, -43.324738778128534 -22.856311049745493, -43.32469108823919 -22.856501438455968, -43.324662289346655 -22.85669558481934, -43.3246526588 -22.8568916191))" +002063,Vaz Lobo,Zona Norte,88a8a060a3fffff,TRUE,51,-22.85478563,-43.32679062,PM,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3247906186 -22.8547856252, -43.324800249146655 -22.85498165948066, -43.32482904803919 -22.855175805844034, -43.324876737928534 -22.85536619455451, -43.32494285953498 -22.85555099206473, -43.325026776071304 -22.855728418673653, -43.3251276793754 -22.855896765666042, -43.32524459769328 -22.85605441176833, -43.32537640503763 -22.856199838762375, -43.325521832031676 -22.856331646106728, -43.325679478133964 -22.856448564424607, -43.325847825126345 -22.856549467728698, -43.32602525173527 -22.856633384265024, -43.32621004924549 -22.856699505871465, -43.32640043795597 -22.856747195760807, -43.32659458431934 -22.856775994653347, -43.3267906186 -22.8567856252, -43.32698665288066 -22.856775994653347, -43.32718079924403 -22.856747195760807, -43.32737118795451 -22.856699505871465, -43.327555985464734 -22.856633384265024, -43.327733412073655 -22.856549467728698, -43.32790175906604 -22.856448564424607, -43.328059405168325 -22.856331646106728, -43.32820483216237 -22.856199838762375, -43.32833663950672 -22.85605441176833, -43.3284535578246 -22.855896765666042, -43.3285544611287 -22.855728418673653, -43.32863837766502 -22.85555099206473, -43.32870449927147 -22.85536619455451, -43.32875218916081 -22.855175805844034, -43.328780988053346 -22.85498165948066, -43.3287906186 -22.8547856252, -43.328780988053346 -22.854589590919343, -43.32875218916081 -22.85439544455597, -43.32870449927147 -22.854205055845494, -43.32863837766502 -22.85402025833527, -43.3285544611287 -22.85384283172635, -43.3284535578246 -22.85367448473396, -43.32833663950672 -22.853516838631673, -43.32820483216237 -22.853371411637628, -43.328059405168325 -22.853239604293275, -43.32790175906604 -22.853122685975396, -43.327733412073655 -22.853021782671306, -43.327555985464734 -22.85293786613498, -43.32737118795451 -22.85287174452854, -43.32718079924403 -22.852824054639196, -43.32698665288066 -22.852795255746656, -43.3267906186 -22.852785625200003, -43.32659458431934 -22.852795255746656, -43.32640043795597 -22.852824054639196, -43.32621004924549 -22.85287174452854, -43.32602525173527 -22.85293786613498, -43.325847825126345 -22.853021782671306, -43.325679478133964 -22.853122685975396, -43.325521832031676 -22.853239604293275, -43.32537640503763 -22.853371411637628, -43.32524459769328 -22.853516838631673, -43.3251276793754 -22.85367448473396, -43.325026776071304 -22.85384283172635, -43.32494285953498 -22.85402025833527, -43.324876737928534 -22.854205055845494, -43.32482904803919 -22.85439544455597, -43.324800249146655 -22.854589590919343, -43.3247906186 -22.8547856252))" +002064,Madureira,Zona Norte,88a8a060a3fffff,,,,,,,, +002065,Madureira,Zona Norte,88a8a060a3fffff,,,,,,,, +002066,Madureira,Zona Norte,88a8a060a3fffff,,,,,,,, +002067,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +002068,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +002069,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +002073,Taquara,Jacarepaguá,88a8a06289fffff,TRUE,238,-22.93897358,-43.37165192,PC,J,Rio Guerengue,"POLYGON ((-43.3696519238 -22.9389735773, -43.369661554346656 -22.93916961158066, -43.36969035323919 -22.939363757944033, -43.369738043128535 -22.93955414665451, -43.36980416473498 -22.93973894416473, -43.369888081271306 -22.939916370773652, -43.3699889845754 -22.94008471776604, -43.37010590289328 -22.94024236386833, -43.37023771023763 -22.940387790862374, -43.37038313723168 -22.940519598206727, -43.370540783333965 -22.940636516524606, -43.37070913032635 -22.940737419828697, -43.37088655693527 -22.940821336365023, -43.37107135444549 -22.940887457971463, -43.37126174315597 -22.940935147860806, -43.37145588951934 -22.940963946753346, -43.3716519238 -22.9409735773, -43.371847958080664 -22.940963946753346, -43.372042104444034 -22.940935147860806, -43.37223249315451 -22.940887457971463, -43.372417290664735 -22.940821336365023, -43.37259471727366 -22.940737419828697, -43.37276306426604 -22.940636516524606, -43.37292071036833 -22.940519598206727, -43.37306613736237 -22.940387790862374, -43.373197944706725 -22.94024236386833, -43.3733148630246 -22.94008471776604, -43.3734157663287 -22.939916370773652, -43.373499682865024 -22.93973894416473, -43.37356580447147 -22.93955414665451, -43.37361349436081 -22.939363757944033, -43.37364229325335 -22.93916961158066, -43.373651923800004 -22.9389735773, -43.37364229325335 -22.93877754301934, -43.37361349436081 -22.938583396655968, -43.37356580447147 -22.938393007945493, -43.373499682865024 -22.93820821043527, -43.3734157663287 -22.93803078382635, -43.3733148630246 -22.93786243683396, -43.373197944706725 -22.937704790731672, -43.37306613736237 -22.937559363737627, -43.37292071036833 -22.937427556393274, -43.37276306426604 -22.937310638075395, -43.37259471727366 -22.937209734771304, -43.372417290664735 -22.93712581823498, -43.37223249315451 -22.937059696628538, -43.372042104444034 -22.937012006739195, -43.371847958080664 -22.936983207846655, -43.3716519238 -22.9369735773, -43.37145588951934 -22.936983207846655, -43.37126174315597 -22.937012006739195, -43.37107135444549 -22.937059696628538, -43.37088655693527 -22.93712581823498, -43.37070913032635 -22.937209734771304, -43.370540783333965 -22.937310638075395, -43.37038313723168 -22.937427556393274, -43.37023771023763 -22.937559363737627, -43.37010590289328 -22.937704790731672, -43.3699889845754 -22.93786243683396, -43.369888081271306 -22.93803078382635, -43.36980416473498 -22.93820821043527, -43.369738043128535 -22.938393007945493, -43.36969035323919 -22.938583396655968, -43.369661554346656 -22.93877754301934, -43.3696519238 -22.9389735773))" +002074,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +002075,Taquara,Jacarepaguá,88a8a06289fffff,TRUE,238,-22.93897358,-43.37165192,PC,J,Rio Guerengue,"POLYGON ((-43.3696519238 -22.9389735773, -43.369661554346656 -22.93916961158066, -43.36969035323919 -22.939363757944033, -43.369738043128535 -22.93955414665451, -43.36980416473498 -22.93973894416473, -43.369888081271306 -22.939916370773652, -43.3699889845754 -22.94008471776604, -43.37010590289328 -22.94024236386833, -43.37023771023763 -22.940387790862374, -43.37038313723168 -22.940519598206727, -43.370540783333965 -22.940636516524606, -43.37070913032635 -22.940737419828697, -43.37088655693527 -22.940821336365023, -43.37107135444549 -22.940887457971463, -43.37126174315597 -22.940935147860806, -43.37145588951934 -22.940963946753346, -43.3716519238 -22.9409735773, -43.371847958080664 -22.940963946753346, -43.372042104444034 -22.940935147860806, -43.37223249315451 -22.940887457971463, -43.372417290664735 -22.940821336365023, -43.37259471727366 -22.940737419828697, -43.37276306426604 -22.940636516524606, -43.37292071036833 -22.940519598206727, -43.37306613736237 -22.940387790862374, -43.373197944706725 -22.94024236386833, -43.3733148630246 -22.94008471776604, -43.3734157663287 -22.939916370773652, -43.373499682865024 -22.93973894416473, -43.37356580447147 -22.93955414665451, -43.37361349436081 -22.939363757944033, -43.37364229325335 -22.93916961158066, -43.373651923800004 -22.9389735773, -43.37364229325335 -22.93877754301934, -43.37361349436081 -22.938583396655968, -43.37356580447147 -22.938393007945493, -43.373499682865024 -22.93820821043527, -43.3734157663287 -22.93803078382635, -43.3733148630246 -22.93786243683396, -43.373197944706725 -22.937704790731672, -43.37306613736237 -22.937559363737627, -43.37292071036833 -22.937427556393274, -43.37276306426604 -22.937310638075395, -43.37259471727366 -22.937209734771304, -43.372417290664735 -22.93712581823498, -43.37223249315451 -22.937059696628538, -43.372042104444034 -22.937012006739195, -43.371847958080664 -22.936983207846655, -43.3716519238 -22.9369735773, -43.37145588951934 -22.936983207846655, -43.37126174315597 -22.937012006739195, -43.37107135444549 -22.937059696628538, -43.37088655693527 -22.93712581823498, -43.37070913032635 -22.937209734771304, -43.370540783333965 -22.937310638075395, -43.37038313723168 -22.937427556393274, -43.37023771023763 -22.937559363737627, -43.37010590289328 -22.937704790731672, -43.3699889845754 -22.93786243683396, -43.369888081271306 -22.93803078382635, -43.36980416473498 -22.93820821043527, -43.369738043128535 -22.938393007945493, -43.36969035323919 -22.938583396655968, -43.369661554346656 -22.93877754301934, -43.3696519238 -22.9389735773))" +002076,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +002077,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +002078,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +002082,Tanque,Jacarepaguá,88a8a062bdfffff,TRUE,97,-22.91658872,-43.35996881,PM,J,Rio Grande,"POLYGON ((-43.357968811199996 -22.9165887227, -43.35797844174665 -22.916784756980658, -43.35800724063919 -22.91697890334403, -43.35805493052853 -22.917169292054506, -43.358121052134976 -22.91735408956473, -43.3582049686713 -22.91753151617365, -43.358305871975396 -22.91769986316604, -43.358422790293275 -22.917857509268327, -43.35855459763763 -22.918002936262372, -43.35870002463167 -22.918134743606725, -43.35885767073396 -22.918251661924604, -43.35902601772634 -22.918352565228695, -43.359203444335265 -22.91843648176502, -43.35938824184549 -22.91850260337146, -43.359578630555966 -22.918550293260804, -43.359772776919336 -22.918579092153344, -43.3599688112 -22.918588722699997, -43.36016484548066 -22.918579092153344, -43.36035899184403 -22.918550293260804, -43.36054938055451 -22.91850260337146, -43.36073417806473 -22.91843648176502, -43.36091160467365 -22.918352565228695, -43.361079951666035 -22.918251661924604, -43.36123759776832 -22.918134743606725, -43.36138302476237 -22.918002936262372, -43.36151483210672 -22.917857509268327, -43.3616317504246 -22.91769986316604, -43.361732653728694 -22.91753151617365, -43.36181657026502 -22.91735408956473, -43.361882691871465 -22.917169292054506, -43.36193038176081 -22.91697890334403, -43.36195918065334 -22.916784756980658, -43.3619688112 -22.9165887227, -43.36195918065334 -22.91639268841934, -43.36193038176081 -22.916198542055966, -43.361882691871465 -22.91600815334549, -43.36181657026502 -22.91582335583527, -43.361732653728694 -22.915645929226347, -43.3616317504246 -22.915477582233958, -43.36151483210672 -22.91531993613167, -43.36138302476237 -22.915174509137625, -43.36123759776832 -22.915042701793272, -43.361079951666035 -22.914925783475393, -43.36091160467365 -22.914824880171302, -43.36073417806473 -22.914740963634976, -43.36054938055451 -22.914674842028536, -43.36035899184403 -22.914627152139193, -43.36016484548066 -22.914598353246653, -43.3599688112 -22.9145887227, -43.359772776919336 -22.914598353246653, -43.359578630555966 -22.914627152139193, -43.35938824184549 -22.914674842028536, -43.359203444335265 -22.914740963634976, -43.35902601772634 -22.914824880171302, -43.35885767073396 -22.914925783475393, -43.35870002463167 -22.915042701793272, -43.35855459763763 -22.915174509137625, -43.358422790293275 -22.91531993613167, -43.358305871975396 -22.915477582233958, -43.3582049686713 -22.915645929226347, -43.358121052134976 -22.91582335583527, -43.35805493052853 -22.91600815334549, -43.35800724063919 -22.916198542055966, -43.35797844174665 -22.91639268841934, -43.357968811199996 -22.9165887227))" +002083,Tanque,Jacarepaguá,88a8a062bdfffff,TRUE,97,-22.91658872,-43.35996881,PM,J,Rio Grande,"POLYGON ((-43.357968811199996 -22.9165887227, -43.35797844174665 -22.916784756980658, -43.35800724063919 -22.91697890334403, -43.35805493052853 -22.917169292054506, -43.358121052134976 -22.91735408956473, -43.3582049686713 -22.91753151617365, -43.358305871975396 -22.91769986316604, -43.358422790293275 -22.917857509268327, -43.35855459763763 -22.918002936262372, -43.35870002463167 -22.918134743606725, -43.35885767073396 -22.918251661924604, -43.35902601772634 -22.918352565228695, -43.359203444335265 -22.91843648176502, -43.35938824184549 -22.91850260337146, -43.359578630555966 -22.918550293260804, -43.359772776919336 -22.918579092153344, -43.3599688112 -22.918588722699997, -43.36016484548066 -22.918579092153344, -43.36035899184403 -22.918550293260804, -43.36054938055451 -22.91850260337146, -43.36073417806473 -22.91843648176502, -43.36091160467365 -22.918352565228695, -43.361079951666035 -22.918251661924604, -43.36123759776832 -22.918134743606725, -43.36138302476237 -22.918002936262372, -43.36151483210672 -22.917857509268327, -43.3616317504246 -22.91769986316604, -43.361732653728694 -22.91753151617365, -43.36181657026502 -22.91735408956473, -43.361882691871465 -22.917169292054506, -43.36193038176081 -22.91697890334403, -43.36195918065334 -22.916784756980658, -43.3619688112 -22.9165887227, -43.36195918065334 -22.91639268841934, -43.36193038176081 -22.916198542055966, -43.361882691871465 -22.91600815334549, -43.36181657026502 -22.91582335583527, -43.361732653728694 -22.915645929226347, -43.3616317504246 -22.915477582233958, -43.36151483210672 -22.91531993613167, -43.36138302476237 -22.915174509137625, -43.36123759776832 -22.915042701793272, -43.361079951666035 -22.914925783475393, -43.36091160467365 -22.914824880171302, -43.36073417806473 -22.914740963634976, -43.36054938055451 -22.914674842028536, -43.36035899184403 -22.914627152139193, -43.36016484548066 -22.914598353246653, -43.3599688112 -22.9145887227, -43.359772776919336 -22.914598353246653, -43.359578630555966 -22.914627152139193, -43.35938824184549 -22.914674842028536, -43.359203444335265 -22.914740963634976, -43.35902601772634 -22.914824880171302, -43.35885767073396 -22.914925783475393, -43.35870002463167 -22.915042701793272, -43.35855459763763 -22.915174509137625, -43.358422790293275 -22.91531993613167, -43.358305871975396 -22.915477582233958, -43.3582049686713 -22.915645929226347, -43.358121052134976 -22.91582335583527, -43.35805493052853 -22.91600815334549, -43.35800724063919 -22.916198542055966, -43.35797844174665 -22.91639268841934, -43.357968811199996 -22.9165887227))" +002084,Tanque,Jacarepaguá,88a8a062bdfffff,TRUE,97,-22.91658872,-43.35996881,PM,J,Rio Grande,"POLYGON ((-43.357968811199996 -22.9165887227, -43.35797844174665 -22.916784756980658, -43.35800724063919 -22.91697890334403, -43.35805493052853 -22.917169292054506, -43.358121052134976 -22.91735408956473, -43.3582049686713 -22.91753151617365, -43.358305871975396 -22.91769986316604, -43.358422790293275 -22.917857509268327, -43.35855459763763 -22.918002936262372, -43.35870002463167 -22.918134743606725, -43.35885767073396 -22.918251661924604, -43.35902601772634 -22.918352565228695, -43.359203444335265 -22.91843648176502, -43.35938824184549 -22.91850260337146, -43.359578630555966 -22.918550293260804, -43.359772776919336 -22.918579092153344, -43.3599688112 -22.918588722699997, -43.36016484548066 -22.918579092153344, -43.36035899184403 -22.918550293260804, -43.36054938055451 -22.91850260337146, -43.36073417806473 -22.91843648176502, -43.36091160467365 -22.918352565228695, -43.361079951666035 -22.918251661924604, -43.36123759776832 -22.918134743606725, -43.36138302476237 -22.918002936262372, -43.36151483210672 -22.917857509268327, -43.3616317504246 -22.91769986316604, -43.361732653728694 -22.91753151617365, -43.36181657026502 -22.91735408956473, -43.361882691871465 -22.917169292054506, -43.36193038176081 -22.91697890334403, -43.36195918065334 -22.916784756980658, -43.3619688112 -22.9165887227, -43.36195918065334 -22.91639268841934, -43.36193038176081 -22.916198542055966, -43.361882691871465 -22.91600815334549, -43.36181657026502 -22.91582335583527, -43.361732653728694 -22.915645929226347, -43.3616317504246 -22.915477582233958, -43.36151483210672 -22.91531993613167, -43.36138302476237 -22.915174509137625, -43.36123759776832 -22.915042701793272, -43.361079951666035 -22.914925783475393, -43.36091160467365 -22.914824880171302, -43.36073417806473 -22.914740963634976, -43.36054938055451 -22.914674842028536, -43.36035899184403 -22.914627152139193, -43.36016484548066 -22.914598353246653, -43.3599688112 -22.9145887227, -43.359772776919336 -22.914598353246653, -43.359578630555966 -22.914627152139193, -43.35938824184549 -22.914674842028536, -43.359203444335265 -22.914740963634976, -43.35902601772634 -22.914824880171302, -43.35885767073396 -22.914925783475393, -43.35870002463167 -22.915042701793272, -43.35855459763763 -22.915174509137625, -43.358422790293275 -22.91531993613167, -43.358305871975396 -22.915477582233958, -43.3582049686713 -22.915645929226347, -43.358121052134976 -22.91582335583527, -43.35805493052853 -22.91600815334549, -43.35800724063919 -22.916198542055966, -43.35797844174665 -22.91639268841934, -43.357968811199996 -22.9165887227))" +002088,Madureira,Zona Norte,88a8a06085fffff,TRUE,422,-22.87602805,-43.33536402,PO,G,,"POLYGON ((-43.333364019053995 -22.8760280520269, -43.33337364960065 -22.87622408630756, -43.33340244849319 -22.876418232670932, -43.33345013838253 -22.876608621381408, -43.333516259988976 -22.87679341889163, -43.3336001765253 -22.87697084550055, -43.333701079829396 -22.87713919249294, -43.333817998147275 -22.877296838595228, -43.33394980549163 -22.877442265589274, -43.33409523248567 -22.877574072933626, -43.33425287858796 -22.877690991251505, -43.33442122558034 -22.877791894555596, -43.334598652189264 -22.877875811091922, -43.334783449699486 -22.877941932698363, -43.334973838409965 -22.877989622587705, -43.335167984773335 -22.878018421480245, -43.335364019054 -22.8780280520269, -43.33556005333466 -22.878018421480245, -43.33575419969803 -22.877989622587705, -43.33594458840851 -22.877941932698363, -43.33612938591873 -22.877875811091922, -43.33630681252765 -22.877791894555596, -43.336475159520035 -22.877690991251505, -43.33663280562232 -22.877574072933626, -43.33677823261637 -22.877442265589274, -43.33691003996072 -22.877296838595228, -43.3370269582786 -22.87713919249294, -43.337127861582694 -22.87697084550055, -43.33721177811902 -22.87679341889163, -43.337277899725464 -22.876608621381408, -43.33732558961481 -22.876418232670932, -43.33735438850734 -22.87622408630756, -43.337364019054 -22.8760280520269, -43.33735438850734 -22.87583201774624, -43.33732558961481 -22.875637871382867, -43.337277899725464 -22.875447482672392, -43.33721177811902 -22.87526268516217, -43.337127861582694 -22.87508525855325, -43.3370269582786 -22.87491691156086, -43.33691003996072 -22.87475926545857, -43.33677823261637 -22.874613838464526, -43.33663280562232 -22.874482031120174, -43.336475159520035 -22.874365112802295, -43.33630681252765 -22.874264209498204, -43.33612938591873 -22.874180292961878, -43.33594458840851 -22.874114171355437, -43.33575419969803 -22.874066481466095, -43.33556005333466 -22.874037682573555, -43.335364019054 -22.8740280520269, -43.335167984773335 -22.874037682573555, -43.334973838409965 -22.874066481466095, -43.334783449699486 -22.874114171355437, -43.334598652189264 -22.874180292961878, -43.33442122558034 -22.874264209498204, -43.33425287858796 -22.874365112802295, -43.33409523248567 -22.874482031120174, -43.33394980549163 -22.874613838464526, -43.333817998147275 -22.87475926545857, -43.333701079829396 -22.87491691156086, -43.3336001765253 -22.87508525855325, -43.333516259988976 -22.87526268516217, -43.33345013838253 -22.875447482672392, -43.33340244849319 -22.875637871382867, -43.33337364960065 -22.87583201774624, -43.333364019053995 -22.8760280520269))" +002089,Madureira,Zona Norte,88a8a06085fffff,TRUE,422,-22.87602805,-43.33536402,PO,G,,"POLYGON ((-43.333364019053995 -22.8760280520269, -43.33337364960065 -22.87622408630756, -43.33340244849319 -22.876418232670932, -43.33345013838253 -22.876608621381408, -43.333516259988976 -22.87679341889163, -43.3336001765253 -22.87697084550055, -43.333701079829396 -22.87713919249294, -43.333817998147275 -22.877296838595228, -43.33394980549163 -22.877442265589274, -43.33409523248567 -22.877574072933626, -43.33425287858796 -22.877690991251505, -43.33442122558034 -22.877791894555596, -43.334598652189264 -22.877875811091922, -43.334783449699486 -22.877941932698363, -43.334973838409965 -22.877989622587705, -43.335167984773335 -22.878018421480245, -43.335364019054 -22.8780280520269, -43.33556005333466 -22.878018421480245, -43.33575419969803 -22.877989622587705, -43.33594458840851 -22.877941932698363, -43.33612938591873 -22.877875811091922, -43.33630681252765 -22.877791894555596, -43.336475159520035 -22.877690991251505, -43.33663280562232 -22.877574072933626, -43.33677823261637 -22.877442265589274, -43.33691003996072 -22.877296838595228, -43.3370269582786 -22.87713919249294, -43.337127861582694 -22.87697084550055, -43.33721177811902 -22.87679341889163, -43.337277899725464 -22.876608621381408, -43.33732558961481 -22.876418232670932, -43.33735438850734 -22.87622408630756, -43.337364019054 -22.8760280520269, -43.33735438850734 -22.87583201774624, -43.33732558961481 -22.875637871382867, -43.337277899725464 -22.875447482672392, -43.33721177811902 -22.87526268516217, -43.337127861582694 -22.87508525855325, -43.3370269582786 -22.87491691156086, -43.33691003996072 -22.87475926545857, -43.33677823261637 -22.874613838464526, -43.33663280562232 -22.874482031120174, -43.336475159520035 -22.874365112802295, -43.33630681252765 -22.874264209498204, -43.33612938591873 -22.874180292961878, -43.33594458840851 -22.874114171355437, -43.33575419969803 -22.874066481466095, -43.33556005333466 -22.874037682573555, -43.335364019054 -22.8740280520269, -43.335167984773335 -22.874037682573555, -43.334973838409965 -22.874066481466095, -43.334783449699486 -22.874114171355437, -43.334598652189264 -22.874180292961878, -43.33442122558034 -22.874264209498204, -43.33425287858796 -22.874365112802295, -43.33409523248567 -22.874482031120174, -43.33394980549163 -22.874613838464526, -43.333817998147275 -22.87475926545857, -43.333701079829396 -22.87491691156086, -43.3336001765253 -22.87508525855325, -43.333516259988976 -22.87526268516217, -43.33345013838253 -22.875447482672392, -43.33340244849319 -22.875637871382867, -43.33337364960065 -22.87583201774624, -43.333364019053995 -22.8760280520269))" +002090,Madureira,Zona Norte,88a8a06085fffff,TRUE,422,-22.87602805,-43.33536402,PO,G,,"POLYGON ((-43.333364019053995 -22.8760280520269, -43.33337364960065 -22.87622408630756, -43.33340244849319 -22.876418232670932, -43.33345013838253 -22.876608621381408, -43.333516259988976 -22.87679341889163, -43.3336001765253 -22.87697084550055, -43.333701079829396 -22.87713919249294, -43.333817998147275 -22.877296838595228, -43.33394980549163 -22.877442265589274, -43.33409523248567 -22.877574072933626, -43.33425287858796 -22.877690991251505, -43.33442122558034 -22.877791894555596, -43.334598652189264 -22.877875811091922, -43.334783449699486 -22.877941932698363, -43.334973838409965 -22.877989622587705, -43.335167984773335 -22.878018421480245, -43.335364019054 -22.8780280520269, -43.33556005333466 -22.878018421480245, -43.33575419969803 -22.877989622587705, -43.33594458840851 -22.877941932698363, -43.33612938591873 -22.877875811091922, -43.33630681252765 -22.877791894555596, -43.336475159520035 -22.877690991251505, -43.33663280562232 -22.877574072933626, -43.33677823261637 -22.877442265589274, -43.33691003996072 -22.877296838595228, -43.3370269582786 -22.87713919249294, -43.337127861582694 -22.87697084550055, -43.33721177811902 -22.87679341889163, -43.337277899725464 -22.876608621381408, -43.33732558961481 -22.876418232670932, -43.33735438850734 -22.87622408630756, -43.337364019054 -22.8760280520269, -43.33735438850734 -22.87583201774624, -43.33732558961481 -22.875637871382867, -43.337277899725464 -22.875447482672392, -43.33721177811902 -22.87526268516217, -43.337127861582694 -22.87508525855325, -43.3370269582786 -22.87491691156086, -43.33691003996072 -22.87475926545857, -43.33677823261637 -22.874613838464526, -43.33663280562232 -22.874482031120174, -43.336475159520035 -22.874365112802295, -43.33630681252765 -22.874264209498204, -43.33612938591873 -22.874180292961878, -43.33594458840851 -22.874114171355437, -43.33575419969803 -22.874066481466095, -43.33556005333466 -22.874037682573555, -43.335364019054 -22.8740280520269, -43.335167984773335 -22.874037682573555, -43.334973838409965 -22.874066481466095, -43.334783449699486 -22.874114171355437, -43.334598652189264 -22.874180292961878, -43.33442122558034 -22.874264209498204, -43.33425287858796 -22.874365112802295, -43.33409523248567 -22.874482031120174, -43.33394980549163 -22.874613838464526, -43.333817998147275 -22.87475926545857, -43.333701079829396 -22.87491691156086, -43.3336001765253 -22.87508525855325, -43.333516259988976 -22.87526268516217, -43.33345013838253 -22.875447482672392, -43.33340244849319 -22.875637871382867, -43.33337364960065 -22.87583201774624, -43.333364019053995 -22.8760280520269))" +002094,Barra da Tijuca,Barra da Tijuca,88a8a0752bfffff,,,,,,,, +002095,Barra da Tijuca,Barra da Tijuca,88a8a0752bfffff,,,,,,,, +002096,Barra da Tijuca,Barra da Tijuca,88a8a0752bfffff,,,,,,,, +002097,Barra da Tijuca,Barra da Tijuca,88a8a0752bfffff,,,,,,,, +002098,Barra da Tijuca,Barra da Tijuca,88a8a0752bfffff,,,,,,,, +002099,Barra da Tijuca,Barra da Tijuca,88a8a0752bfffff,,,,,,,, +002100,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +002101,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +002102,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +002103,Jacarepaguá,Jacarepaguá,88a8a0752bfffff,,,,,,,, +002104,Jacarepaguá,Jacarepaguá,88a8a0752bfffff,,,,,,,, +002105,Jacarepaguá,Jacarepaguá,88a8a0752bfffff,,,,,,,, +002106,Jacarepaguá,Jacarepaguá,88a8a07521fffff,,,,,,,, +002107,Jacarepaguá,Jacarepaguá,88a8a07521fffff,TRUE,342,-22.97313232,-43.36346007,PO,J,Arroio Fundo,"POLYGON ((-43.361460067299994 -22.9731323183, -43.36146969784665 -22.97332835258066, -43.36149849673919 -22.973522498944032, -43.36154618662853 -22.973712887654507, -43.361612308234974 -22.97389768516473, -43.3616962247713 -22.97407511177365, -43.361797128075395 -22.97424345876604, -43.361914046393274 -22.974401104868328, -43.36204585373763 -22.974546531862373, -43.36219128073167 -22.974678339206726, -43.36234892683396 -22.974795257524605, -43.36251727382634 -22.974896160828695, -43.36269470043526 -22.97498007736502, -43.362879497945485 -22.975046198971462, -43.363069886655964 -22.975093888860805, -43.363264033019334 -22.975122687753345, -43.3634600673 -22.9751323183, -43.36365610158066 -22.975122687753345, -43.36385024794403 -22.975093888860805, -43.36404063665451 -22.975046198971462, -43.36422543416473 -22.97498007736502, -43.36440286077365 -22.974896160828695, -43.36457120776603 -22.974795257524605, -43.36472885386832 -22.974678339206726, -43.36487428086237 -22.974546531862373, -43.36500608820672 -22.974401104868328, -43.3651230065246 -22.97424345876604, -43.36522390982869 -22.97407511177365, -43.36530782636502 -22.97389768516473, -43.36537394797146 -22.973712887654507, -43.365421637860806 -22.973522498944032, -43.36545043675334 -22.97332835258066, -43.3654600673 -22.9731323183, -43.36545043675334 -22.97293628401934, -43.365421637860806 -22.972742137655967, -43.36537394797146 -22.97255174894549, -43.36530782636502 -22.97236695143527, -43.36522390982869 -22.972189524826348, -43.3651230065246 -22.97202117783396, -43.36500608820672 -22.97186353173167, -43.36487428086237 -22.971718104737626, -43.36472885386832 -22.971586297393273, -43.36457120776603 -22.971469379075394, -43.36440286077365 -22.971368475771303, -43.36422543416473 -22.971284559234977, -43.36404063665451 -22.971218437628536, -43.36385024794403 -22.971170747739194, -43.36365610158066 -22.971141948846654, -43.3634600673 -22.9711323183, -43.363264033019334 -22.971141948846654, -43.363069886655964 -22.971170747739194, -43.362879497945485 -22.971218437628536, -43.36269470043526 -22.971284559234977, -43.36251727382634 -22.971368475771303, -43.36234892683396 -22.971469379075394, -43.36219128073167 -22.971586297393273, -43.36204585373763 -22.971718104737626, -43.361914046393274 -22.97186353173167, -43.361797128075395 -22.97202117783396, -43.3616962247713 -22.972189524826348, -43.361612308234974 -22.97236695143527, -43.36154618662853 -22.97255174894549, -43.36149849673919 -22.972742137655967, -43.36146969784665 -22.97293628401934, -43.361460067299994 -22.9731323183))" +002109,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +002110,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +002111,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +002112,Jacarepaguá,Jacarepaguá,88a8a07535fffff,,,,,,,, +002113,Jacarepaguá,Jacarepaguá,88a8a07535fffff,,,,,,,, +002114,Jacarepaguá,Jacarepaguá,88a8a07535fffff,,,,,,,, +002115,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +002116,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +002117,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +002118,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +002119,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +002120,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +002121,Jacarepaguá,Jacarepaguá,88a8a062c3fffff,,,,,,,, +002122,Jacarepaguá,Jacarepaguá,88a8a062c3fffff,,,,,,,, +002123,Jacarepaguá,Jacarepaguá,88a8a062c3fffff,,,,,,,, +002124,Taquara,Jacarepaguá,88a8a06281fffff,,,,,,,, +002125,Taquara,Jacarepaguá,88a8a06281fffff,,,,,,,, +002126,Taquara,Jacarepaguá,88a8a06281fffff,,,,,,,, +002127,Taquara,Jacarepaguá,88a8a06283fffff,,,,,,,, +002128,Taquara,Jacarepaguá,88a8a06283fffff,,,,,,,, +002129,Taquara,Jacarepaguá,88a8a06283fffff,,,,,,,, +002130,Taquara,Jacarepaguá,88a8a06283fffff,,,,,,,, +002131,Taquara,Jacarepaguá,88a8a06283fffff,,,,,,,, +002132,Taquara,Jacarepaguá,88a8a06283fffff,,,,,,,, +002133,Taquara,Jacarepaguá,88a8a06287fffff,,,,,,,, +002134,Taquara,Jacarepaguá,88a8a06287fffff,,,,,,,, +002135,Taquara,Jacarepaguá,88a8a06287fffff,,,,,,,, +002136,Praça Seca,Jacarepaguá,88a8a062b5fffff,TRUE,184,-22.90345613,-43.35738219,PC,J,Rio Grande,"POLYGON ((-43.3553821947 -22.9034561343, -43.355391825246656 -22.90365216858066, -43.35542062413919 -22.903846314944033, -43.355468314028535 -22.90403670365451, -43.35553443563498 -22.90422150116473, -43.355618352171305 -22.904398927773652, -43.3557192554754 -22.90456727476604, -43.35583617379328 -22.90472492086833, -43.35596798113763 -22.904870347862374, -43.35611340813168 -22.905002155206727, -43.356271054233964 -22.905119073524606, -43.356439401226346 -22.905219976828697, -43.35661682783527 -22.905303893365023, -43.35680162534549 -22.905370014971464, -43.35699201405597 -22.905417704860806, -43.35718616041934 -22.905446503753346, -43.3573821947 -22.9054561343, -43.357578228980664 -22.905446503753346, -43.357772375344034 -22.905417704860806, -43.35796276405451 -22.905370014971464, -43.358147561564735 -22.905303893365023, -43.358324988173656 -22.905219976828697, -43.35849333516604 -22.905119073524606, -43.358650981268326 -22.905002155206727, -43.35879640826237 -22.904870347862374, -43.358928215606724 -22.90472492086833, -43.3590451339246 -22.90456727476604, -43.3591460372287 -22.904398927773652, -43.35922995376502 -22.90422150116473, -43.35929607537147 -22.90403670365451, -43.35934376526081 -22.903846314944033, -43.35937256415335 -22.90365216858066, -43.359382194700004 -22.9034561343, -43.35937256415335 -22.90326010001934, -43.35934376526081 -22.903065953655968, -43.35929607537147 -22.902875564945493, -43.35922995376502 -22.90269076743527, -43.3591460372287 -22.90251334082635, -43.3590451339246 -22.90234499383396, -43.358928215606724 -22.902187347731672, -43.35879640826237 -22.902041920737627, -43.358650981268326 -22.901910113393274, -43.35849333516604 -22.901793195075395, -43.358324988173656 -22.901692291771305, -43.358147561564735 -22.90160837523498, -43.35796276405451 -22.901542253628538, -43.357772375344034 -22.901494563739195, -43.357578228980664 -22.901465764846655, -43.3573821947 -22.901456134300002, -43.35718616041934 -22.901465764846655, -43.35699201405597 -22.901494563739195, -43.35680162534549 -22.901542253628538, -43.35661682783527 -22.90160837523498, -43.356439401226346 -22.901692291771305, -43.356271054233964 -22.901793195075395, -43.35611340813168 -22.901910113393274, -43.35596798113763 -22.902041920737627, -43.35583617379328 -22.902187347731672, -43.3557192554754 -22.90234499383396, -43.355618352171305 -22.90251334082635, -43.35553443563498 -22.90269076743527, -43.355468314028535 -22.902875564945493, -43.35542062413919 -22.903065953655968, -43.355391825246656 -22.90326010001934, -43.3553821947 -22.9034561343))" +002137,Praça Seca,Jacarepaguá,88a8a062b5fffff,TRUE,184,-22.90345613,-43.35738219,PC,J,Rio Grande,"POLYGON ((-43.3553821947 -22.9034561343, -43.355391825246656 -22.90365216858066, -43.35542062413919 -22.903846314944033, -43.355468314028535 -22.90403670365451, -43.35553443563498 -22.90422150116473, -43.355618352171305 -22.904398927773652, -43.3557192554754 -22.90456727476604, -43.35583617379328 -22.90472492086833, -43.35596798113763 -22.904870347862374, -43.35611340813168 -22.905002155206727, -43.356271054233964 -22.905119073524606, -43.356439401226346 -22.905219976828697, -43.35661682783527 -22.905303893365023, -43.35680162534549 -22.905370014971464, -43.35699201405597 -22.905417704860806, -43.35718616041934 -22.905446503753346, -43.3573821947 -22.9054561343, -43.357578228980664 -22.905446503753346, -43.357772375344034 -22.905417704860806, -43.35796276405451 -22.905370014971464, -43.358147561564735 -22.905303893365023, -43.358324988173656 -22.905219976828697, -43.35849333516604 -22.905119073524606, -43.358650981268326 -22.905002155206727, -43.35879640826237 -22.904870347862374, -43.358928215606724 -22.90472492086833, -43.3590451339246 -22.90456727476604, -43.3591460372287 -22.904398927773652, -43.35922995376502 -22.90422150116473, -43.35929607537147 -22.90403670365451, -43.35934376526081 -22.903846314944033, -43.35937256415335 -22.90365216858066, -43.359382194700004 -22.9034561343, -43.35937256415335 -22.90326010001934, -43.35934376526081 -22.903065953655968, -43.35929607537147 -22.902875564945493, -43.35922995376502 -22.90269076743527, -43.3591460372287 -22.90251334082635, -43.3590451339246 -22.90234499383396, -43.358928215606724 -22.902187347731672, -43.35879640826237 -22.902041920737627, -43.358650981268326 -22.901910113393274, -43.35849333516604 -22.901793195075395, -43.358324988173656 -22.901692291771305, -43.358147561564735 -22.90160837523498, -43.35796276405451 -22.901542253628538, -43.357772375344034 -22.901494563739195, -43.357578228980664 -22.901465764846655, -43.3573821947 -22.901456134300002, -43.35718616041934 -22.901465764846655, -43.35699201405597 -22.901494563739195, -43.35680162534549 -22.901542253628538, -43.35661682783527 -22.90160837523498, -43.356439401226346 -22.901692291771305, -43.356271054233964 -22.901793195075395, -43.35611340813168 -22.901910113393274, -43.35596798113763 -22.902041920737627, -43.35583617379328 -22.902187347731672, -43.3557192554754 -22.90234499383396, -43.355618352171305 -22.90251334082635, -43.35553443563498 -22.90269076743527, -43.355468314028535 -22.902875564945493, -43.35542062413919 -22.903065953655968, -43.355391825246656 -22.90326010001934, -43.3553821947 -22.9034561343))" +002138,Praça Seca,Jacarepaguá,88a8a062b5fffff,TRUE,184,-22.90345613,-43.35738219,PC,J,Rio Grande,"POLYGON ((-43.3553821947 -22.9034561343, -43.355391825246656 -22.90365216858066, -43.35542062413919 -22.903846314944033, -43.355468314028535 -22.90403670365451, -43.35553443563498 -22.90422150116473, -43.355618352171305 -22.904398927773652, -43.3557192554754 -22.90456727476604, -43.35583617379328 -22.90472492086833, -43.35596798113763 -22.904870347862374, -43.35611340813168 -22.905002155206727, -43.356271054233964 -22.905119073524606, -43.356439401226346 -22.905219976828697, -43.35661682783527 -22.905303893365023, -43.35680162534549 -22.905370014971464, -43.35699201405597 -22.905417704860806, -43.35718616041934 -22.905446503753346, -43.3573821947 -22.9054561343, -43.357578228980664 -22.905446503753346, -43.357772375344034 -22.905417704860806, -43.35796276405451 -22.905370014971464, -43.358147561564735 -22.905303893365023, -43.358324988173656 -22.905219976828697, -43.35849333516604 -22.905119073524606, -43.358650981268326 -22.905002155206727, -43.35879640826237 -22.904870347862374, -43.358928215606724 -22.90472492086833, -43.3590451339246 -22.90456727476604, -43.3591460372287 -22.904398927773652, -43.35922995376502 -22.90422150116473, -43.35929607537147 -22.90403670365451, -43.35934376526081 -22.903846314944033, -43.35937256415335 -22.90365216858066, -43.359382194700004 -22.9034561343, -43.35937256415335 -22.90326010001934, -43.35934376526081 -22.903065953655968, -43.35929607537147 -22.902875564945493, -43.35922995376502 -22.90269076743527, -43.3591460372287 -22.90251334082635, -43.3590451339246 -22.90234499383396, -43.358928215606724 -22.902187347731672, -43.35879640826237 -22.902041920737627, -43.358650981268326 -22.901910113393274, -43.35849333516604 -22.901793195075395, -43.358324988173656 -22.901692291771305, -43.358147561564735 -22.90160837523498, -43.35796276405451 -22.901542253628538, -43.357772375344034 -22.901494563739195, -43.357578228980664 -22.901465764846655, -43.3573821947 -22.901456134300002, -43.35718616041934 -22.901465764846655, -43.35699201405597 -22.901494563739195, -43.35680162534549 -22.901542253628538, -43.35661682783527 -22.90160837523498, -43.356439401226346 -22.901692291771305, -43.356271054233964 -22.901793195075395, -43.35611340813168 -22.901910113393274, -43.35596798113763 -22.902041920737627, -43.35583617379328 -22.902187347731672, -43.3557192554754 -22.90234499383396, -43.355618352171305 -22.90251334082635, -43.35553443563498 -22.90269076743527, -43.355468314028535 -22.902875564945493, -43.35542062413919 -22.903065953655968, -43.355391825246656 -22.90326010001934, -43.3553821947 -22.9034561343))" +002139,Praça Seca,Jacarepaguá,88a8a060cbfffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +002140,Praça Seca,Jacarepaguá,88a8a060cbfffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +002141,Praça Seca,Jacarepaguá,88a8a060cbfffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +002142,Praça Seca,Jacarepaguá,88a8a060cbfffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +002143,Praça Seca,Jacarepaguá,88a8a060cbfffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +002144,Praça Seca,Jacarepaguá,88a8a060cbfffff,TRUE,331,-22.89743504,-43.35225332,PO,J,Rio Grande,"POLYGON ((-43.3502533176 -22.8974350425, -43.35026294814666 -22.89763107678066, -43.35029174703919 -22.897825223144032, -43.350339436928536 -22.898015611854508, -43.35040555853498 -22.89820040936473, -43.350489475071306 -22.89837783597365, -43.3505903783754 -22.89854618296604, -43.35070729669328 -22.898703829068328, -43.35083910403763 -22.898849256062373, -43.35098453103168 -22.898981063406726, -43.351142177133966 -22.899097981724605, -43.35131052412635 -22.899198885028696, -43.35148795073527 -22.899282801565022, -43.35167274824549 -22.899348923171463, -43.35186313695597 -22.899396613060805, -43.35205728331934 -22.899425411953345, -43.3522533176 -22.8994350425, -43.352449351880665 -22.899425411953345, -43.352643498244035 -22.899396613060805, -43.352833886954514 -22.899348923171463, -43.353018684464736 -22.899282801565022, -43.35319611107366 -22.899198885028696, -43.35336445806604 -22.899097981724605, -43.35352210416833 -22.898981063406726, -43.35366753116237 -22.898849256062373, -43.353799338506725 -22.898703829068328, -43.353916256824604 -22.89854618296604, -43.3540171601287 -22.89837783597365, -43.354101076665025 -22.89820040936473, -43.35416719827147 -22.898015611854508, -43.35421488816081 -22.897825223144032, -43.35424368705335 -22.89763107678066, -43.354253317600005 -22.8974350425, -43.35424368705335 -22.89723900821934, -43.35421488816081 -22.897044861855967, -43.35416719827147 -22.896854473145492, -43.354101076665025 -22.89666967563527, -43.3540171601287 -22.89649224902635, -43.353916256824604 -22.89632390203396, -43.353799338506725 -22.89616625593167, -43.35366753116237 -22.896020828937626, -43.35352210416833 -22.895889021593273, -43.35336445806604 -22.895772103275394, -43.35319611107366 -22.895671199971304, -43.353018684464736 -22.895587283434978, -43.352833886954514 -22.895521161828537, -43.352643498244035 -22.895473471939194, -43.352449351880665 -22.895444673046654, -43.3522533176 -22.8954350425, -43.35205728331934 -22.895444673046654, -43.35186313695597 -22.895473471939194, -43.35167274824549 -22.895521161828537, -43.35148795073527 -22.895587283434978, -43.35131052412635 -22.895671199971304, -43.351142177133966 -22.895772103275394, -43.35098453103168 -22.895889021593273, -43.35083910403763 -22.896020828937626, -43.35070729669328 -22.89616625593167, -43.3505903783754 -22.89632390203396, -43.350489475071306 -22.89649224902635, -43.35040555853498 -22.89666967563527, -43.350339436928536 -22.896854473145492, -43.35029174703919 -22.897044861855967, -43.35026294814666 -22.89723900821934, -43.3502533176 -22.8974350425))" +002145,Praça Seca,Jacarepaguá,88a8a060c3fffff,TRUE,20,-22.89198607,-43.34845331,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.346453313999994 -22.89198607, -43.34646294454665 -22.89218210428066, -43.34649174343919 -22.892376250644034, -43.34653943332853 -22.89256663935451, -43.346605554934975 -22.89275143686473, -43.3466894714713 -22.892928863473653, -43.346790374775395 -22.893097210466042, -43.346907293093274 -22.89325485656833, -43.34703910043763 -22.893400283562375, -43.34718452743167 -22.893532090906728, -43.34734217353396 -22.893649009224607, -43.34751052052634 -22.893749912528698, -43.34768794713526 -22.893833829065024, -43.347872744645485 -22.893899950671464, -43.348063133355964 -22.893947640560807, -43.348257279719334 -22.893976439453347, -43.348453314 -22.89398607, -43.34864934828066 -22.893976439453347, -43.34884349464403 -22.893947640560807, -43.34903388335451 -22.893899950671464, -43.34921868086473 -22.893833829065024, -43.34939610747365 -22.893749912528698, -43.349564454466034 -22.893649009224607, -43.34972210056832 -22.893532090906728, -43.34986752756237 -22.893400283562375, -43.34999933490672 -22.89325485656833, -43.3501162532246 -22.893097210466042, -43.35021715652869 -22.892928863473653, -43.35030107306502 -22.89275143686473, -43.35036719467146 -22.89256663935451, -43.350414884560806 -22.892376250644034, -43.35044368345334 -22.89218210428066, -43.350453314 -22.89198607, -43.35044368345334 -22.891790035719342, -43.350414884560806 -22.89159588935597, -43.35036719467146 -22.891405500645494, -43.35030107306502 -22.89122070313527, -43.35021715652869 -22.89104327652635, -43.3501162532246 -22.89087492953396, -43.34999933490672 -22.890717283431673, -43.34986752756237 -22.890571856437628, -43.34972210056832 -22.890440049093275, -43.349564454466034 -22.890323130775396, -43.34939610747365 -22.890222227471305, -43.34921868086473 -22.89013831093498, -43.34903388335451 -22.89007218932854, -43.34884349464403 -22.890024499439196, -43.34864934828066 -22.889995700546656, -43.348453314 -22.889986070000003, -43.348257279719334 -22.889995700546656, -43.348063133355964 -22.890024499439196, -43.347872744645485 -22.89007218932854, -43.34768794713526 -22.89013831093498, -43.34751052052634 -22.890222227471305, -43.34734217353396 -22.890323130775396, -43.34718452743167 -22.890440049093275, -43.34703910043763 -22.890571856437628, -43.346907293093274 -22.890717283431673, -43.346790374775395 -22.89087492953396, -43.3466894714713 -22.89104327652635, -43.346605554934975 -22.89122070313527, -43.34653943332853 -22.891405500645494, -43.34649174343919 -22.89159588935597, -43.34646294454665 -22.891790035719342, -43.346453313999994 -22.89198607))" +002146,Praça Seca,Jacarepaguá,88a8a060c3fffff,TRUE,20,-22.89198607,-43.34845331,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.346453313999994 -22.89198607, -43.34646294454665 -22.89218210428066, -43.34649174343919 -22.892376250644034, -43.34653943332853 -22.89256663935451, -43.346605554934975 -22.89275143686473, -43.3466894714713 -22.892928863473653, -43.346790374775395 -22.893097210466042, -43.346907293093274 -22.89325485656833, -43.34703910043763 -22.893400283562375, -43.34718452743167 -22.893532090906728, -43.34734217353396 -22.893649009224607, -43.34751052052634 -22.893749912528698, -43.34768794713526 -22.893833829065024, -43.347872744645485 -22.893899950671464, -43.348063133355964 -22.893947640560807, -43.348257279719334 -22.893976439453347, -43.348453314 -22.89398607, -43.34864934828066 -22.893976439453347, -43.34884349464403 -22.893947640560807, -43.34903388335451 -22.893899950671464, -43.34921868086473 -22.893833829065024, -43.34939610747365 -22.893749912528698, -43.349564454466034 -22.893649009224607, -43.34972210056832 -22.893532090906728, -43.34986752756237 -22.893400283562375, -43.34999933490672 -22.89325485656833, -43.3501162532246 -22.893097210466042, -43.35021715652869 -22.892928863473653, -43.35030107306502 -22.89275143686473, -43.35036719467146 -22.89256663935451, -43.350414884560806 -22.892376250644034, -43.35044368345334 -22.89218210428066, -43.350453314 -22.89198607, -43.35044368345334 -22.891790035719342, -43.350414884560806 -22.89159588935597, -43.35036719467146 -22.891405500645494, -43.35030107306502 -22.89122070313527, -43.35021715652869 -22.89104327652635, -43.3501162532246 -22.89087492953396, -43.34999933490672 -22.890717283431673, -43.34986752756237 -22.890571856437628, -43.34972210056832 -22.890440049093275, -43.349564454466034 -22.890323130775396, -43.34939610747365 -22.890222227471305, -43.34921868086473 -22.89013831093498, -43.34903388335451 -22.89007218932854, -43.34884349464403 -22.890024499439196, -43.34864934828066 -22.889995700546656, -43.348453314 -22.889986070000003, -43.348257279719334 -22.889995700546656, -43.348063133355964 -22.890024499439196, -43.347872744645485 -22.89007218932854, -43.34768794713526 -22.89013831093498, -43.34751052052634 -22.890222227471305, -43.34734217353396 -22.890323130775396, -43.34718452743167 -22.890440049093275, -43.34703910043763 -22.890571856437628, -43.346907293093274 -22.890717283431673, -43.346790374775395 -22.89087492953396, -43.3466894714713 -22.89104327652635, -43.346605554934975 -22.89122070313527, -43.34653943332853 -22.891405500645494, -43.34649174343919 -22.89159588935597, -43.34646294454665 -22.891790035719342, -43.346453313999994 -22.89198607))" +002147,Praça Seca,Jacarepaguá,88a8a060c3fffff,TRUE,20,-22.89198607,-43.34845331,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.346453313999994 -22.89198607, -43.34646294454665 -22.89218210428066, -43.34649174343919 -22.892376250644034, -43.34653943332853 -22.89256663935451, -43.346605554934975 -22.89275143686473, -43.3466894714713 -22.892928863473653, -43.346790374775395 -22.893097210466042, -43.346907293093274 -22.89325485656833, -43.34703910043763 -22.893400283562375, -43.34718452743167 -22.893532090906728, -43.34734217353396 -22.893649009224607, -43.34751052052634 -22.893749912528698, -43.34768794713526 -22.893833829065024, -43.347872744645485 -22.893899950671464, -43.348063133355964 -22.893947640560807, -43.348257279719334 -22.893976439453347, -43.348453314 -22.89398607, -43.34864934828066 -22.893976439453347, -43.34884349464403 -22.893947640560807, -43.34903388335451 -22.893899950671464, -43.34921868086473 -22.893833829065024, -43.34939610747365 -22.893749912528698, -43.349564454466034 -22.893649009224607, -43.34972210056832 -22.893532090906728, -43.34986752756237 -22.893400283562375, -43.34999933490672 -22.89325485656833, -43.3501162532246 -22.893097210466042, -43.35021715652869 -22.892928863473653, -43.35030107306502 -22.89275143686473, -43.35036719467146 -22.89256663935451, -43.350414884560806 -22.892376250644034, -43.35044368345334 -22.89218210428066, -43.350453314 -22.89198607, -43.35044368345334 -22.891790035719342, -43.350414884560806 -22.89159588935597, -43.35036719467146 -22.891405500645494, -43.35030107306502 -22.89122070313527, -43.35021715652869 -22.89104327652635, -43.3501162532246 -22.89087492953396, -43.34999933490672 -22.890717283431673, -43.34986752756237 -22.890571856437628, -43.34972210056832 -22.890440049093275, -43.349564454466034 -22.890323130775396, -43.34939610747365 -22.890222227471305, -43.34921868086473 -22.89013831093498, -43.34903388335451 -22.89007218932854, -43.34884349464403 -22.890024499439196, -43.34864934828066 -22.889995700546656, -43.348453314 -22.889986070000003, -43.348257279719334 -22.889995700546656, -43.348063133355964 -22.890024499439196, -43.347872744645485 -22.89007218932854, -43.34768794713526 -22.89013831093498, -43.34751052052634 -22.890222227471305, -43.34734217353396 -22.890323130775396, -43.34718452743167 -22.890440049093275, -43.34703910043763 -22.890571856437628, -43.346907293093274 -22.890717283431673, -43.346790374775395 -22.89087492953396, -43.3466894714713 -22.89104327652635, -43.346605554934975 -22.89122070313527, -43.34653943332853 -22.891405500645494, -43.34649174343919 -22.89159588935597, -43.34646294454665 -22.891790035719342, -43.346453313999994 -22.89198607))" +002148,Campinho,Zona Norte,88a8a060c7fffff,TRUE,214,-22.88724262,-43.34747988,PM,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3454798801 -22.8872426181, -43.34548951064666 -22.88743865238066, -43.345518309539194 -22.887632798744033, -43.34556599942854 -22.887823187454508, -43.34563212103498 -22.88800798496473, -43.34571603757131 -22.88818541157365, -43.3458169408754 -22.88835375856604, -43.34593385919328 -22.88851140466833, -43.34606566653763 -22.888656831662374, -43.34621109353168 -22.888788639006727, -43.34636873963397 -22.888905557324605, -43.34653708662635 -22.889006460628696, -43.34671451323527 -22.889090377165022, -43.34689931074549 -22.889156498771463, -43.34708969945597 -22.889204188660806, -43.34728384581934 -22.889232987553346, -43.3474798801 -22.8892426181, -43.347675914380666 -22.889232987553346, -43.347870060744036 -22.889204188660806, -43.348060449454515 -22.889156498771463, -43.34824524696474 -22.889090377165022, -43.34842267357366 -22.889006460628696, -43.34859102056604 -22.888905557324605, -43.34874866666833 -22.888788639006727, -43.34889409366237 -22.888656831662374, -43.349025901006726 -22.88851140466833, -43.349142819324605 -22.88835375856604, -43.3492437226287 -22.88818541157365, -43.349327639165026 -22.88800798496473, -43.34939376077147 -22.887823187454508, -43.34944145066081 -22.887632798744033, -43.34947024955335 -22.88743865238066, -43.349479880100006 -22.8872426181, -43.34947024955335 -22.88704658381934, -43.34944145066081 -22.886852437455968, -43.34939376077147 -22.886662048745492, -43.349327639165026 -22.88647725123527, -43.3492437226287 -22.88629982462635, -43.349142819324605 -22.88613147763396, -43.349025901006726 -22.885973831531672, -43.34889409366237 -22.885828404537627, -43.34874866666833 -22.885696597193274, -43.34859102056604 -22.885579678875395, -43.34842267357366 -22.885478775571304, -43.34824524696474 -22.885394859034978, -43.348060449454515 -22.885328737428537, -43.347870060744036 -22.885281047539195, -43.347675914380666 -22.885252248646655, -43.3474798801 -22.8852426181, -43.34728384581934 -22.885252248646655, -43.34708969945597 -22.885281047539195, -43.34689931074549 -22.885328737428537, -43.34671451323527 -22.885394859034978, -43.34653708662635 -22.885478775571304, -43.34636873963397 -22.885579678875395, -43.34621109353168 -22.885696597193274, -43.34606566653763 -22.885828404537627, -43.34593385919328 -22.885973831531672, -43.3458169408754 -22.88613147763396, -43.34571603757131 -22.88629982462635, -43.34563212103498 -22.88647725123527, -43.34556599942854 -22.886662048745492, -43.345518309539194 -22.886852437455968, -43.34548951064666 -22.88704658381934, -43.3454798801 -22.8872426181))" +002149,Campinho,Zona Norte,88a8a060c7fffff,,,,,,,, +002150,Campinho,Zona Norte,88a8a060c7fffff,TRUE,214,-22.88724262,-43.34747988,PM,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3454798801 -22.8872426181, -43.34548951064666 -22.88743865238066, -43.345518309539194 -22.887632798744033, -43.34556599942854 -22.887823187454508, -43.34563212103498 -22.88800798496473, -43.34571603757131 -22.88818541157365, -43.3458169408754 -22.88835375856604, -43.34593385919328 -22.88851140466833, -43.34606566653763 -22.888656831662374, -43.34621109353168 -22.888788639006727, -43.34636873963397 -22.888905557324605, -43.34653708662635 -22.889006460628696, -43.34671451323527 -22.889090377165022, -43.34689931074549 -22.889156498771463, -43.34708969945597 -22.889204188660806, -43.34728384581934 -22.889232987553346, -43.3474798801 -22.8892426181, -43.347675914380666 -22.889232987553346, -43.347870060744036 -22.889204188660806, -43.348060449454515 -22.889156498771463, -43.34824524696474 -22.889090377165022, -43.34842267357366 -22.889006460628696, -43.34859102056604 -22.888905557324605, -43.34874866666833 -22.888788639006727, -43.34889409366237 -22.888656831662374, -43.349025901006726 -22.88851140466833, -43.349142819324605 -22.88835375856604, -43.3492437226287 -22.88818541157365, -43.349327639165026 -22.88800798496473, -43.34939376077147 -22.887823187454508, -43.34944145066081 -22.887632798744033, -43.34947024955335 -22.88743865238066, -43.349479880100006 -22.8872426181, -43.34947024955335 -22.88704658381934, -43.34944145066081 -22.886852437455968, -43.34939376077147 -22.886662048745492, -43.349327639165026 -22.88647725123527, -43.3492437226287 -22.88629982462635, -43.349142819324605 -22.88613147763396, -43.349025901006726 -22.885973831531672, -43.34889409366237 -22.885828404537627, -43.34874866666833 -22.885696597193274, -43.34859102056604 -22.885579678875395, -43.34842267357366 -22.885478775571304, -43.34824524696474 -22.885394859034978, -43.348060449454515 -22.885328737428537, -43.347870060744036 -22.885281047539195, -43.347675914380666 -22.885252248646655, -43.3474798801 -22.8852426181, -43.34728384581934 -22.885252248646655, -43.34708969945597 -22.885281047539195, -43.34689931074549 -22.885328737428537, -43.34671451323527 -22.885394859034978, -43.34653708662635 -22.885478775571304, -43.34636873963397 -22.885579678875395, -43.34621109353168 -22.885696597193274, -43.34606566653763 -22.885828404537627, -43.34593385919328 -22.885973831531672, -43.3458169408754 -22.88613147763396, -43.34571603757131 -22.88629982462635, -43.34563212103498 -22.88647725123527, -43.34556599942854 -22.886662048745492, -43.345518309539194 -22.886852437455968, -43.34548951064666 -22.88704658381934, -43.3454798801 -22.8872426181))" +002151,Madureira,Zona Norte,88a8a0608dfffff,,,,,,,, +002152,Madureira,Zona Norte,88a8a0608dfffff,,,,,,,, +002153,Madureira,Zona Norte,88a8a0608dfffff,,,,,,,, +002156,Penha,Zona Norte,88a8a061b5fffff,TRUE,354,-22.84177794,-43.27313876,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2711387611 -22.841777938, -43.271148391646655 -22.84197397228066, -43.27117719053919 -22.842168118644032, -43.271224880428534 -22.842358507354508, -43.27129100203498 -22.84254330486473, -43.271374918571304 -22.84272073147365, -43.2714758218754 -22.84288907846604, -43.27159274019328 -22.843046724568328, -43.27172454753763 -22.843192151562373, -43.271869974531675 -22.843323958906726, -43.27202762063396 -22.843440877224605, -43.272195967626345 -22.843541780528696, -43.27237339423527 -22.843625697065022, -43.27255819174549 -22.843691818671463, -43.27274858045597 -22.843739508560805, -43.27294272681934 -22.843768307453345, -43.2731387611 -22.843777938, -43.27333479538066 -22.843768307453345, -43.27352894174403 -22.843739508560805, -43.27371933045451 -22.843691818671463, -43.273904127964734 -22.843625697065022, -43.274081554573655 -22.843541780528696, -43.27424990156604 -22.843440877224605, -43.274407547668325 -22.843323958906726, -43.27455297466237 -22.843192151562373, -43.27468478200672 -22.843046724568328, -43.2748017003246 -22.84288907846604, -43.274902603628696 -22.84272073147365, -43.27498652016502 -22.84254330486473, -43.27505264177147 -22.842358507354508, -43.27510033166081 -22.842168118644032, -43.275129130553346 -22.84197397228066, -43.2751387611 -22.841777938, -43.275129130553346 -22.84158190371934, -43.27510033166081 -22.841387757355967, -43.27505264177147 -22.841197368645492, -43.27498652016502 -22.84101257113527, -43.274902603628696 -22.84083514452635, -43.2748017003246 -22.84066679753396, -43.27468478200672 -22.84050915143167, -43.27455297466237 -22.840363724437626, -43.274407547668325 -22.840231917093273, -43.27424990156604 -22.840114998775395, -43.274081554573655 -22.840014095471304, -43.273904127964734 -22.839930178934978, -43.27371933045451 -22.839864057328537, -43.27352894174403 -22.839816367439195, -43.27333479538066 -22.839787568546654, -43.2731387611 -22.839777938, -43.27294272681934 -22.839787568546654, -43.27274858045597 -22.839816367439195, -43.27255819174549 -22.839864057328537, -43.27237339423527 -22.839930178934978, -43.272195967626345 -22.840014095471304, -43.27202762063396 -22.840114998775395, -43.271869974531675 -22.840231917093273, -43.27172454753763 -22.840363724437626, -43.27159274019328 -22.84050915143167, -43.2714758218754 -22.84066679753396, -43.271374918571304 -22.84083514452635, -43.27129100203498 -22.84101257113527, -43.271224880428534 -22.841197368645492, -43.27117719053919 -22.841387757355967, -43.271148391646655 -22.84158190371934, -43.2711387611 -22.841777938))" +002157,Penha,Zona Norte,88a8a061b5fffff,TRUE,354,-22.84177794,-43.27313876,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2711387611 -22.841777938, -43.271148391646655 -22.84197397228066, -43.27117719053919 -22.842168118644032, -43.271224880428534 -22.842358507354508, -43.27129100203498 -22.84254330486473, -43.271374918571304 -22.84272073147365, -43.2714758218754 -22.84288907846604, -43.27159274019328 -22.843046724568328, -43.27172454753763 -22.843192151562373, -43.271869974531675 -22.843323958906726, -43.27202762063396 -22.843440877224605, -43.272195967626345 -22.843541780528696, -43.27237339423527 -22.843625697065022, -43.27255819174549 -22.843691818671463, -43.27274858045597 -22.843739508560805, -43.27294272681934 -22.843768307453345, -43.2731387611 -22.843777938, -43.27333479538066 -22.843768307453345, -43.27352894174403 -22.843739508560805, -43.27371933045451 -22.843691818671463, -43.273904127964734 -22.843625697065022, -43.274081554573655 -22.843541780528696, -43.27424990156604 -22.843440877224605, -43.274407547668325 -22.843323958906726, -43.27455297466237 -22.843192151562373, -43.27468478200672 -22.843046724568328, -43.2748017003246 -22.84288907846604, -43.274902603628696 -22.84272073147365, -43.27498652016502 -22.84254330486473, -43.27505264177147 -22.842358507354508, -43.27510033166081 -22.842168118644032, -43.275129130553346 -22.84197397228066, -43.2751387611 -22.841777938, -43.275129130553346 -22.84158190371934, -43.27510033166081 -22.841387757355967, -43.27505264177147 -22.841197368645492, -43.27498652016502 -22.84101257113527, -43.274902603628696 -22.84083514452635, -43.2748017003246 -22.84066679753396, -43.27468478200672 -22.84050915143167, -43.27455297466237 -22.840363724437626, -43.274407547668325 -22.840231917093273, -43.27424990156604 -22.840114998775395, -43.274081554573655 -22.840014095471304, -43.273904127964734 -22.839930178934978, -43.27371933045451 -22.839864057328537, -43.27352894174403 -22.839816367439195, -43.27333479538066 -22.839787568546654, -43.2731387611 -22.839777938, -43.27294272681934 -22.839787568546654, -43.27274858045597 -22.839816367439195, -43.27255819174549 -22.839864057328537, -43.27237339423527 -22.839930178934978, -43.272195967626345 -22.840014095471304, -43.27202762063396 -22.840114998775395, -43.271869974531675 -22.840231917093273, -43.27172454753763 -22.840363724437626, -43.27159274019328 -22.84050915143167, -43.2714758218754 -22.84066679753396, -43.271374918571304 -22.84083514452635, -43.27129100203498 -22.84101257113527, -43.271224880428534 -22.841197368645492, -43.27117719053919 -22.841387757355967, -43.271148391646655 -22.84158190371934, -43.2711387611 -22.841777938))" +002158,Penha,Zona Norte,88a8a061b5fffff,TRUE,354,-22.84177794,-43.27313876,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2711387611 -22.841777938, -43.271148391646655 -22.84197397228066, -43.27117719053919 -22.842168118644032, -43.271224880428534 -22.842358507354508, -43.27129100203498 -22.84254330486473, -43.271374918571304 -22.84272073147365, -43.2714758218754 -22.84288907846604, -43.27159274019328 -22.843046724568328, -43.27172454753763 -22.843192151562373, -43.271869974531675 -22.843323958906726, -43.27202762063396 -22.843440877224605, -43.272195967626345 -22.843541780528696, -43.27237339423527 -22.843625697065022, -43.27255819174549 -22.843691818671463, -43.27274858045597 -22.843739508560805, -43.27294272681934 -22.843768307453345, -43.2731387611 -22.843777938, -43.27333479538066 -22.843768307453345, -43.27352894174403 -22.843739508560805, -43.27371933045451 -22.843691818671463, -43.273904127964734 -22.843625697065022, -43.274081554573655 -22.843541780528696, -43.27424990156604 -22.843440877224605, -43.274407547668325 -22.843323958906726, -43.27455297466237 -22.843192151562373, -43.27468478200672 -22.843046724568328, -43.2748017003246 -22.84288907846604, -43.274902603628696 -22.84272073147365, -43.27498652016502 -22.84254330486473, -43.27505264177147 -22.842358507354508, -43.27510033166081 -22.842168118644032, -43.275129130553346 -22.84197397228066, -43.2751387611 -22.841777938, -43.275129130553346 -22.84158190371934, -43.27510033166081 -22.841387757355967, -43.27505264177147 -22.841197368645492, -43.27498652016502 -22.84101257113527, -43.274902603628696 -22.84083514452635, -43.2748017003246 -22.84066679753396, -43.27468478200672 -22.84050915143167, -43.27455297466237 -22.840363724437626, -43.274407547668325 -22.840231917093273, -43.27424990156604 -22.840114998775395, -43.274081554573655 -22.840014095471304, -43.273904127964734 -22.839930178934978, -43.27371933045451 -22.839864057328537, -43.27352894174403 -22.839816367439195, -43.27333479538066 -22.839787568546654, -43.2731387611 -22.839777938, -43.27294272681934 -22.839787568546654, -43.27274858045597 -22.839816367439195, -43.27255819174549 -22.839864057328537, -43.27237339423527 -22.839930178934978, -43.272195967626345 -22.840014095471304, -43.27202762063396 -22.840114998775395, -43.271869974531675 -22.840231917093273, -43.27172454753763 -22.840363724437626, -43.27159274019328 -22.84050915143167, -43.2714758218754 -22.84066679753396, -43.271374918571304 -22.84083514452635, -43.27129100203498 -22.84101257113527, -43.271224880428534 -22.841197368645492, -43.27117719053919 -22.841387757355967, -43.271148391646655 -22.84158190371934, -43.2711387611 -22.841777938))" +002159,Olaria,Zona Norte,88a8a061a3fffff,TRUE,296,-22.84690653,-43.26571217,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2637121735 -22.8469065337, -43.263721804046654 -22.84710256798066, -43.26375060293919 -22.847296714344033, -43.26379829282853 -22.847487103054508, -43.26386441443498 -22.84767190056473, -43.2639483309713 -22.847849327173652, -43.2640492342754 -22.84801767416604, -43.264166152593276 -22.84817532026833, -43.26429795993763 -22.848320747262374, -43.264443386931674 -22.848452554606727, -43.26460103303396 -22.848569472924606, -43.264769380026344 -22.848670376228696, -43.264946806635265 -22.848754292765022, -43.26513160414549 -22.848820414371463, -43.26532199285597 -22.848868104260806, -43.265516139219336 -22.848896903153346, -43.2657121735 -22.8489065337, -43.26590820778066 -22.848896903153346, -43.26610235414403 -22.848868104260806, -43.26629274285451 -22.848820414371463, -43.26647754036473 -22.848754292765022, -43.266654966973654 -22.848670376228696, -43.266823313966036 -22.848569472924606, -43.266980960068324 -22.848452554606727, -43.26712638706237 -22.848320747262374, -43.26725819440672 -22.84817532026833, -43.2673751127246 -22.84801767416604, -43.267476016028695 -22.847849327173652, -43.26755993256502 -22.84767190056473, -43.267626054171465 -22.847487103054508, -43.26767374406081 -22.847296714344033, -43.267702542953344 -22.84710256798066, -43.2677121735 -22.8469065337, -43.267702542953344 -22.84671049941934, -43.26767374406081 -22.846516353055968, -43.267626054171465 -22.846325964345493, -43.26755993256502 -22.84614116683527, -43.267476016028695 -22.84596374022635, -43.2673751127246 -22.84579539323396, -43.26725819440672 -22.845637747131672, -43.26712638706237 -22.845492320137627, -43.266980960068324 -22.845360512793274, -43.266823313966036 -22.845243594475395, -43.266654966973654 -22.845142691171304, -43.26647754036473 -22.84505877463498, -43.26629274285451 -22.844992653028537, -43.26610235414403 -22.844944963139195, -43.26590820778066 -22.844916164246655, -43.2657121735 -22.8449065337, -43.265516139219336 -22.844916164246655, -43.26532199285597 -22.844944963139195, -43.26513160414549 -22.844992653028537, -43.264946806635265 -22.84505877463498, -43.264769380026344 -22.845142691171304, -43.26460103303396 -22.845243594475395, -43.264443386931674 -22.845360512793274, -43.26429795993763 -22.845492320137627, -43.264166152593276 -22.845637747131672, -43.2640492342754 -22.84579539323396, -43.2639483309713 -22.84596374022635, -43.26386441443498 -22.84614116683527, -43.26379829282853 -22.846325964345493, -43.26375060293919 -22.846516353055968, -43.263721804046654 -22.84671049941934, -43.2637121735 -22.8469065337))" +002160,Olaria,Zona Norte,88a8a061a3fffff,TRUE,296,-22.84690653,-43.26571217,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2637121735 -22.8469065337, -43.263721804046654 -22.84710256798066, -43.26375060293919 -22.847296714344033, -43.26379829282853 -22.847487103054508, -43.26386441443498 -22.84767190056473, -43.2639483309713 -22.847849327173652, -43.2640492342754 -22.84801767416604, -43.264166152593276 -22.84817532026833, -43.26429795993763 -22.848320747262374, -43.264443386931674 -22.848452554606727, -43.26460103303396 -22.848569472924606, -43.264769380026344 -22.848670376228696, -43.264946806635265 -22.848754292765022, -43.26513160414549 -22.848820414371463, -43.26532199285597 -22.848868104260806, -43.265516139219336 -22.848896903153346, -43.2657121735 -22.8489065337, -43.26590820778066 -22.848896903153346, -43.26610235414403 -22.848868104260806, -43.26629274285451 -22.848820414371463, -43.26647754036473 -22.848754292765022, -43.266654966973654 -22.848670376228696, -43.266823313966036 -22.848569472924606, -43.266980960068324 -22.848452554606727, -43.26712638706237 -22.848320747262374, -43.26725819440672 -22.84817532026833, -43.2673751127246 -22.84801767416604, -43.267476016028695 -22.847849327173652, -43.26755993256502 -22.84767190056473, -43.267626054171465 -22.847487103054508, -43.26767374406081 -22.847296714344033, -43.267702542953344 -22.84710256798066, -43.2677121735 -22.8469065337, -43.267702542953344 -22.84671049941934, -43.26767374406081 -22.846516353055968, -43.267626054171465 -22.846325964345493, -43.26755993256502 -22.84614116683527, -43.267476016028695 -22.84596374022635, -43.2673751127246 -22.84579539323396, -43.26725819440672 -22.845637747131672, -43.26712638706237 -22.845492320137627, -43.266980960068324 -22.845360512793274, -43.266823313966036 -22.845243594475395, -43.266654966973654 -22.845142691171304, -43.26647754036473 -22.84505877463498, -43.26629274285451 -22.844992653028537, -43.26610235414403 -22.844944963139195, -43.26590820778066 -22.844916164246655, -43.2657121735 -22.8449065337, -43.265516139219336 -22.844916164246655, -43.26532199285597 -22.844944963139195, -43.26513160414549 -22.844992653028537, -43.264946806635265 -22.84505877463498, -43.264769380026344 -22.845142691171304, -43.26460103303396 -22.845243594475395, -43.264443386931674 -22.845360512793274, -43.26429795993763 -22.845492320137627, -43.264166152593276 -22.845637747131672, -43.2640492342754 -22.84579539323396, -43.2639483309713 -22.84596374022635, -43.26386441443498 -22.84614116683527, -43.26379829282853 -22.846325964345493, -43.26375060293919 -22.846516353055968, -43.263721804046654 -22.84671049941934, -43.2637121735 -22.8469065337))" +002161,Olaria,Zona Norte,88a8a061a3fffff,TRUE,296,-22.84690653,-43.26571217,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.2637121735 -22.8469065337, -43.263721804046654 -22.84710256798066, -43.26375060293919 -22.847296714344033, -43.26379829282853 -22.847487103054508, -43.26386441443498 -22.84767190056473, -43.2639483309713 -22.847849327173652, -43.2640492342754 -22.84801767416604, -43.264166152593276 -22.84817532026833, -43.26429795993763 -22.848320747262374, -43.264443386931674 -22.848452554606727, -43.26460103303396 -22.848569472924606, -43.264769380026344 -22.848670376228696, -43.264946806635265 -22.848754292765022, -43.26513160414549 -22.848820414371463, -43.26532199285597 -22.848868104260806, -43.265516139219336 -22.848896903153346, -43.2657121735 -22.8489065337, -43.26590820778066 -22.848896903153346, -43.26610235414403 -22.848868104260806, -43.26629274285451 -22.848820414371463, -43.26647754036473 -22.848754292765022, -43.266654966973654 -22.848670376228696, -43.266823313966036 -22.848569472924606, -43.266980960068324 -22.848452554606727, -43.26712638706237 -22.848320747262374, -43.26725819440672 -22.84817532026833, -43.2673751127246 -22.84801767416604, -43.267476016028695 -22.847849327173652, -43.26755993256502 -22.84767190056473, -43.267626054171465 -22.847487103054508, -43.26767374406081 -22.847296714344033, -43.267702542953344 -22.84710256798066, -43.2677121735 -22.8469065337, -43.267702542953344 -22.84671049941934, -43.26767374406081 -22.846516353055968, -43.267626054171465 -22.846325964345493, -43.26755993256502 -22.84614116683527, -43.267476016028695 -22.84596374022635, -43.2673751127246 -22.84579539323396, -43.26725819440672 -22.845637747131672, -43.26712638706237 -22.845492320137627, -43.266980960068324 -22.845360512793274, -43.266823313966036 -22.845243594475395, -43.266654966973654 -22.845142691171304, -43.26647754036473 -22.84505877463498, -43.26629274285451 -22.844992653028537, -43.26610235414403 -22.844944963139195, -43.26590820778066 -22.844916164246655, -43.2657121735 -22.8449065337, -43.265516139219336 -22.844916164246655, -43.26532199285597 -22.844944963139195, -43.26513160414549 -22.844992653028537, -43.264946806635265 -22.84505877463498, -43.264769380026344 -22.845142691171304, -43.26460103303396 -22.845243594475395, -43.264443386931674 -22.845360512793274, -43.26429795993763 -22.845492320137627, -43.264166152593276 -22.845637747131672, -43.2640492342754 -22.84579539323396, -43.2639483309713 -22.84596374022635, -43.26386441443498 -22.84614116683527, -43.26379829282853 -22.846325964345493, -43.26375060293919 -22.846516353055968, -43.263721804046654 -22.84671049941934, -43.2637121735 -22.8469065337))" +002162,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002163,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002164,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002165,Barra da Tijuca,Barra da Tijuca,88a8a07567fffff,,,,,,,, +002166,Barra da Tijuca,Barra da Tijuca,88a8a0752dfffff,,,,,,,, +002167,Barra da Tijuca,Barra da Tijuca,88a8a07567fffff,,,,,,,, +002168,Barra da Tijuca,Barra da Tijuca,88a8a07567fffff,,,,,,,, +002169,Barra da Tijuca,Barra da Tijuca,88a8a07567fffff,,,,,,,, +002170,Barra da Tijuca,Barra da Tijuca,88a8a07567fffff,,,,,,,, +002171,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,TRUE,302,-22.9968841,-43.36554928,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3635492839 -22.9968840955, -43.363558914446656 -22.99708012978066, -43.36358771333919 -22.997274276144033, -43.363635403228535 -22.99746466485451, -43.36370152483498 -22.99764946236473, -43.363785441371306 -22.997826888973652, -43.3638863446754 -22.99799523596604, -43.36400326299328 -22.99815288206833, -43.36413507033763 -22.998298309062374, -43.36428049733168 -22.998430116406727, -43.364438143433965 -22.998547034724606, -43.36460649042635 -22.998647938028697, -43.36478391703527 -22.998731854565023, -43.36496871454549 -22.998797976171463, -43.36515910325597 -22.998845666060806, -43.36535324961934 -22.998874464953346, -43.3655492839 -22.9988840955, -43.365745318180664 -22.998874464953346, -43.365939464544034 -22.998845666060806, -43.36612985325451 -22.998797976171463, -43.366314650764735 -22.998731854565023, -43.36649207737366 -22.998647938028697, -43.36666042436604 -22.998547034724606, -43.36681807046833 -22.998430116406727, -43.36696349746237 -22.998298309062374, -43.367095304806725 -22.99815288206833, -43.367212223124604 -22.99799523596604, -43.3673131264287 -22.997826888973652, -43.367397042965024 -22.99764946236473, -43.36746316457147 -22.99746466485451, -43.36751085446081 -22.997274276144033, -43.36753965335335 -22.99708012978066, -43.367549283900004 -22.9968840955, -43.36753965335335 -22.99668806121934, -43.36751085446081 -22.996493914855968, -43.36746316457147 -22.996303526145493, -43.367397042965024 -22.99611872863527, -43.3673131264287 -22.99594130202635, -43.367212223124604 -22.99577295503396, -43.367095304806725 -22.995615308931672, -43.36696349746237 -22.995469881937627, -43.36681807046833 -22.995338074593274, -43.36666042436604 -22.995221156275395, -43.36649207737366 -22.995120252971304, -43.366314650764735 -22.99503633643498, -43.36612985325451 -22.994970214828538, -43.365939464544034 -22.994922524939195, -43.365745318180664 -22.994893726046655, -43.3655492839 -22.9948840955, -43.36535324961934 -22.994893726046655, -43.36515910325597 -22.994922524939195, -43.36496871454549 -22.994970214828538, -43.36478391703527 -22.99503633643498, -43.36460649042635 -22.995120252971304, -43.364438143433965 -22.995221156275395, -43.36428049733168 -22.995338074593274, -43.36413507033763 -22.995469881937627, -43.36400326299328 -22.995615308931672, -43.3638863446754 -22.99577295503396, -43.363785441371306 -22.99594130202635, -43.36370152483498 -22.99611872863527, -43.363635403228535 -22.996303526145493, -43.36358771333919 -22.996493914855968, -43.363558914446656 -22.99668806121934, -43.3635492839 -22.9968840955))" +002172,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,,,,,,,, +002173,Barra da Tijuca,Barra da Tijuca,88a8a07561fffff,,,,,,,, +002174,Galeão,Ilhas,88a8a06f05fffff,,,,,,,, +002175,Galeão,Ilhas,88a8a06f05fffff,,,,,,,, +002176,Galeão,Ilhas,88a8a06f05fffff,,,,,,,, +002177,Galeão,Ilhas,88a8a06f05fffff,,,,,,,, +002178,Galeão,Ilhas,88a8a06f05fffff,,,,,,,, +002179,Galeão,Ilhas,88a8a06f05fffff,,,,,,,, +002181,Barra da Tijuca,Barra da Tijuca,88a8a07539fffff,TRUE,240,-22.97276823,-43.39221805,PM,J,Lagoa da Tijuca,"POLYGON ((-43.390218047299996 -22.9727682289, -43.39022767784665 -22.97296426318066, -43.39025647673919 -22.973158409544034, -43.39030416662853 -22.97334879825451, -43.390370288234976 -22.97353359576473, -43.3904542047713 -22.973711022373653, -43.3905551080754 -22.973879369366042, -43.390672026393275 -22.97403701546833, -43.39080383373763 -22.974182442462375, -43.390949260731674 -22.974314249806728, -43.39110690683396 -22.974431168124607, -43.39127525382634 -22.974532071428698, -43.391452680435265 -22.974615987965024, -43.39163747794549 -22.974682109571464, -43.391827866655966 -22.974729799460807, -43.392022013019336 -22.974758598353347, -43.3922180473 -22.9747682289, -43.39241408158066 -22.974758598353347, -43.39260822794403 -22.974729799460807, -43.39279861665451 -22.974682109571464, -43.39298341416473 -22.974615987965024, -43.39316084077365 -22.974532071428698, -43.393329187766035 -22.974431168124607, -43.39348683386832 -22.974314249806728, -43.39363226086237 -22.974182442462375, -43.39376406820672 -22.97403701546833, -43.3938809865246 -22.973879369366042, -43.393981889828694 -22.973711022373653, -43.39406580636502 -22.97353359576473, -43.394131927971465 -22.97334879825451, -43.39417961786081 -22.973158409544034, -43.394208416753344 -22.97296426318066, -43.3942180473 -22.9727682289, -43.394208416753344 -22.972572194619342, -43.39417961786081 -22.97237804825597, -43.394131927971465 -22.972187659545494, -43.39406580636502 -22.97200286203527, -43.393981889828694 -22.97182543542635, -43.3938809865246 -22.97165708843396, -43.39376406820672 -22.971499442331673, -43.39363226086237 -22.971354015337628, -43.39348683386832 -22.971222207993275, -43.393329187766035 -22.971105289675396, -43.39316084077365 -22.971004386371305, -43.39298341416473 -22.97092046983498, -43.39279861665451 -22.97085434822854, -43.39260822794403 -22.970806658339196, -43.39241408158066 -22.970777859446656, -43.3922180473 -22.970768228900003, -43.392022013019336 -22.970777859446656, -43.391827866655966 -22.970806658339196, -43.39163747794549 -22.97085434822854, -43.391452680435265 -22.97092046983498, -43.39127525382634 -22.971004386371305, -43.39110690683396 -22.971105289675396, -43.390949260731674 -22.971222207993275, -43.39080383373763 -22.971354015337628, -43.390672026393275 -22.971499442331673, -43.3905551080754 -22.97165708843396, -43.3904542047713 -22.97182543542635, -43.390370288234976 -22.97200286203527, -43.39030416662853 -22.972187659545494, -43.39025647673919 -22.97237804825597, -43.39022767784665 -22.972572194619342, -43.390218047299996 -22.9727682289))" +002182,Barra da Tijuca,Barra da Tijuca,88a8a07539fffff,TRUE,240,-22.97276823,-43.39221805,PM,J,Lagoa da Tijuca,"POLYGON ((-43.390218047299996 -22.9727682289, -43.39022767784665 -22.97296426318066, -43.39025647673919 -22.973158409544034, -43.39030416662853 -22.97334879825451, -43.390370288234976 -22.97353359576473, -43.3904542047713 -22.973711022373653, -43.3905551080754 -22.973879369366042, -43.390672026393275 -22.97403701546833, -43.39080383373763 -22.974182442462375, -43.390949260731674 -22.974314249806728, -43.39110690683396 -22.974431168124607, -43.39127525382634 -22.974532071428698, -43.391452680435265 -22.974615987965024, -43.39163747794549 -22.974682109571464, -43.391827866655966 -22.974729799460807, -43.392022013019336 -22.974758598353347, -43.3922180473 -22.9747682289, -43.39241408158066 -22.974758598353347, -43.39260822794403 -22.974729799460807, -43.39279861665451 -22.974682109571464, -43.39298341416473 -22.974615987965024, -43.39316084077365 -22.974532071428698, -43.393329187766035 -22.974431168124607, -43.39348683386832 -22.974314249806728, -43.39363226086237 -22.974182442462375, -43.39376406820672 -22.97403701546833, -43.3938809865246 -22.973879369366042, -43.393981889828694 -22.973711022373653, -43.39406580636502 -22.97353359576473, -43.394131927971465 -22.97334879825451, -43.39417961786081 -22.973158409544034, -43.394208416753344 -22.97296426318066, -43.3942180473 -22.9727682289, -43.394208416753344 -22.972572194619342, -43.39417961786081 -22.97237804825597, -43.394131927971465 -22.972187659545494, -43.39406580636502 -22.97200286203527, -43.393981889828694 -22.97182543542635, -43.3938809865246 -22.97165708843396, -43.39376406820672 -22.971499442331673, -43.39363226086237 -22.971354015337628, -43.39348683386832 -22.971222207993275, -43.393329187766035 -22.971105289675396, -43.39316084077365 -22.971004386371305, -43.39298341416473 -22.97092046983498, -43.39279861665451 -22.97085434822854, -43.39260822794403 -22.970806658339196, -43.39241408158066 -22.970777859446656, -43.3922180473 -22.970768228900003, -43.392022013019336 -22.970777859446656, -43.391827866655966 -22.970806658339196, -43.39163747794549 -22.97085434822854, -43.391452680435265 -22.97092046983498, -43.39127525382634 -22.971004386371305, -43.39110690683396 -22.971105289675396, -43.390949260731674 -22.971222207993275, -43.39080383373763 -22.971354015337628, -43.390672026393275 -22.971499442331673, -43.3905551080754 -22.97165708843396, -43.3904542047713 -22.97182543542635, -43.390370288234976 -22.97200286203527, -43.39030416662853 -22.972187659545494, -43.39025647673919 -22.97237804825597, -43.39022767784665 -22.972572194619342, -43.390218047299996 -22.9727682289))" +002183,Barra da Tijuca,Barra da Tijuca,88a8a07539fffff,TRUE,240,-22.97276823,-43.39221805,PM,J,Lagoa da Tijuca,"POLYGON ((-43.390218047299996 -22.9727682289, -43.39022767784665 -22.97296426318066, -43.39025647673919 -22.973158409544034, -43.39030416662853 -22.97334879825451, -43.390370288234976 -22.97353359576473, -43.3904542047713 -22.973711022373653, -43.3905551080754 -22.973879369366042, -43.390672026393275 -22.97403701546833, -43.39080383373763 -22.974182442462375, -43.390949260731674 -22.974314249806728, -43.39110690683396 -22.974431168124607, -43.39127525382634 -22.974532071428698, -43.391452680435265 -22.974615987965024, -43.39163747794549 -22.974682109571464, -43.391827866655966 -22.974729799460807, -43.392022013019336 -22.974758598353347, -43.3922180473 -22.9747682289, -43.39241408158066 -22.974758598353347, -43.39260822794403 -22.974729799460807, -43.39279861665451 -22.974682109571464, -43.39298341416473 -22.974615987965024, -43.39316084077365 -22.974532071428698, -43.393329187766035 -22.974431168124607, -43.39348683386832 -22.974314249806728, -43.39363226086237 -22.974182442462375, -43.39376406820672 -22.97403701546833, -43.3938809865246 -22.973879369366042, -43.393981889828694 -22.973711022373653, -43.39406580636502 -22.97353359576473, -43.394131927971465 -22.97334879825451, -43.39417961786081 -22.973158409544034, -43.394208416753344 -22.97296426318066, -43.3942180473 -22.9727682289, -43.394208416753344 -22.972572194619342, -43.39417961786081 -22.97237804825597, -43.394131927971465 -22.972187659545494, -43.39406580636502 -22.97200286203527, -43.393981889828694 -22.97182543542635, -43.3938809865246 -22.97165708843396, -43.39376406820672 -22.971499442331673, -43.39363226086237 -22.971354015337628, -43.39348683386832 -22.971222207993275, -43.393329187766035 -22.971105289675396, -43.39316084077365 -22.971004386371305, -43.39298341416473 -22.97092046983498, -43.39279861665451 -22.97085434822854, -43.39260822794403 -22.970806658339196, -43.39241408158066 -22.970777859446656, -43.3922180473 -22.970768228900003, -43.392022013019336 -22.970777859446656, -43.391827866655966 -22.970806658339196, -43.39163747794549 -22.97085434822854, -43.391452680435265 -22.97092046983498, -43.39127525382634 -22.971004386371305, -43.39110690683396 -22.971105289675396, -43.390949260731674 -22.971222207993275, -43.39080383373763 -22.971354015337628, -43.390672026393275 -22.971499442331673, -43.3905551080754 -22.97165708843396, -43.3904542047713 -22.97182543542635, -43.390370288234976 -22.97200286203527, -43.39030416662853 -22.972187659545494, -43.39025647673919 -22.97237804825597, -43.39022767784665 -22.972572194619342, -43.390218047299996 -22.9727682289))" +002184,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002185,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002186,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002187,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002188,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002189,Santa Cruz,Zona Oeste,88a8a02aebfffff,TRUE,387,-22.93457244,-43.66285464,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.660854641822105 -22.93457244480373, -43.66086427236876 -22.93476847908439, -43.6608930712613 -22.934962625447763, -43.66094076115064 -22.93515301415824, -43.661006882757086 -22.93533781166846, -43.66109079929341 -22.935515238277382, -43.661191702597506 -22.93568358526977, -43.661308620915385 -22.93584123137206, -43.66144042825974 -22.935986658366105, -43.66158585525378 -22.936118465710457, -43.66174350135607 -22.936235384028336, -43.66191184834845 -22.936336287332427, -43.662089274957374 -22.936420203868753, -43.662274072467596 -22.936486325475194, -43.662464461178075 -22.936534015364536, -43.662658607541445 -22.936562814257076, -43.66285464182211 -22.93657244480373, -43.66305067610277 -22.936562814257076, -43.66324482246614 -22.936534015364536, -43.66343521117662 -22.936486325475194, -43.66362000868684 -22.936420203868753, -43.66379743529576 -22.936336287332427, -43.663965782288145 -22.936235384028336, -43.66412342839043 -22.936118465710457, -43.66426885538448 -22.935986658366105, -43.66440066272883 -22.93584123137206, -43.66451758104671 -22.93568358526977, -43.664618484350804 -22.935515238277382, -43.66470240088713 -22.93533781166846, -43.664768522493574 -22.93515301415824, -43.66481621238292 -22.934962625447763, -43.66484501127545 -22.93476847908439, -43.66485464182211 -22.93457244480373, -43.66484501127545 -22.934376410523072, -43.66481621238292 -22.9341822641597, -43.664768522493574 -22.933991875449223, -43.66470240088713 -22.933807077939, -43.664618484350804 -22.93362965133008, -43.66451758104671 -22.93346130433769, -43.66440066272883 -22.933303658235403, -43.66426885538448 -22.933158231241357, -43.66412342839043 -22.933026423897005, -43.663965782288145 -22.932909505579126, -43.66379743529576 -22.932808602275035, -43.66362000868684 -22.93272468573871, -43.66343521117662 -22.932658564132268, -43.66324482246614 -22.932610874242926, -43.66305067610277 -22.932582075350386, -43.66285464182211 -22.932572444803732, -43.662658607541445 -22.932582075350386, -43.662464461178075 -22.932610874242926, -43.662274072467596 -22.932658564132268, -43.662089274957374 -22.93272468573871, -43.66191184834845 -22.932808602275035, -43.66174350135607 -22.932909505579126, -43.66158585525378 -22.933026423897005, -43.66144042825974 -22.933158231241357, -43.661308620915385 -22.933303658235403, -43.661191702597506 -22.93346130433769, -43.66109079929341 -22.93362965133008, -43.661006882757086 -22.933807077939, -43.66094076115064 -22.933991875449223, -43.6608930712613 -22.9341822641597, -43.66086427236876 -22.934376410523072, -43.660854641822105 -22.93457244480373))" +002190,Santa Cruz,Zona Oeste,88a8a02aebfffff,TRUE,387,-22.93457244,-43.66285464,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.660854641822105 -22.93457244480373, -43.66086427236876 -22.93476847908439, -43.6608930712613 -22.934962625447763, -43.66094076115064 -22.93515301415824, -43.661006882757086 -22.93533781166846, -43.66109079929341 -22.935515238277382, -43.661191702597506 -22.93568358526977, -43.661308620915385 -22.93584123137206, -43.66144042825974 -22.935986658366105, -43.66158585525378 -22.936118465710457, -43.66174350135607 -22.936235384028336, -43.66191184834845 -22.936336287332427, -43.662089274957374 -22.936420203868753, -43.662274072467596 -22.936486325475194, -43.662464461178075 -22.936534015364536, -43.662658607541445 -22.936562814257076, -43.66285464182211 -22.93657244480373, -43.66305067610277 -22.936562814257076, -43.66324482246614 -22.936534015364536, -43.66343521117662 -22.936486325475194, -43.66362000868684 -22.936420203868753, -43.66379743529576 -22.936336287332427, -43.663965782288145 -22.936235384028336, -43.66412342839043 -22.936118465710457, -43.66426885538448 -22.935986658366105, -43.66440066272883 -22.93584123137206, -43.66451758104671 -22.93568358526977, -43.664618484350804 -22.935515238277382, -43.66470240088713 -22.93533781166846, -43.664768522493574 -22.93515301415824, -43.66481621238292 -22.934962625447763, -43.66484501127545 -22.93476847908439, -43.66485464182211 -22.93457244480373, -43.66484501127545 -22.934376410523072, -43.66481621238292 -22.9341822641597, -43.664768522493574 -22.933991875449223, -43.66470240088713 -22.933807077939, -43.664618484350804 -22.93362965133008, -43.66451758104671 -22.93346130433769, -43.66440066272883 -22.933303658235403, -43.66426885538448 -22.933158231241357, -43.66412342839043 -22.933026423897005, -43.663965782288145 -22.932909505579126, -43.66379743529576 -22.932808602275035, -43.66362000868684 -22.93272468573871, -43.66343521117662 -22.932658564132268, -43.66324482246614 -22.932610874242926, -43.66305067610277 -22.932582075350386, -43.66285464182211 -22.932572444803732, -43.662658607541445 -22.932582075350386, -43.662464461178075 -22.932610874242926, -43.662274072467596 -22.932658564132268, -43.662089274957374 -22.93272468573871, -43.66191184834845 -22.932808602275035, -43.66174350135607 -22.932909505579126, -43.66158585525378 -22.933026423897005, -43.66144042825974 -22.933158231241357, -43.661308620915385 -22.933303658235403, -43.661191702597506 -22.93346130433769, -43.66109079929341 -22.93362965133008, -43.661006882757086 -22.933807077939, -43.66094076115064 -22.933991875449223, -43.6608930712613 -22.9341822641597, -43.66086427236876 -22.934376410523072, -43.660854641822105 -22.93457244480373))" +002191,Santa Cruz,Zona Oeste,88a8a02aebfffff,TRUE,387,-22.93457244,-43.66285464,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.660854641822105 -22.93457244480373, -43.66086427236876 -22.93476847908439, -43.6608930712613 -22.934962625447763, -43.66094076115064 -22.93515301415824, -43.661006882757086 -22.93533781166846, -43.66109079929341 -22.935515238277382, -43.661191702597506 -22.93568358526977, -43.661308620915385 -22.93584123137206, -43.66144042825974 -22.935986658366105, -43.66158585525378 -22.936118465710457, -43.66174350135607 -22.936235384028336, -43.66191184834845 -22.936336287332427, -43.662089274957374 -22.936420203868753, -43.662274072467596 -22.936486325475194, -43.662464461178075 -22.936534015364536, -43.662658607541445 -22.936562814257076, -43.66285464182211 -22.93657244480373, -43.66305067610277 -22.936562814257076, -43.66324482246614 -22.936534015364536, -43.66343521117662 -22.936486325475194, -43.66362000868684 -22.936420203868753, -43.66379743529576 -22.936336287332427, -43.663965782288145 -22.936235384028336, -43.66412342839043 -22.936118465710457, -43.66426885538448 -22.935986658366105, -43.66440066272883 -22.93584123137206, -43.66451758104671 -22.93568358526977, -43.664618484350804 -22.935515238277382, -43.66470240088713 -22.93533781166846, -43.664768522493574 -22.93515301415824, -43.66481621238292 -22.934962625447763, -43.66484501127545 -22.93476847908439, -43.66485464182211 -22.93457244480373, -43.66484501127545 -22.934376410523072, -43.66481621238292 -22.9341822641597, -43.664768522493574 -22.933991875449223, -43.66470240088713 -22.933807077939, -43.664618484350804 -22.93362965133008, -43.66451758104671 -22.93346130433769, -43.66440066272883 -22.933303658235403, -43.66426885538448 -22.933158231241357, -43.66412342839043 -22.933026423897005, -43.663965782288145 -22.932909505579126, -43.66379743529576 -22.932808602275035, -43.66362000868684 -22.93272468573871, -43.66343521117662 -22.932658564132268, -43.66324482246614 -22.932610874242926, -43.66305067610277 -22.932582075350386, -43.66285464182211 -22.932572444803732, -43.662658607541445 -22.932582075350386, -43.662464461178075 -22.932610874242926, -43.662274072467596 -22.932658564132268, -43.662089274957374 -22.93272468573871, -43.66191184834845 -22.932808602275035, -43.66174350135607 -22.932909505579126, -43.66158585525378 -22.933026423897005, -43.66144042825974 -22.933158231241357, -43.661308620915385 -22.933303658235403, -43.661191702597506 -22.93346130433769, -43.66109079929341 -22.93362965133008, -43.661006882757086 -22.933807077939, -43.66094076115064 -22.933991875449223, -43.6608930712613 -22.9341822641597, -43.66086427236876 -22.934376410523072, -43.660854641822105 -22.93457244480373))" +002192,Santa Cruz,Zona Oeste,88a8a02aebfffff,,,,,,,, +002193,Santa Cruz,Zona Oeste,88a8a02aebfffff,,,,,,,, +002194,Santa Cruz,Zona Oeste,88a8a02aebfffff,,,,,,,, +002195,Santa Cruz,Zona Oeste,88a8a02ae3fffff,,,,,,,, +002196,Santa Cruz,Zona Oeste,88a8a02ae3fffff,,,,,,,, +002197,Santa Cruz,Zona Oeste,88a8a02ae3fffff,,,,,,,, +002198,Santa Cruz,Zona Oeste,88a8a02ae3fffff,,,,,,,, +002199,Santa Cruz,Zona Oeste,88a8a02ae7fffff,,,,,,,, +002200,Santa Cruz,Zona Oeste,88a8a02ae7fffff,,,,,,,, +002201,Paciência,Zona Oeste,88a8a02aadfffff,,,,,,,, +002202,Paciência,Zona Oeste,88a8a02aadfffff,,,,,,,, +002203,Paciência,Zona Oeste,88a8a02aadfffff,,,,,,,, +002204,Paciência,Zona Oeste,88a8a02aadfffff,,,,,,,, +002205,Paciência,Zona Oeste,88a8a02aadfffff,,,,,,,, +002206,Paciência,Zona Oeste,88a8a02aadfffff,,,,,,,, +002207,Paciência,Zona Oeste,88a8a02853fffff,,,,,,,, +002208,Paciência,Zona Oeste,88a8a02853fffff,,,,,,,, +002209,Paciência,Zona Oeste,88a8a02853fffff,,,,,,,, +002210,Paciência,Zona Oeste,88a8a02857fffff,,,,,,,, +002211,Paciência,Zona Oeste,88a8a02853fffff,,,,,,,, +002212,Paciência,Zona Oeste,88a8a02857fffff,,,,,,,, +002213,Cosmos,Zona Oeste,88a8a02857fffff,TRUE,386,-22.9169719,-43.62256066,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.62056066092813 -22.91697190362598, -43.620570291474785 -22.91716793790664, -43.62059909036732 -22.917362084270014, -43.62064678025666 -22.91755247298049, -43.62071290186311 -22.91773727049071, -43.620796818399434 -22.917914697099633, -43.62089772170353 -22.918083044092022, -43.62101464002141 -22.91824069019431, -43.62114644736576 -22.918386117188355, -43.621291874359805 -22.918517924532708, -43.62144952046209 -22.918634842850587, -43.621617867454475 -22.918735746154677, -43.621795294063396 -22.918819662691003, -43.62198009157362 -22.918885784297444, -43.6221704802841 -22.918933474186787, -43.62236462664747 -22.918962273079327, -43.62256066092813 -22.91897190362598, -43.62275669520879 -22.918962273079327, -43.62295084157216 -22.918933474186787, -43.62314123028264 -22.918885784297444, -43.623326027792864 -22.918819662691003, -43.623503454401785 -22.918735746154677, -43.62367180139417 -22.918634842850587, -43.623829447496455 -22.918517924532708, -43.6239748744905 -22.918386117188355, -43.62410668183485 -22.91824069019431, -43.62422360015273 -22.918083044092022, -43.624324503456826 -22.917914697099633, -43.62440841999315 -22.91773727049071, -43.6244745415996 -22.91755247298049, -43.62452223148894 -22.917362084270014, -43.624551030381475 -22.91716793790664, -43.62456066092813 -22.91697190362598, -43.624551030381475 -22.916775869345322, -43.62452223148894 -22.91658172298195, -43.6244745415996 -22.916391334271474, -43.62440841999315 -22.91620653676125, -43.624324503456826 -22.91602911015233, -43.62422360015273 -22.91586076315994, -43.62410668183485 -22.915703117057653, -43.6239748744905 -22.915557690063608, -43.623829447496455 -22.915425882719255, -43.62367180139417 -22.915308964401376, -43.623503454401785 -22.915208061097285, -43.623326027792864 -22.91512414456096, -43.62314123028264 -22.91505802295452, -43.62295084157216 -22.915010333065176, -43.62275669520879 -22.914981534172636, -43.62256066092813 -22.914971903625982, -43.62236462664747 -22.914981534172636, -43.6221704802841 -22.915010333065176, -43.62198009157362 -22.91505802295452, -43.621795294063396 -22.91512414456096, -43.621617867454475 -22.915208061097285, -43.62144952046209 -22.915308964401376, -43.621291874359805 -22.915425882719255, -43.62114644736576 -22.915557690063608, -43.62101464002141 -22.915703117057653, -43.62089772170353 -22.91586076315994, -43.620796818399434 -22.91602911015233, -43.62071290186311 -22.91620653676125, -43.62064678025666 -22.916391334271474, -43.62059909036732 -22.91658172298195, -43.620570291474785 -22.916775869345322, -43.62056066092813 -22.91697190362598))" +002214,Cosmos,Zona Oeste,88a8a02857fffff,TRUE,386,-22.9169719,-43.62256066,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.62056066092813 -22.91697190362598, -43.620570291474785 -22.91716793790664, -43.62059909036732 -22.917362084270014, -43.62064678025666 -22.91755247298049, -43.62071290186311 -22.91773727049071, -43.620796818399434 -22.917914697099633, -43.62089772170353 -22.918083044092022, -43.62101464002141 -22.91824069019431, -43.62114644736576 -22.918386117188355, -43.621291874359805 -22.918517924532708, -43.62144952046209 -22.918634842850587, -43.621617867454475 -22.918735746154677, -43.621795294063396 -22.918819662691003, -43.62198009157362 -22.918885784297444, -43.6221704802841 -22.918933474186787, -43.62236462664747 -22.918962273079327, -43.62256066092813 -22.91897190362598, -43.62275669520879 -22.918962273079327, -43.62295084157216 -22.918933474186787, -43.62314123028264 -22.918885784297444, -43.623326027792864 -22.918819662691003, -43.623503454401785 -22.918735746154677, -43.62367180139417 -22.918634842850587, -43.623829447496455 -22.918517924532708, -43.6239748744905 -22.918386117188355, -43.62410668183485 -22.91824069019431, -43.62422360015273 -22.918083044092022, -43.624324503456826 -22.917914697099633, -43.62440841999315 -22.91773727049071, -43.6244745415996 -22.91755247298049, -43.62452223148894 -22.917362084270014, -43.624551030381475 -22.91716793790664, -43.62456066092813 -22.91697190362598, -43.624551030381475 -22.916775869345322, -43.62452223148894 -22.91658172298195, -43.6244745415996 -22.916391334271474, -43.62440841999315 -22.91620653676125, -43.624324503456826 -22.91602911015233, -43.62422360015273 -22.91586076315994, -43.62410668183485 -22.915703117057653, -43.6239748744905 -22.915557690063608, -43.623829447496455 -22.915425882719255, -43.62367180139417 -22.915308964401376, -43.623503454401785 -22.915208061097285, -43.623326027792864 -22.91512414456096, -43.62314123028264 -22.91505802295452, -43.62295084157216 -22.915010333065176, -43.62275669520879 -22.914981534172636, -43.62256066092813 -22.914971903625982, -43.62236462664747 -22.914981534172636, -43.6221704802841 -22.915010333065176, -43.62198009157362 -22.91505802295452, -43.621795294063396 -22.91512414456096, -43.621617867454475 -22.915208061097285, -43.62144952046209 -22.915308964401376, -43.621291874359805 -22.915425882719255, -43.62114644736576 -22.915557690063608, -43.62101464002141 -22.915703117057653, -43.62089772170353 -22.91586076315994, -43.620796818399434 -22.91602911015233, -43.62071290186311 -22.91620653676125, -43.62064678025666 -22.916391334271474, -43.62059909036732 -22.91658172298195, -43.620570291474785 -22.916775869345322, -43.62056066092813 -22.91697190362598))" +002215,Cosmos,Zona Oeste,88a8a02857fffff,TRUE,386,-22.9169719,-43.62256066,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.62056066092813 -22.91697190362598, -43.620570291474785 -22.91716793790664, -43.62059909036732 -22.917362084270014, -43.62064678025666 -22.91755247298049, -43.62071290186311 -22.91773727049071, -43.620796818399434 -22.917914697099633, -43.62089772170353 -22.918083044092022, -43.62101464002141 -22.91824069019431, -43.62114644736576 -22.918386117188355, -43.621291874359805 -22.918517924532708, -43.62144952046209 -22.918634842850587, -43.621617867454475 -22.918735746154677, -43.621795294063396 -22.918819662691003, -43.62198009157362 -22.918885784297444, -43.6221704802841 -22.918933474186787, -43.62236462664747 -22.918962273079327, -43.62256066092813 -22.91897190362598, -43.62275669520879 -22.918962273079327, -43.62295084157216 -22.918933474186787, -43.62314123028264 -22.918885784297444, -43.623326027792864 -22.918819662691003, -43.623503454401785 -22.918735746154677, -43.62367180139417 -22.918634842850587, -43.623829447496455 -22.918517924532708, -43.6239748744905 -22.918386117188355, -43.62410668183485 -22.91824069019431, -43.62422360015273 -22.918083044092022, -43.624324503456826 -22.917914697099633, -43.62440841999315 -22.91773727049071, -43.6244745415996 -22.91755247298049, -43.62452223148894 -22.917362084270014, -43.624551030381475 -22.91716793790664, -43.62456066092813 -22.91697190362598, -43.624551030381475 -22.916775869345322, -43.62452223148894 -22.91658172298195, -43.6244745415996 -22.916391334271474, -43.62440841999315 -22.91620653676125, -43.624324503456826 -22.91602911015233, -43.62422360015273 -22.91586076315994, -43.62410668183485 -22.915703117057653, -43.6239748744905 -22.915557690063608, -43.623829447496455 -22.915425882719255, -43.62367180139417 -22.915308964401376, -43.623503454401785 -22.915208061097285, -43.623326027792864 -22.91512414456096, -43.62314123028264 -22.91505802295452, -43.62295084157216 -22.915010333065176, -43.62275669520879 -22.914981534172636, -43.62256066092813 -22.914971903625982, -43.62236462664747 -22.914981534172636, -43.6221704802841 -22.915010333065176, -43.62198009157362 -22.91505802295452, -43.621795294063396 -22.91512414456096, -43.621617867454475 -22.915208061097285, -43.62144952046209 -22.915308964401376, -43.621291874359805 -22.915425882719255, -43.62114644736576 -22.915557690063608, -43.62101464002141 -22.915703117057653, -43.62089772170353 -22.91586076315994, -43.620796818399434 -22.91602911015233, -43.62071290186311 -22.91620653676125, -43.62064678025666 -22.916391334271474, -43.62059909036732 -22.91658172298195, -43.620570291474785 -22.916775869345322, -43.62056066092813 -22.91697190362598))" +002216,Inhoaíba,Zona Oeste,88a8a02801fffff,,,,,,,, +002217,Inhoaíba,Zona Oeste,88a8a02801fffff,,,,,,,, +002218,Inhoaíba,Zona Oeste,88a8a02801fffff,,,,,,,, +002219,Inhoaíba,Zona Oeste,88a8a02801fffff,TRUE,379,-22.91304925,-43.60179701,PO,S,Rio Campinho,"POLYGON ((-43.59979700842338 -22.91304924616628, -43.59980663897004 -22.91324528044694, -43.59983543786257 -22.913439426810314, -43.599883127751916 -22.91362981552079, -43.59994924935836 -22.91381461303101, -43.600033165894686 -22.913992039639933, -43.60013406919878 -22.91416038663232, -43.60025098751666 -22.91431803273461, -43.60038279486101 -22.914463459728655, -43.60052822185506 -22.914595267073008, -43.600685867957345 -22.914712185390886, -43.60085421494973 -22.914813088694977, -43.60103164155865 -22.914897005231303, -43.60121643906887 -22.914963126837744, -43.60140682777935 -22.915010816727087, -43.60160097414272 -22.915039615619627, -43.60179700842338 -22.91504924616628, -43.601993042704045 -22.915039615619627, -43.602187189067415 -22.915010816727087, -43.602377577777894 -22.914963126837744, -43.602562375288116 -22.914897005231303, -43.60273980189704 -22.914813088694977, -43.60290814888942 -22.914712185390886, -43.60306579499171 -22.914595267073008, -43.60321122198575 -22.914463459728655, -43.603343029330105 -22.91431803273461, -43.603459947647984 -22.91416038663232, -43.60356085095208 -22.913992039639933, -43.603644767488404 -22.91381461303101, -43.60371088909485 -22.91362981552079, -43.60375857898419 -22.913439426810314, -43.60378737787673 -22.91324528044694, -43.603797008423385 -22.91304924616628, -43.60378737787673 -22.912853211885622, -43.60375857898419 -22.91265906552225, -43.60371088909485 -22.912468676811773, -43.603644767488404 -22.91228387930155, -43.60356085095208 -22.91210645269263, -43.603459947647984 -22.91193810570024, -43.603343029330105 -22.911780459597953, -43.60321122198575 -22.911635032603908, -43.60306579499171 -22.911503225259555, -43.60290814888942 -22.911386306941676, -43.60273980189704 -22.911285403637585, -43.602562375288116 -22.91120148710126, -43.602377577777894 -22.911135365494818, -43.602187189067415 -22.911087675605476, -43.601993042704045 -22.911058876712936, -43.60179700842338 -22.911049246166282, -43.60160097414272 -22.911058876712936, -43.60140682777935 -22.911087675605476, -43.60121643906887 -22.911135365494818, -43.60103164155865 -22.91120148710126, -43.60085421494973 -22.911285403637585, -43.600685867957345 -22.911386306941676, -43.60052822185506 -22.911503225259555, -43.60038279486101 -22.911635032603908, -43.60025098751666 -22.911780459597953, -43.60013406919878 -22.91193810570024, -43.600033165894686 -22.91210645269263, -43.59994924935836 -22.91228387930155, -43.599883127751916 -22.912468676811773, -43.59983543786257 -22.91265906552225, -43.59980663897004 -22.912853211885622, -43.59979700842338 -22.91304924616628))" +002220,Inhoaíba,Zona Oeste,88a8a02801fffff,TRUE,379,-22.91304925,-43.60179701,PO,S,Rio Campinho,"POLYGON ((-43.59979700842338 -22.91304924616628, -43.59980663897004 -22.91324528044694, -43.59983543786257 -22.913439426810314, -43.599883127751916 -22.91362981552079, -43.59994924935836 -22.91381461303101, -43.600033165894686 -22.913992039639933, -43.60013406919878 -22.91416038663232, -43.60025098751666 -22.91431803273461, -43.60038279486101 -22.914463459728655, -43.60052822185506 -22.914595267073008, -43.600685867957345 -22.914712185390886, -43.60085421494973 -22.914813088694977, -43.60103164155865 -22.914897005231303, -43.60121643906887 -22.914963126837744, -43.60140682777935 -22.915010816727087, -43.60160097414272 -22.915039615619627, -43.60179700842338 -22.91504924616628, -43.601993042704045 -22.915039615619627, -43.602187189067415 -22.915010816727087, -43.602377577777894 -22.914963126837744, -43.602562375288116 -22.914897005231303, -43.60273980189704 -22.914813088694977, -43.60290814888942 -22.914712185390886, -43.60306579499171 -22.914595267073008, -43.60321122198575 -22.914463459728655, -43.603343029330105 -22.91431803273461, -43.603459947647984 -22.91416038663232, -43.60356085095208 -22.913992039639933, -43.603644767488404 -22.91381461303101, -43.60371088909485 -22.91362981552079, -43.60375857898419 -22.913439426810314, -43.60378737787673 -22.91324528044694, -43.603797008423385 -22.91304924616628, -43.60378737787673 -22.912853211885622, -43.60375857898419 -22.91265906552225, -43.60371088909485 -22.912468676811773, -43.603644767488404 -22.91228387930155, -43.60356085095208 -22.91210645269263, -43.603459947647984 -22.91193810570024, -43.603343029330105 -22.911780459597953, -43.60321122198575 -22.911635032603908, -43.60306579499171 -22.911503225259555, -43.60290814888942 -22.911386306941676, -43.60273980189704 -22.911285403637585, -43.602562375288116 -22.91120148710126, -43.602377577777894 -22.911135365494818, -43.602187189067415 -22.911087675605476, -43.601993042704045 -22.911058876712936, -43.60179700842338 -22.911049246166282, -43.60160097414272 -22.911058876712936, -43.60140682777935 -22.911087675605476, -43.60121643906887 -22.911135365494818, -43.60103164155865 -22.91120148710126, -43.60085421494973 -22.911285403637585, -43.600685867957345 -22.911386306941676, -43.60052822185506 -22.911503225259555, -43.60038279486101 -22.911635032603908, -43.60025098751666 -22.911780459597953, -43.60013406919878 -22.91193810570024, -43.600033165894686 -22.91210645269263, -43.59994924935836 -22.91228387930155, -43.599883127751916 -22.912468676811773, -43.59983543786257 -22.91265906552225, -43.59980663897004 -22.912853211885622, -43.59979700842338 -22.91304924616628))" +002221,Inhoaíba,Zona Oeste,88a8a02801fffff,TRUE,379,-22.91304925,-43.60179701,PO,S,Rio Campinho,"POLYGON ((-43.59979700842338 -22.91304924616628, -43.59980663897004 -22.91324528044694, -43.59983543786257 -22.913439426810314, -43.599883127751916 -22.91362981552079, -43.59994924935836 -22.91381461303101, -43.600033165894686 -22.913992039639933, -43.60013406919878 -22.91416038663232, -43.60025098751666 -22.91431803273461, -43.60038279486101 -22.914463459728655, -43.60052822185506 -22.914595267073008, -43.600685867957345 -22.914712185390886, -43.60085421494973 -22.914813088694977, -43.60103164155865 -22.914897005231303, -43.60121643906887 -22.914963126837744, -43.60140682777935 -22.915010816727087, -43.60160097414272 -22.915039615619627, -43.60179700842338 -22.91504924616628, -43.601993042704045 -22.915039615619627, -43.602187189067415 -22.915010816727087, -43.602377577777894 -22.914963126837744, -43.602562375288116 -22.914897005231303, -43.60273980189704 -22.914813088694977, -43.60290814888942 -22.914712185390886, -43.60306579499171 -22.914595267073008, -43.60321122198575 -22.914463459728655, -43.603343029330105 -22.91431803273461, -43.603459947647984 -22.91416038663232, -43.60356085095208 -22.913992039639933, -43.603644767488404 -22.91381461303101, -43.60371088909485 -22.91362981552079, -43.60375857898419 -22.913439426810314, -43.60378737787673 -22.91324528044694, -43.603797008423385 -22.91304924616628, -43.60378737787673 -22.912853211885622, -43.60375857898419 -22.91265906552225, -43.60371088909485 -22.912468676811773, -43.603644767488404 -22.91228387930155, -43.60356085095208 -22.91210645269263, -43.603459947647984 -22.91193810570024, -43.603343029330105 -22.911780459597953, -43.60321122198575 -22.911635032603908, -43.60306579499171 -22.911503225259555, -43.60290814888942 -22.911386306941676, -43.60273980189704 -22.911285403637585, -43.602562375288116 -22.91120148710126, -43.602377577777894 -22.911135365494818, -43.602187189067415 -22.911087675605476, -43.601993042704045 -22.911058876712936, -43.60179700842338 -22.911049246166282, -43.60160097414272 -22.911058876712936, -43.60140682777935 -22.911087675605476, -43.60121643906887 -22.911135365494818, -43.60103164155865 -22.91120148710126, -43.60085421494973 -22.911285403637585, -43.600685867957345 -22.911386306941676, -43.60052822185506 -22.911503225259555, -43.60038279486101 -22.911635032603908, -43.60025098751666 -22.911780459597953, -43.60013406919878 -22.91193810570024, -43.600033165894686 -22.91210645269263, -43.59994924935836 -22.91228387930155, -43.599883127751916 -22.912468676811773, -43.59983543786257 -22.91265906552225, -43.59980663897004 -22.912853211885622, -43.59979700842338 -22.91304924616628))" +002222,Inhoaíba,Zona Oeste,88a8a02805fffff,,,,,,,, +002223,Inhoaíba,Zona Oeste,88a8a02805fffff,,,,,,,, +002224,Inhoaíba,Zona Oeste,88a8a02805fffff,,,,,,,, +002225,Barra da Tijuca,Barra da Tijuca,88a8a07559fffff,,,,,,,, +002226,Barra da Tijuca,Barra da Tijuca,88a8a0755dfffff,,,,,,,, +002227,Barra da Tijuca,Barra da Tijuca,88a8a07559fffff,,,,,,,, +002228,Inhoaíba,Zona Oeste,88a8a02829fffff,,,,,,,, +002229,Inhoaíba,Zona Oeste,88a8a02829fffff,,,,,,,, +002230,Inhoaíba,Zona Oeste,88a8a02829fffff,,,,,,,, +002231,Inhoaíba,Zona Oeste,88a8a02829fffff,,,,,,,, +002232,Inhoaíba,Zona Oeste,88a8a02829fffff,,,,,,,, +002233,Inhoaíba,Zona Oeste,88a8a02829fffff,,,,,,,, +002234,Campo Grande,Zona Oeste,88a8a0282dfffff,,,,,,,, +002235,Campo Grande,Zona Oeste,88a8a0282dfffff,,,,,,,, +002236,Campo Grande,Zona Oeste,88a8a0282dfffff,,,,,,,, +002237,Campo Grande,Zona Oeste,88a8a02953fffff,,,,,,,, +002238,Campo Grande,Zona Oeste,88a8a02953fffff,,,,,,,, +002239,Campo Grande,Zona Oeste,88a8a02953fffff,,,,,,,, +002240,Campo Grande,Zona Oeste,88a8a02953fffff,TRUE,269,-22.90742019,-43.56541524,PO,S,Rio Campinho,"POLYGON ((-43.5634152384 -22.9074201946, -43.563424868946655 -22.90761622888066, -43.56345366783919 -22.907810375244033, -43.56350135772853 -22.908000763954508, -43.56356747933498 -22.90818556146473, -43.563651395871304 -22.90836298807365, -43.5637522991754 -22.90853133506604, -43.56386921749328 -22.90868898116833, -43.56400102483763 -22.908834408162374, -43.564146451831675 -22.908966215506727, -43.56430409793396 -22.909083133824605, -43.564472444926345 -22.909184037128696, -43.564649871535266 -22.909267953665022, -43.56483466904549 -22.909334075271463, -43.56502505775597 -22.909381765160806, -43.56521920411934 -22.909410564053346, -43.5654152384 -22.9094201946, -43.56561127268066 -22.909410564053346, -43.56580541904403 -22.909381765160806, -43.56599580775451 -22.909334075271463, -43.566180605264734 -22.909267953665022, -43.566358031873655 -22.909184037128696, -43.56652637886604 -22.909083133824605, -43.566684024968325 -22.908966215506727, -43.56682945196237 -22.908834408162374, -43.56696125930672 -22.90868898116833, -43.5670781776246 -22.90853133506604, -43.567179080928696 -22.90836298807365, -43.56726299746502 -22.90818556146473, -43.567329119071466 -22.908000763954508, -43.56737680896081 -22.907810375244033, -43.567405607853345 -22.90761622888066, -43.5674152384 -22.9074201946, -43.567405607853345 -22.90722416031934, -43.56737680896081 -22.907030013955968, -43.567329119071466 -22.906839625245492, -43.56726299746502 -22.90665482773527, -43.567179080928696 -22.90647740112635, -43.5670781776246 -22.90630905413396, -43.56696125930672 -22.906151408031672, -43.56682945196237 -22.906005981037627, -43.566684024968325 -22.905874173693274, -43.56652637886604 -22.905757255375395, -43.566358031873655 -22.905656352071304, -43.566180605264734 -22.905572435534978, -43.56599580775451 -22.905506313928537, -43.56580541904403 -22.905458624039195, -43.56561127268066 -22.905429825146655, -43.5654152384 -22.9054201946, -43.56521920411934 -22.905429825146655, -43.56502505775597 -22.905458624039195, -43.56483466904549 -22.905506313928537, -43.564649871535266 -22.905572435534978, -43.564472444926345 -22.905656352071304, -43.56430409793396 -22.905757255375395, -43.564146451831675 -22.905874173693274, -43.56400102483763 -22.906005981037627, -43.56386921749328 -22.906151408031672, -43.5637522991754 -22.90630905413396, -43.563651395871304 -22.90647740112635, -43.56356747933498 -22.90665482773527, -43.56350135772853 -22.906839625245492, -43.56345366783919 -22.907030013955968, -43.563424868946655 -22.90722416031934, -43.5634152384 -22.9074201946))" +002241,Campo Grande,Zona Oeste,88a8a02953fffff,TRUE,269,-22.90742019,-43.56541524,PO,S,Rio Campinho,"POLYGON ((-43.5634152384 -22.9074201946, -43.563424868946655 -22.90761622888066, -43.56345366783919 -22.907810375244033, -43.56350135772853 -22.908000763954508, -43.56356747933498 -22.90818556146473, -43.563651395871304 -22.90836298807365, -43.5637522991754 -22.90853133506604, -43.56386921749328 -22.90868898116833, -43.56400102483763 -22.908834408162374, -43.564146451831675 -22.908966215506727, -43.56430409793396 -22.909083133824605, -43.564472444926345 -22.909184037128696, -43.564649871535266 -22.909267953665022, -43.56483466904549 -22.909334075271463, -43.56502505775597 -22.909381765160806, -43.56521920411934 -22.909410564053346, -43.5654152384 -22.9094201946, -43.56561127268066 -22.909410564053346, -43.56580541904403 -22.909381765160806, -43.56599580775451 -22.909334075271463, -43.566180605264734 -22.909267953665022, -43.566358031873655 -22.909184037128696, -43.56652637886604 -22.909083133824605, -43.566684024968325 -22.908966215506727, -43.56682945196237 -22.908834408162374, -43.56696125930672 -22.90868898116833, -43.5670781776246 -22.90853133506604, -43.567179080928696 -22.90836298807365, -43.56726299746502 -22.90818556146473, -43.567329119071466 -22.908000763954508, -43.56737680896081 -22.907810375244033, -43.567405607853345 -22.90761622888066, -43.5674152384 -22.9074201946, -43.567405607853345 -22.90722416031934, -43.56737680896081 -22.907030013955968, -43.567329119071466 -22.906839625245492, -43.56726299746502 -22.90665482773527, -43.567179080928696 -22.90647740112635, -43.5670781776246 -22.90630905413396, -43.56696125930672 -22.906151408031672, -43.56682945196237 -22.906005981037627, -43.566684024968325 -22.905874173693274, -43.56652637886604 -22.905757255375395, -43.566358031873655 -22.905656352071304, -43.566180605264734 -22.905572435534978, -43.56599580775451 -22.905506313928537, -43.56580541904403 -22.905458624039195, -43.56561127268066 -22.905429825146655, -43.5654152384 -22.9054201946, -43.56521920411934 -22.905429825146655, -43.56502505775597 -22.905458624039195, -43.56483466904549 -22.905506313928537, -43.564649871535266 -22.905572435534978, -43.564472444926345 -22.905656352071304, -43.56430409793396 -22.905757255375395, -43.564146451831675 -22.905874173693274, -43.56400102483763 -22.906005981037627, -43.56386921749328 -22.906151408031672, -43.5637522991754 -22.90630905413396, -43.563651395871304 -22.90647740112635, -43.56356747933498 -22.90665482773527, -43.56350135772853 -22.906839625245492, -43.56345366783919 -22.907030013955968, -43.563424868946655 -22.90722416031934, -43.5634152384 -22.9074201946))" +002242,Campo Grande,Zona Oeste,88a8a02953fffff,TRUE,269,-22.90742019,-43.56541524,PO,S,Rio Campinho,"POLYGON ((-43.5634152384 -22.9074201946, -43.563424868946655 -22.90761622888066, -43.56345366783919 -22.907810375244033, -43.56350135772853 -22.908000763954508, -43.56356747933498 -22.90818556146473, -43.563651395871304 -22.90836298807365, -43.5637522991754 -22.90853133506604, -43.56386921749328 -22.90868898116833, -43.56400102483763 -22.908834408162374, -43.564146451831675 -22.908966215506727, -43.56430409793396 -22.909083133824605, -43.564472444926345 -22.909184037128696, -43.564649871535266 -22.909267953665022, -43.56483466904549 -22.909334075271463, -43.56502505775597 -22.909381765160806, -43.56521920411934 -22.909410564053346, -43.5654152384 -22.9094201946, -43.56561127268066 -22.909410564053346, -43.56580541904403 -22.909381765160806, -43.56599580775451 -22.909334075271463, -43.566180605264734 -22.909267953665022, -43.566358031873655 -22.909184037128696, -43.56652637886604 -22.909083133824605, -43.566684024968325 -22.908966215506727, -43.56682945196237 -22.908834408162374, -43.56696125930672 -22.90868898116833, -43.5670781776246 -22.90853133506604, -43.567179080928696 -22.90836298807365, -43.56726299746502 -22.90818556146473, -43.567329119071466 -22.908000763954508, -43.56737680896081 -22.907810375244033, -43.567405607853345 -22.90761622888066, -43.5674152384 -22.9074201946, -43.567405607853345 -22.90722416031934, -43.56737680896081 -22.907030013955968, -43.567329119071466 -22.906839625245492, -43.56726299746502 -22.90665482773527, -43.567179080928696 -22.90647740112635, -43.5670781776246 -22.90630905413396, -43.56696125930672 -22.906151408031672, -43.56682945196237 -22.906005981037627, -43.566684024968325 -22.905874173693274, -43.56652637886604 -22.905757255375395, -43.566358031873655 -22.905656352071304, -43.566180605264734 -22.905572435534978, -43.56599580775451 -22.905506313928537, -43.56580541904403 -22.905458624039195, -43.56561127268066 -22.905429825146655, -43.5654152384 -22.9054201946, -43.56521920411934 -22.905429825146655, -43.56502505775597 -22.905458624039195, -43.56483466904549 -22.905506313928537, -43.564649871535266 -22.905572435534978, -43.564472444926345 -22.905656352071304, -43.56430409793396 -22.905757255375395, -43.564146451831675 -22.905874173693274, -43.56400102483763 -22.906005981037627, -43.56386921749328 -22.906151408031672, -43.5637522991754 -22.90630905413396, -43.563651395871304 -22.90647740112635, -43.56356747933498 -22.90665482773527, -43.56350135772853 -22.906839625245492, -43.56345366783919 -22.907030013955968, -43.563424868946655 -22.90722416031934, -43.5634152384 -22.9074201946))" +002243,Campo Grande,Zona Oeste,88a8a02919fffff,,,,,,,, +002244,Campo Grande,Zona Oeste,88a8a02919fffff,,,,,,,, +002245,Campo Grande,Zona Oeste,88a8a02919fffff,,,,,,,, +002249,Santa Cruz,Zona Oeste,88a8a02a8bfffff,TRUE,291,-22.92690011,-43.67760137,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.675601365 -22.9269001118, -43.675610995546656 -22.927096146080657, -43.67563979443919 -22.92729029244403, -43.675687484328535 -22.927480681154506, -43.67575360593498 -22.92766547866473, -43.675837522471305 -22.92784290527365, -43.6759384257754 -22.92801125226604, -43.67605534409328 -22.928168898368327, -43.67618715143763 -22.928314325362372, -43.676332578431676 -22.928446132706725, -43.676490224533964 -22.928563051024604, -43.676658571526346 -22.928663954328695, -43.67683599813527 -22.92874787086502, -43.67702079564549 -22.92881399247146, -43.67721118435597 -22.928861682360804, -43.67740533071934 -22.928890481253344, -43.677601365 -22.928900111799997, -43.677797399280664 -22.928890481253344, -43.67799154564403 -22.928861682360804, -43.67818193435451 -22.92881399247146, -43.678366731864735 -22.92874787086502, -43.678544158473656 -22.928663954328695, -43.67871250546604 -22.928563051024604, -43.678870151568326 -22.928446132706725, -43.67901557856237 -22.928314325362372, -43.679147385906724 -22.928168898368327, -43.6792643042246 -22.92801125226604, -43.6793652075287 -22.92784290527365, -43.67944912406502 -22.92766547866473, -43.67951524567147 -22.927480681154506, -43.67956293556081 -22.92729029244403, -43.679591734453346 -22.927096146080657, -43.679601365 -22.9269001118, -43.679591734453346 -22.92670407751934, -43.67956293556081 -22.926509931155966, -43.67951524567147 -22.92631954244549, -43.67944912406502 -22.92613474493527, -43.6793652075287 -22.925957318326347, -43.6792643042246 -22.925788971333958, -43.679147385906724 -22.92563132523167, -43.67901557856237 -22.925485898237625, -43.678870151568326 -22.925354090893272, -43.67871250546604 -22.925237172575393, -43.678544158473656 -22.925136269271302, -43.678366731864735 -22.925052352734976, -43.67818193435451 -22.924986231128536, -43.67799154564403 -22.924938541239193, -43.677797399280664 -22.924909742346653, -43.677601365 -22.9249001118, -43.67740533071934 -22.924909742346653, -43.67721118435597 -22.924938541239193, -43.67702079564549 -22.924986231128536, -43.67683599813527 -22.925052352734976, -43.676658571526346 -22.925136269271302, -43.676490224533964 -22.925237172575393, -43.676332578431676 -22.925354090893272, -43.67618715143763 -22.925485898237625, -43.67605534409328 -22.92563132523167, -43.6759384257754 -22.925788971333958, -43.675837522471305 -22.925957318326347, -43.67575360593498 -22.92613474493527, -43.675687484328535 -22.92631954244549, -43.67563979443919 -22.926509931155966, -43.675610995546656 -22.92670407751934, -43.675601365 -22.9269001118))" +002250,Santa Cruz,Zona Oeste,88a8a02a8bfffff,TRUE,291,-22.92690011,-43.67760137,PO,S,Rio Cacao Vermelho,"POLYGON ((-43.675601365 -22.9269001118, -43.675610995546656 -22.927096146080657, -43.67563979443919 -22.92729029244403, -43.675687484328535 -22.927480681154506, -43.67575360593498 -22.92766547866473, -43.675837522471305 -22.92784290527365, -43.6759384257754 -22.92801125226604, -43.67605534409328 -22.928168898368327, -43.67618715143763 -22.928314325362372, -43.676332578431676 -22.928446132706725, -43.676490224533964 -22.928563051024604, -43.676658571526346 -22.928663954328695, -43.67683599813527 -22.92874787086502, -43.67702079564549 -22.92881399247146, -43.67721118435597 -22.928861682360804, -43.67740533071934 -22.928890481253344, -43.677601365 -22.928900111799997, -43.677797399280664 -22.928890481253344, -43.67799154564403 -22.928861682360804, -43.67818193435451 -22.92881399247146, -43.678366731864735 -22.92874787086502, -43.678544158473656 -22.928663954328695, -43.67871250546604 -22.928563051024604, -43.678870151568326 -22.928446132706725, -43.67901557856237 -22.928314325362372, -43.679147385906724 -22.928168898368327, -43.6792643042246 -22.92801125226604, -43.6793652075287 -22.92784290527365, -43.67944912406502 -22.92766547866473, -43.67951524567147 -22.927480681154506, -43.67956293556081 -22.92729029244403, -43.679591734453346 -22.927096146080657, -43.679601365 -22.9269001118, -43.679591734453346 -22.92670407751934, -43.67956293556081 -22.926509931155966, -43.67951524567147 -22.92631954244549, -43.67944912406502 -22.92613474493527, -43.6793652075287 -22.925957318326347, -43.6792643042246 -22.925788971333958, -43.679147385906724 -22.92563132523167, -43.67901557856237 -22.925485898237625, -43.678870151568326 -22.925354090893272, -43.67871250546604 -22.925237172575393, -43.678544158473656 -22.925136269271302, -43.678366731864735 -22.925052352734976, -43.67818193435451 -22.924986231128536, -43.67799154564403 -22.924938541239193, -43.677797399280664 -22.924909742346653, -43.677601365 -22.9249001118, -43.67740533071934 -22.924909742346653, -43.67721118435597 -22.924938541239193, -43.67702079564549 -22.924986231128536, -43.67683599813527 -22.925052352734976, -43.676658571526346 -22.925136269271302, -43.676490224533964 -22.925237172575393, -43.676332578431676 -22.925354090893272, -43.67618715143763 -22.925485898237625, -43.67605534409328 -22.92563132523167, -43.6759384257754 -22.925788971333958, -43.675837522471305 -22.925957318326347, -43.67575360593498 -22.92613474493527, -43.675687484328535 -22.92631954244549, -43.67563979443919 -22.926509931155966, -43.675610995546656 -22.92670407751934, -43.675601365 -22.9269001118))" +002253,Barra da Tijuca,Barra da Tijuca,88a8a070b3fffff,,,,,,,, +002254,Barra da Tijuca,Barra da Tijuca,88a8a070b3fffff,,,,,,,, +002255,Barra da Tijuca,Barra da Tijuca,88a8a070b3fffff,,,,,,,, +002256,Santa Cruz,Zona Oeste,88a8a02ac7fffff,,,,,,,, +002257,Santa Cruz,Zona Oeste,88a8a02ac7fffff,,,,,,,, +002258,Santa Cruz,Zona Oeste,88a8a02ac7fffff,,,,,,,, +002259,Cosmos,Zona Oeste,88a8a0280bfffff,,,,,,,, +002260,Cosmos,Zona Oeste,88a8a0280bfffff,,,,,,,, +002261,Cosmos,Zona Oeste,88a8a0280bfffff,,,,,,,, +002262,Vargem Grande,Barra da Tijuca,88a8a076edfffff,,,,,,,, +002263,Vargem Grande,Barra da Tijuca,88a8a076edfffff,,,,,,,, +002264,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076edfffff,,,,,,,, +002265,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076ebfffff,,,,,,,, +002266,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076ebfffff,,,,,,,, +002267,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076ebfffff,,,,,,,, +002274,Campo Grande,Zona Oeste,88a8a0291dfffff,TRUE,117,-22.90277783,-43.55521186,PM,S,Rio Cabucu Piraque,"POLYGON ((-43.553211861499996 -22.9027778267, -43.55322149204665 -22.90297386098066, -43.55325029093919 -22.903168007344032, -43.55329798082853 -22.903358396054507, -43.553364102434976 -22.90354319356473, -43.5534480189713 -22.90372062017365, -43.5535489222754 -22.90388896716604, -43.553665840593276 -22.904046613268328, -43.55379764793763 -22.904192040262373, -43.553943074931674 -22.904323847606726, -43.55410072103396 -22.904440765924605, -43.55426906802634 -22.904541669228696, -43.554446494635265 -22.90462558576502, -43.55463129214549 -22.904691707371462, -43.554821680855966 -22.904739397260805, -43.555015827219336 -22.904768196153345, -43.5552118615 -22.9047778267, -43.55540789578066 -22.904768196153345, -43.55560204214403 -22.904739397260805, -43.55579243085451 -22.904691707371462, -43.55597722836473 -22.90462558576502, -43.55615465497365 -22.904541669228696, -43.556323001966035 -22.904440765924605, -43.55648064806832 -22.904323847606726, -43.55662607506237 -22.904192040262373, -43.55675788240672 -22.904046613268328, -43.5568748007246 -22.90388896716604, -43.556975704028694 -22.90372062017365, -43.55705962056502 -22.90354319356473, -43.557125742171465 -22.903358396054507, -43.55717343206081 -22.903168007344032, -43.557202230953344 -22.90297386098066, -43.5572118615 -22.9027778267, -43.557202230953344 -22.90258179241934, -43.55717343206081 -22.902387646055967, -43.557125742171465 -22.90219725734549, -43.55705962056502 -22.90201245983527, -43.556975704028694 -22.901835033226348, -43.5568748007246 -22.90166668623396, -43.55675788240672 -22.90150904013167, -43.55662607506237 -22.901363613137626, -43.55648064806832 -22.901231805793273, -43.556323001966035 -22.901114887475394, -43.55615465497365 -22.901013984171303, -43.55597722836473 -22.900930067634977, -43.55579243085451 -22.900863946028537, -43.55560204214403 -22.900816256139194, -43.55540789578066 -22.900787457246654, -43.5552118615 -22.9007778267, -43.555015827219336 -22.900787457246654, -43.554821680855966 -22.900816256139194, -43.55463129214549 -22.900863946028537, -43.554446494635265 -22.900930067634977, -43.55426906802634 -22.901013984171303, -43.55410072103396 -22.901114887475394, -43.553943074931674 -22.901231805793273, -43.55379764793763 -22.901363613137626, -43.553665840593276 -22.90150904013167, -43.5535489222754 -22.90166668623396, -43.5534480189713 -22.901835033226348, -43.553364102434976 -22.90201245983527, -43.55329798082853 -22.90219725734549, -43.55325029093919 -22.902387646055967, -43.55322149204665 -22.90258179241934, -43.553211861499996 -22.9027778267))" +002275,Campo Grande,Zona Oeste,88a8a0291dfffff,TRUE,117,-22.90277783,-43.55521186,PM,S,Rio Cabucu Piraque,"POLYGON ((-43.553211861499996 -22.9027778267, -43.55322149204665 -22.90297386098066, -43.55325029093919 -22.903168007344032, -43.55329798082853 -22.903358396054507, -43.553364102434976 -22.90354319356473, -43.5534480189713 -22.90372062017365, -43.5535489222754 -22.90388896716604, -43.553665840593276 -22.904046613268328, -43.55379764793763 -22.904192040262373, -43.553943074931674 -22.904323847606726, -43.55410072103396 -22.904440765924605, -43.55426906802634 -22.904541669228696, -43.554446494635265 -22.90462558576502, -43.55463129214549 -22.904691707371462, -43.554821680855966 -22.904739397260805, -43.555015827219336 -22.904768196153345, -43.5552118615 -22.9047778267, -43.55540789578066 -22.904768196153345, -43.55560204214403 -22.904739397260805, -43.55579243085451 -22.904691707371462, -43.55597722836473 -22.90462558576502, -43.55615465497365 -22.904541669228696, -43.556323001966035 -22.904440765924605, -43.55648064806832 -22.904323847606726, -43.55662607506237 -22.904192040262373, -43.55675788240672 -22.904046613268328, -43.5568748007246 -22.90388896716604, -43.556975704028694 -22.90372062017365, -43.55705962056502 -22.90354319356473, -43.557125742171465 -22.903358396054507, -43.55717343206081 -22.903168007344032, -43.557202230953344 -22.90297386098066, -43.5572118615 -22.9027778267, -43.557202230953344 -22.90258179241934, -43.55717343206081 -22.902387646055967, -43.557125742171465 -22.90219725734549, -43.55705962056502 -22.90201245983527, -43.556975704028694 -22.901835033226348, -43.5568748007246 -22.90166668623396, -43.55675788240672 -22.90150904013167, -43.55662607506237 -22.901363613137626, -43.55648064806832 -22.901231805793273, -43.556323001966035 -22.901114887475394, -43.55615465497365 -22.901013984171303, -43.55597722836473 -22.900930067634977, -43.55579243085451 -22.900863946028537, -43.55560204214403 -22.900816256139194, -43.55540789578066 -22.900787457246654, -43.5552118615 -22.9007778267, -43.555015827219336 -22.900787457246654, -43.554821680855966 -22.900816256139194, -43.55463129214549 -22.900863946028537, -43.554446494635265 -22.900930067634977, -43.55426906802634 -22.901013984171303, -43.55410072103396 -22.901114887475394, -43.553943074931674 -22.901231805793273, -43.55379764793763 -22.901363613137626, -43.553665840593276 -22.90150904013167, -43.5535489222754 -22.90166668623396, -43.5534480189713 -22.901835033226348, -43.553364102434976 -22.90201245983527, -43.55329798082853 -22.90219725734549, -43.55325029093919 -22.902387646055967, -43.55322149204665 -22.90258179241934, -43.553211861499996 -22.9027778267))" +002276,Campo Grande,Zona Oeste,88a8a0291dfffff,TRUE,117,-22.90277783,-43.55521186,PM,S,Rio Cabucu Piraque,"POLYGON ((-43.553211861499996 -22.9027778267, -43.55322149204665 -22.90297386098066, -43.55325029093919 -22.903168007344032, -43.55329798082853 -22.903358396054507, -43.553364102434976 -22.90354319356473, -43.5534480189713 -22.90372062017365, -43.5535489222754 -22.90388896716604, -43.553665840593276 -22.904046613268328, -43.55379764793763 -22.904192040262373, -43.553943074931674 -22.904323847606726, -43.55410072103396 -22.904440765924605, -43.55426906802634 -22.904541669228696, -43.554446494635265 -22.90462558576502, -43.55463129214549 -22.904691707371462, -43.554821680855966 -22.904739397260805, -43.555015827219336 -22.904768196153345, -43.5552118615 -22.9047778267, -43.55540789578066 -22.904768196153345, -43.55560204214403 -22.904739397260805, -43.55579243085451 -22.904691707371462, -43.55597722836473 -22.90462558576502, -43.55615465497365 -22.904541669228696, -43.556323001966035 -22.904440765924605, -43.55648064806832 -22.904323847606726, -43.55662607506237 -22.904192040262373, -43.55675788240672 -22.904046613268328, -43.5568748007246 -22.90388896716604, -43.556975704028694 -22.90372062017365, -43.55705962056502 -22.90354319356473, -43.557125742171465 -22.903358396054507, -43.55717343206081 -22.903168007344032, -43.557202230953344 -22.90297386098066, -43.5572118615 -22.9027778267, -43.557202230953344 -22.90258179241934, -43.55717343206081 -22.902387646055967, -43.557125742171465 -22.90219725734549, -43.55705962056502 -22.90201245983527, -43.556975704028694 -22.901835033226348, -43.5568748007246 -22.90166668623396, -43.55675788240672 -22.90150904013167, -43.55662607506237 -22.901363613137626, -43.55648064806832 -22.901231805793273, -43.556323001966035 -22.901114887475394, -43.55615465497365 -22.901013984171303, -43.55597722836473 -22.900930067634977, -43.55579243085451 -22.900863946028537, -43.55560204214403 -22.900816256139194, -43.55540789578066 -22.900787457246654, -43.5552118615 -22.9007778267, -43.555015827219336 -22.900787457246654, -43.554821680855966 -22.900816256139194, -43.55463129214549 -22.900863946028537, -43.554446494635265 -22.900930067634977, -43.55426906802634 -22.901013984171303, -43.55410072103396 -22.901114887475394, -43.553943074931674 -22.901231805793273, -43.55379764793763 -22.901363613137626, -43.553665840593276 -22.90150904013167, -43.5535489222754 -22.90166668623396, -43.5534480189713 -22.901835033226348, -43.553364102434976 -22.90201245983527, -43.55329798082853 -22.90219725734549, -43.55325029093919 -22.902387646055967, -43.55322149204665 -22.90258179241934, -43.553211861499996 -22.9027778267))" +002277,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07637fffff,,,,,,,, +002278,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07637fffff,,,,,,,, +002279,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07637fffff,,,,,,,, +002280,Santa Cruz,Zona Oeste,88a8a02a13fffff,,,,,,,, +002281,Santa Cruz,Zona Oeste,88a8a02a13fffff,,,,,,,, +002282,Santa Cruz,Zona Oeste,88a8a02a13fffff,,,,,,,, +002283,Santa Cruz,Zona Oeste,88a8a02ac7fffff,,,,,,,, +002284,Santa Cruz,Zona Oeste,88a8a02ac7fffff,,,,,,,, +002289,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +002290,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +002291,Barra da Tijuca,Barra da Tijuca,88a8a0624dfffff,,,,,,,, +002292,Barra da Tijuca,Barra da Tijuca,88a8a0624dfffff,,,,,,,, +002293,Barra da Tijuca,Barra da Tijuca,88a8a0624dfffff,,,,,,,, +002294,Barra da Tijuca,Barra da Tijuca,88a8a0624dfffff,,,,,,,, +002295,Barra da Tijuca,Barra da Tijuca,88a8a0624dfffff,,,,,,,, +002296,Barra da Tijuca,Barra da Tijuca,88a8a0624dfffff,,,,,,,, +002297,Barra da Tijuca,Barra da Tijuca,88a8a06249fffff,,,,,,,, +002298,Barra da Tijuca,Barra da Tijuca,88a8a06249fffff,,,,,,,, +002299,Barra da Tijuca,Barra da Tijuca,88a8a06249fffff,,,,,,,, +002300,Barra da Tijuca,Barra da Tijuca,88a8a0624bfffff,,,,,,,, +002301,Barra da Tijuca,Barra da Tijuca,88a8a0624bfffff,,,,,,,, +002302,Barra da Tijuca,Barra da Tijuca,88a8a0624bfffff,,,,,,,, +002303,Barra da Tijuca,Barra da Tijuca,88a8a070b7fffff,,,,,,,, +002304,Barra da Tijuca,Barra da Tijuca,88a8a070b7fffff,,,,,,,, +002305,Barra da Tijuca,Barra da Tijuca,88a8a070b7fffff,,,,,,,, +002306,Barra da Tijuca,Barra da Tijuca,88a8a070b7fffff,,,,,,,, +002307,Barra da Tijuca,Barra da Tijuca,88a8a070b7fffff,,,,,,,, +002308,Barra da Tijuca,Barra da Tijuca,88a8a070b7fffff,,,,,,,, +002309,Barra da Tijuca,Barra da Tijuca,88a8a070b3fffff,,,,,,,, +002310,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002311,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002312,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002313,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002314,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002315,Barra da Tijuca,Barra da Tijuca,88a8a0756bfffff,,,,,,,, +002316,Barra da Tijuca,Barra da Tijuca,88a8a07569fffff,,,,,,,, +002317,Barra da Tijuca,Barra da Tijuca,88a8a0756bfffff,,,,,,,, +002318,Barra da Tijuca,Barra da Tijuca,88a8a07545fffff,,,,,,,, +002319,Barra da Tijuca,Barra da Tijuca,88a8a07545fffff,,,,,,,, +002320,Barra da Tijuca,Barra da Tijuca,88a8a07545fffff,,,,,,,, +002321,Barra da Tijuca,Barra da Tijuca,88a8a07547fffff,,,,,,,, +002322,Barra da Tijuca,Barra da Tijuca,88a8a07547fffff,,,,,,,, +002323,Barra da Tijuca,Barra da Tijuca,88a8a07547fffff,,,,,,,, +002324,Barra da Tijuca,Barra da Tijuca,88a8a07543fffff,,,,,,,, +002325,Barra da Tijuca,Barra da Tijuca,88a8a07543fffff,,,,,,,, +002326,Barra da Tijuca,Barra da Tijuca,88a8a07543fffff,,,,,,,, +002327,Barra da Tijuca,Barra da Tijuca,88a8a0755dfffff,,,,,,,, +002328,Barra da Tijuca,Barra da Tijuca,88a8a0755dfffff,,,,,,,, +002329,Barra da Tijuca,Barra da Tijuca,88a8a0755dfffff,,,,,,,, +002330,Barra da Tijuca,Barra da Tijuca,88a8a07559fffff,,,,,,,, +002331,Barra da Tijuca,Barra da Tijuca,88a8a07559fffff,,,,,,,, +002332,Barra da Tijuca,Barra da Tijuca,88a8a07559fffff,,,,,,,, +002333,Barra da Tijuca,Barra da Tijuca,88a8a07465fffff,,,,,,,, +002334,Barra da Tijuca,Barra da Tijuca,88a8a07465fffff,,,,,,,, +002335,Barra da Tijuca,Barra da Tijuca,88a8a07465fffff,,,,,,,, +002336,Barra da Tijuca,Barra da Tijuca,88a8a07461fffff,,,,,,,, +002337,Barra da Tijuca,Barra da Tijuca,88a8a07461fffff,,,,,,,, +002338,Barra da Tijuca,Barra da Tijuca,88a8a07461fffff,,,,,,,, +002339,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0746bfffff,,,,,,,, +002340,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0746bfffff,,,,,,,, +002341,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0746bfffff,,,,,,,, +002342,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0746bfffff,,,,,,,, +002343,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0746bfffff,,,,,,,, +002344,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0746bfffff,,,,,,,, +002345,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07445fffff,,,,,,,, +002346,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07445fffff,,,,,,,, +002347,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07445fffff,,,,,,,, +002348,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07447fffff,,,,,,,, +002349,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07447fffff,,,,,,,, +002350,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07447fffff,,,,,,,, +002357,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744bfffff,,,,,,,, +002358,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744bfffff,,,,,,,, +002359,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0744bfffff,,,,,,,, +002360,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07637fffff,,,,,,,, +002361,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07637fffff,,,,,,,, +002362,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07637fffff,,,,,,,, +002363,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07633fffff,,,,,,,, +002364,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07633fffff,,,,,,,, +002365,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07633fffff,,,,,,,, +002366,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07633fffff,,,,,,,, +002367,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07633fffff,,,,,,,, +002368,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07633fffff,,,,,,,, +002372,Vargem Grande,Barra da Tijuca,88a8a076e9fffff,,,,,,,, +002373,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076e9fffff,,,,,,,, +002374,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076e9fffff,,,,,,,, +002375,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076c7fffff,,,,,,,, +002376,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076c7fffff,,,,,,,, +002377,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076c7fffff,,,,,,,, +002378,Guaratiba,Zona Oeste,88a8a076d1fffff,,,,,,,, +002379,Guaratiba,Zona Oeste,88a8a076d1fffff,,,,,,,, +002380,Guaratiba,Zona Oeste,88a8a076d1fffff,,,,,,,, +002387,Guaratiba,Zona Oeste,88a8a02a05fffff,,,,,,,, +002388,Guaratiba,Zona Oeste,88a8a02a0dfffff,,,,,,,, +002389,Guaratiba,Zona Oeste,88a8a02a05fffff,,,,,,,, +002390,Guaratiba,Zona Oeste,88a8a02a05fffff,,,,,,,, +002394,Santa Cruz,Zona Oeste,88a8a02a8bfffff,,,,,,,, +002395,Santa Cruz,Zona Oeste,88a8a02a8bfffff,,,,,,,, +002396,Santa Cruz,Zona Oeste,88a8a02a8bfffff,,,,,,,, +002400,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07461fffff,,,,,,,, +002401,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07461fffff,,,,,,,, +002402,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07461fffff,,,,,,,, +002403,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07467fffff,,,,,,,, +002404,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07467fffff,,,,,,,, +002405,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07467fffff,,,,,,,, +002406,Barra da Tijuca,Barra da Tijuca,88a8a07553fffff,,,,,,,, +002407,Barra da Tijuca,Barra da Tijuca,88a8a07553fffff,,,,,,,, +002408,Barra da Tijuca,Barra da Tijuca,88a8a07553fffff,,,,,,,, +002409,Barra da Tijuca,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +002410,Barra da Tijuca,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +002411,Barra da Tijuca,Barra da Tijuca,88a8a07557fffff,,,,,,,, +002412,Barra da Tijuca,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +002413,Barra da Tijuca,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +002414,Barra da Tijuca,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +002415,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002416,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002417,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002420,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +002421,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +002422,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +002423,Jacarepaguá,Jacarepaguá,88a8a07531fffff,TRUE,193,-22.96385484,-43.3943982,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3923982005 -22.9638548365, -43.392407831046654 -22.96405087078066, -43.39243662993919 -22.964245017144034, -43.39248431982853 -22.96443540585451, -43.39255044143498 -22.96462020336473, -43.3926343579713 -22.964797629973653, -43.3927352612754 -22.96496597696604, -43.39285217959328 -22.96512362306833, -43.39298398693763 -22.965269050062375, -43.393129413931675 -22.965400857406728, -43.39328706003396 -22.965517775724607, -43.393455407026345 -22.965618679028697, -43.393632833635266 -22.965702595565023, -43.39381763114549 -22.965768717171464, -43.39400801985597 -22.965816407060807, -43.39420216621934 -22.965845205953347, -43.3943982005 -22.9658548365, -43.39459423478066 -22.965845205953347, -43.39478838114403 -22.965816407060807, -43.39497876985451 -22.965768717171464, -43.39516356736473 -22.965702595565023, -43.395340993973655 -22.965618679028697, -43.395509340966036 -22.965517775724607, -43.395666987068324 -22.965400857406728, -43.39581241406237 -22.965269050062375, -43.39594422140672 -22.96512362306833, -43.3960611397246 -22.96496597696604, -43.396162043028696 -22.964797629973653, -43.39624595956502 -22.96462020336473, -43.396312081171466 -22.96443540585451, -43.39635977106081 -22.964245017144034, -43.396388569953345 -22.96405087078066, -43.3963982005 -22.9638548365, -43.396388569953345 -22.963658802219342, -43.39635977106081 -22.96346465585597, -43.396312081171466 -22.963274267145493, -43.39624595956502 -22.96308946963527, -43.396162043028696 -22.96291204302635, -43.3960611397246 -22.96274369603396, -43.39594422140672 -22.962586049931673, -43.39581241406237 -22.962440622937628, -43.395666987068324 -22.962308815593275, -43.395509340966036 -22.962191897275396, -43.395340993973655 -22.962090993971305, -43.39516356736473 -22.96200707743498, -43.39497876985451 -22.96194095582854, -43.39478838114403 -22.961893265939196, -43.39459423478066 -22.961864467046656, -43.3943982005 -22.961854836500002, -43.39420216621934 -22.961864467046656, -43.39400801985597 -22.961893265939196, -43.39381763114549 -22.96194095582854, -43.393632833635266 -22.96200707743498, -43.393455407026345 -22.962090993971305, -43.39328706003396 -22.962191897275396, -43.393129413931675 -22.962308815593275, -43.39298398693763 -22.962440622937628, -43.39285217959328 -22.962586049931673, -43.3927352612754 -22.96274369603396, -43.3926343579713 -22.96291204302635, -43.39255044143498 -22.96308946963527, -43.39248431982853 -22.963274267145493, -43.39243662993919 -22.96346465585597, -43.392407831046654 -22.963658802219342, -43.3923982005 -22.9638548365))" +002424,Jacarepaguá,Jacarepaguá,88a8a07531fffff,TRUE,193,-22.96385484,-43.3943982,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3923982005 -22.9638548365, -43.392407831046654 -22.96405087078066, -43.39243662993919 -22.964245017144034, -43.39248431982853 -22.96443540585451, -43.39255044143498 -22.96462020336473, -43.3926343579713 -22.964797629973653, -43.3927352612754 -22.96496597696604, -43.39285217959328 -22.96512362306833, -43.39298398693763 -22.965269050062375, -43.393129413931675 -22.965400857406728, -43.39328706003396 -22.965517775724607, -43.393455407026345 -22.965618679028697, -43.393632833635266 -22.965702595565023, -43.39381763114549 -22.965768717171464, -43.39400801985597 -22.965816407060807, -43.39420216621934 -22.965845205953347, -43.3943982005 -22.9658548365, -43.39459423478066 -22.965845205953347, -43.39478838114403 -22.965816407060807, -43.39497876985451 -22.965768717171464, -43.39516356736473 -22.965702595565023, -43.395340993973655 -22.965618679028697, -43.395509340966036 -22.965517775724607, -43.395666987068324 -22.965400857406728, -43.39581241406237 -22.965269050062375, -43.39594422140672 -22.96512362306833, -43.3960611397246 -22.96496597696604, -43.396162043028696 -22.964797629973653, -43.39624595956502 -22.96462020336473, -43.396312081171466 -22.96443540585451, -43.39635977106081 -22.964245017144034, -43.396388569953345 -22.96405087078066, -43.3963982005 -22.9638548365, -43.396388569953345 -22.963658802219342, -43.39635977106081 -22.96346465585597, -43.396312081171466 -22.963274267145493, -43.39624595956502 -22.96308946963527, -43.396162043028696 -22.96291204302635, -43.3960611397246 -22.96274369603396, -43.39594422140672 -22.962586049931673, -43.39581241406237 -22.962440622937628, -43.395666987068324 -22.962308815593275, -43.395509340966036 -22.962191897275396, -43.395340993973655 -22.962090993971305, -43.39516356736473 -22.96200707743498, -43.39497876985451 -22.96194095582854, -43.39478838114403 -22.961893265939196, -43.39459423478066 -22.961864467046656, -43.3943982005 -22.961854836500002, -43.39420216621934 -22.961864467046656, -43.39400801985597 -22.961893265939196, -43.39381763114549 -22.96194095582854, -43.393632833635266 -22.96200707743498, -43.393455407026345 -22.962090993971305, -43.39328706003396 -22.962191897275396, -43.393129413931675 -22.962308815593275, -43.39298398693763 -22.962440622937628, -43.39285217959328 -22.962586049931673, -43.3927352612754 -22.96274369603396, -43.3926343579713 -22.96291204302635, -43.39255044143498 -22.96308946963527, -43.39248431982853 -22.963274267145493, -43.39243662993919 -22.96346465585597, -43.392407831046654 -22.963658802219342, -43.3923982005 -22.9638548365))" +002425,Jacarepaguá,Jacarepaguá,88a8a07531fffff,TRUE,193,-22.96385484,-43.3943982,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3923982005 -22.9638548365, -43.392407831046654 -22.96405087078066, -43.39243662993919 -22.964245017144034, -43.39248431982853 -22.96443540585451, -43.39255044143498 -22.96462020336473, -43.3926343579713 -22.964797629973653, -43.3927352612754 -22.96496597696604, -43.39285217959328 -22.96512362306833, -43.39298398693763 -22.965269050062375, -43.393129413931675 -22.965400857406728, -43.39328706003396 -22.965517775724607, -43.393455407026345 -22.965618679028697, -43.393632833635266 -22.965702595565023, -43.39381763114549 -22.965768717171464, -43.39400801985597 -22.965816407060807, -43.39420216621934 -22.965845205953347, -43.3943982005 -22.9658548365, -43.39459423478066 -22.965845205953347, -43.39478838114403 -22.965816407060807, -43.39497876985451 -22.965768717171464, -43.39516356736473 -22.965702595565023, -43.395340993973655 -22.965618679028697, -43.395509340966036 -22.965517775724607, -43.395666987068324 -22.965400857406728, -43.39581241406237 -22.965269050062375, -43.39594422140672 -22.96512362306833, -43.3960611397246 -22.96496597696604, -43.396162043028696 -22.964797629973653, -43.39624595956502 -22.96462020336473, -43.396312081171466 -22.96443540585451, -43.39635977106081 -22.964245017144034, -43.396388569953345 -22.96405087078066, -43.3963982005 -22.9638548365, -43.396388569953345 -22.963658802219342, -43.39635977106081 -22.96346465585597, -43.396312081171466 -22.963274267145493, -43.39624595956502 -22.96308946963527, -43.396162043028696 -22.96291204302635, -43.3960611397246 -22.96274369603396, -43.39594422140672 -22.962586049931673, -43.39581241406237 -22.962440622937628, -43.395666987068324 -22.962308815593275, -43.395509340966036 -22.962191897275396, -43.395340993973655 -22.962090993971305, -43.39516356736473 -22.96200707743498, -43.39497876985451 -22.96194095582854, -43.39478838114403 -22.961893265939196, -43.39459423478066 -22.961864467046656, -43.3943982005 -22.961854836500002, -43.39420216621934 -22.961864467046656, -43.39400801985597 -22.961893265939196, -43.39381763114549 -22.96194095582854, -43.393632833635266 -22.96200707743498, -43.393455407026345 -22.962090993971305, -43.39328706003396 -22.962191897275396, -43.393129413931675 -22.962308815593275, -43.39298398693763 -22.962440622937628, -43.39285217959328 -22.962586049931673, -43.3927352612754 -22.96274369603396, -43.3926343579713 -22.96291204302635, -43.39255044143498 -22.96308946963527, -43.39248431982853 -22.963274267145493, -43.39243662993919 -22.96346465585597, -43.392407831046654 -22.963658802219342, -43.3923982005 -22.9638548365))" +002426,Magalhães Bastos,Grande Bangu,88a8a06739fffff,,,,,,,, +002427,Magalhães Bastos,Grande Bangu,88a8a06739fffff,,,,,,,, +002428,Magalhães Bastos,Grande Bangu,88a8a06739fffff,,,,,,,, +002429,Vila Militar,Grande Bangu,88a8a06735fffff,,,,,,,, +002430,Vila Militar,Grande Bangu,88a8a06735fffff,,,,,,,, +002431,Vila Militar,Grande Bangu,88a8a06735fffff,,,,,,,, +002432,Jacarepaguá,Jacarepaguá,88a8a06299fffff,,,,,,,, +002433,Jacarepaguá,Jacarepaguá,88a8a06299fffff,,,,,,,, +002434,Jacarepaguá,Jacarepaguá,88a8a06299fffff,,,,,,,, +002435,Curicica,Jacarepaguá,88a8a07537fffff,,,,,,,, +002436,Curicica,Jacarepaguá,88a8a07537fffff,,,,,,,, +002437,Curicica,Jacarepaguá,88a8a07537fffff,,,,,,,, +002438,Vila Militar,Grande Bangu,88a8a06707fffff,,,,,,,, +002439,Vila Militar,Grande Bangu,88a8a06707fffff,,,,,,,, +002440,Vila Militar,Grande Bangu,88a8a06707fffff,,,,,,,, +002441,Jardim Sulacap,Grande Bangu,88a8a06705fffff,,,,,,,, +002442,Jardim Sulacap,Grande Bangu,88a8a06705fffff,,,,,,,, +002443,Jardim Sulacap,Grande Bangu,88a8a06705fffff,,,,,,,, +002444,Jardim Sulacap,Grande Bangu,88a8a06705fffff,,,,,,,, +002445,Jardim Sulacap,Grande Bangu,88a8a06705fffff,,,,,,,, +002446,Jardim Sulacap,Grande Bangu,88a8a06705fffff,,,,,,,, +002447,Taquara,Jacarepaguá,88a8a06293fffff,,,,,,,, +002448,Taquara,Jacarepaguá,88a8a06293fffff,,,,,,,, +002449,Taquara,Jacarepaguá,88a8a06293fffff,,,,,,,, +002450,Jacarepaguá,Jacarepaguá,88a8a062d1fffff,,,,,,,, +002451,Jacarepaguá,Jacarepaguá,88a8a062d1fffff,,,,,,,, +002452,Jacarepaguá,Jacarepaguá,88a8a062d1fffff,,,,,,,, +002453,Jacarepaguá,Jacarepaguá,88a8a062d9fffff,,,,,,,, +002454,Jacarepaguá,Jacarepaguá,88a8a062d9fffff,,,,,,,, +002455,Jacarepaguá,Jacarepaguá,88a8a062d9fffff,,,,,,,, +002456,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +002457,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +002458,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +002459,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +002460,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +002461,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +002462,Barra da Tijuca,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +002463,Curicica,Jacarepaguá,88a8a07537fffff,,,,,,,, +002464,Jacarepaguá,Jacarepaguá,88a8a062d1fffff,,,,,,,, +002465,Jacarepaguá,Jacarepaguá,88a8a06299fffff,,,,,,,, +002466,Taquara,Jacarepaguá,88a8a06293fffff,,,,,,,, +002467,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07469fffff,,,,,,,, +002468,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07469fffff,,,,,,,, +002469,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07469fffff,,,,,,,, +002470,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0746bfffff,,,,,,,, +002471,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0746bfffff,,,,,,,, +002480,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002481,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002482,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002483,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002484,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002485,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002486,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002487,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002488,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002489,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002490,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002491,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002492,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002493,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002494,Vila Militar,Grande Bangu,88a8a06705fffff,,,,,,,, +002495,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002496,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002497,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +002498,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +002499,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +002500,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +002501,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +002502,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +002503,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +002504,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002505,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002506,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002507,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002508,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002509,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002510,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002511,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002512,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002513,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +002514,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +002515,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +002516,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +002517,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +002518,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +002519,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +002520,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +002521,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +002522,Madureira,Zona Norte,88a8a060abfffff,TRUE,348,-22.87163213,-43.33568488,PO,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.333684884899995 -22.8716321297, -43.33369451544665 -22.87182816398066, -43.33372331433919 -22.872022310344033, -43.33377100422853 -22.872212699054508, -43.333837125834975 -22.87239749656473, -43.3339210423713 -22.87257492317365, -43.334021945675396 -22.87274327016604, -43.334138863993275 -22.87290091626833, -43.33427067133763 -22.873046343262374, -43.33441609833167 -22.873178150606726, -43.33457374443396 -22.873295068924605, -43.33474209142634 -22.873395972228696, -43.334919518035264 -22.873479888765022, -43.335104315545486 -22.873546010371463, -43.335294704255965 -22.873593700260805, -43.335488850619335 -22.873622499153345, -43.3356848849 -22.8736321297, -43.33588091918066 -22.873622499153345, -43.33607506554403 -22.873593700260805, -43.33626545425451 -22.873546010371463, -43.33645025176473 -22.873479888765022, -43.33662767837365 -22.873395972228696, -43.336796025366034 -22.873295068924605, -43.33695367146832 -22.873178150606726, -43.33709909846237 -22.873046343262374, -43.33723090580672 -22.87290091626833, -43.3373478241246 -22.87274327016604, -43.33744872742869 -22.87257492317365, -43.33753264396502 -22.87239749656473, -43.337598765571464 -22.872212699054508, -43.337646455460806 -22.872022310344033, -43.33767525435334 -22.87182816398066, -43.3376848849 -22.8716321297, -43.33767525435334 -22.87143609541934, -43.337646455460806 -22.871241949055968, -43.337598765571464 -22.871051560345492, -43.33753264396502 -22.87086676283527, -43.33744872742869 -22.87068933622635, -43.3373478241246 -22.87052098923396, -43.33723090580672 -22.87036334313167, -43.33709909846237 -22.870217916137626, -43.33695367146832 -22.870086108793274, -43.336796025366034 -22.869969190475395, -43.33662767837365 -22.869868287171304, -43.33645025176473 -22.869784370634978, -43.33626545425451 -22.869718249028537, -43.33607506554403 -22.869670559139195, -43.33588091918066 -22.869641760246655, -43.3356848849 -22.8696321297, -43.335488850619335 -22.869641760246655, -43.335294704255965 -22.869670559139195, -43.335104315545486 -22.869718249028537, -43.334919518035264 -22.869784370634978, -43.33474209142634 -22.869868287171304, -43.33457374443396 -22.869969190475395, -43.33441609833167 -22.870086108793274, -43.33427067133763 -22.870217916137626, -43.334138863993275 -22.87036334313167, -43.334021945675396 -22.87052098923396, -43.3339210423713 -22.87068933622635, -43.333837125834975 -22.87086676283527, -43.33377100422853 -22.871051560345492, -43.33372331433919 -22.871241949055968, -43.33369451544665 -22.87143609541934, -43.333684884899995 -22.8716321297))" +002523,Madureira,Zona Norte,88a8a060abfffff,TRUE,348,-22.87163213,-43.33568488,PO,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.333684884899995 -22.8716321297, -43.33369451544665 -22.87182816398066, -43.33372331433919 -22.872022310344033, -43.33377100422853 -22.872212699054508, -43.333837125834975 -22.87239749656473, -43.3339210423713 -22.87257492317365, -43.334021945675396 -22.87274327016604, -43.334138863993275 -22.87290091626833, -43.33427067133763 -22.873046343262374, -43.33441609833167 -22.873178150606726, -43.33457374443396 -22.873295068924605, -43.33474209142634 -22.873395972228696, -43.334919518035264 -22.873479888765022, -43.335104315545486 -22.873546010371463, -43.335294704255965 -22.873593700260805, -43.335488850619335 -22.873622499153345, -43.3356848849 -22.8736321297, -43.33588091918066 -22.873622499153345, -43.33607506554403 -22.873593700260805, -43.33626545425451 -22.873546010371463, -43.33645025176473 -22.873479888765022, -43.33662767837365 -22.873395972228696, -43.336796025366034 -22.873295068924605, -43.33695367146832 -22.873178150606726, -43.33709909846237 -22.873046343262374, -43.33723090580672 -22.87290091626833, -43.3373478241246 -22.87274327016604, -43.33744872742869 -22.87257492317365, -43.33753264396502 -22.87239749656473, -43.337598765571464 -22.872212699054508, -43.337646455460806 -22.872022310344033, -43.33767525435334 -22.87182816398066, -43.3376848849 -22.8716321297, -43.33767525435334 -22.87143609541934, -43.337646455460806 -22.871241949055968, -43.337598765571464 -22.871051560345492, -43.33753264396502 -22.87086676283527, -43.33744872742869 -22.87068933622635, -43.3373478241246 -22.87052098923396, -43.33723090580672 -22.87036334313167, -43.33709909846237 -22.870217916137626, -43.33695367146832 -22.870086108793274, -43.336796025366034 -22.869969190475395, -43.33662767837365 -22.869868287171304, -43.33645025176473 -22.869784370634978, -43.33626545425451 -22.869718249028537, -43.33607506554403 -22.869670559139195, -43.33588091918066 -22.869641760246655, -43.3356848849 -22.8696321297, -43.335488850619335 -22.869641760246655, -43.335294704255965 -22.869670559139195, -43.335104315545486 -22.869718249028537, -43.334919518035264 -22.869784370634978, -43.33474209142634 -22.869868287171304, -43.33457374443396 -22.869969190475395, -43.33441609833167 -22.870086108793274, -43.33427067133763 -22.870217916137626, -43.334138863993275 -22.87036334313167, -43.334021945675396 -22.87052098923396, -43.3339210423713 -22.87068933622635, -43.333837125834975 -22.87086676283527, -43.33377100422853 -22.871051560345492, -43.33372331433919 -22.871241949055968, -43.33369451544665 -22.87143609541934, -43.333684884899995 -22.8716321297))" +002524,Madureira,Zona Norte,88a8a060abfffff,TRUE,348,-22.87163213,-43.33568488,PO,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.333684884899995 -22.8716321297, -43.33369451544665 -22.87182816398066, -43.33372331433919 -22.872022310344033, -43.33377100422853 -22.872212699054508, -43.333837125834975 -22.87239749656473, -43.3339210423713 -22.87257492317365, -43.334021945675396 -22.87274327016604, -43.334138863993275 -22.87290091626833, -43.33427067133763 -22.873046343262374, -43.33441609833167 -22.873178150606726, -43.33457374443396 -22.873295068924605, -43.33474209142634 -22.873395972228696, -43.334919518035264 -22.873479888765022, -43.335104315545486 -22.873546010371463, -43.335294704255965 -22.873593700260805, -43.335488850619335 -22.873622499153345, -43.3356848849 -22.8736321297, -43.33588091918066 -22.873622499153345, -43.33607506554403 -22.873593700260805, -43.33626545425451 -22.873546010371463, -43.33645025176473 -22.873479888765022, -43.33662767837365 -22.873395972228696, -43.336796025366034 -22.873295068924605, -43.33695367146832 -22.873178150606726, -43.33709909846237 -22.873046343262374, -43.33723090580672 -22.87290091626833, -43.3373478241246 -22.87274327016604, -43.33744872742869 -22.87257492317365, -43.33753264396502 -22.87239749656473, -43.337598765571464 -22.872212699054508, -43.337646455460806 -22.872022310344033, -43.33767525435334 -22.87182816398066, -43.3376848849 -22.8716321297, -43.33767525435334 -22.87143609541934, -43.337646455460806 -22.871241949055968, -43.337598765571464 -22.871051560345492, -43.33753264396502 -22.87086676283527, -43.33744872742869 -22.87068933622635, -43.3373478241246 -22.87052098923396, -43.33723090580672 -22.87036334313167, -43.33709909846237 -22.870217916137626, -43.33695367146832 -22.870086108793274, -43.336796025366034 -22.869969190475395, -43.33662767837365 -22.869868287171304, -43.33645025176473 -22.869784370634978, -43.33626545425451 -22.869718249028537, -43.33607506554403 -22.869670559139195, -43.33588091918066 -22.869641760246655, -43.3356848849 -22.8696321297, -43.335488850619335 -22.869641760246655, -43.335294704255965 -22.869670559139195, -43.335104315545486 -22.869718249028537, -43.334919518035264 -22.869784370634978, -43.33474209142634 -22.869868287171304, -43.33457374443396 -22.869969190475395, -43.33441609833167 -22.870086108793274, -43.33427067133763 -22.870217916137626, -43.334138863993275 -22.87036334313167, -43.334021945675396 -22.87052098923396, -43.3339210423713 -22.87068933622635, -43.333837125834975 -22.87086676283527, -43.33377100422853 -22.871051560345492, -43.33372331433919 -22.871241949055968, -43.33369451544665 -22.87143609541934, -43.333684884899995 -22.8716321297))" +002525,Madureira,Zona Norte,88a8a060abfffff,TRUE,368,-22.8656085,-43.33534259,PO,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.33334259240146 -22.86560849542843, -43.333352222948115 -22.865804529709088, -43.33338102184065 -22.86599867607246, -43.333428711729994 -22.866189064782937, -43.33349483333644 -22.86637386229316, -43.333578749872764 -22.86655128890208, -43.33367965317686 -22.86671963589447, -43.33379657149474 -22.866877281996757, -43.33392837883909 -22.867022708990802, -43.334073805833135 -22.867154516335155, -43.33423145193542 -22.867271434653034, -43.334399798927805 -22.867372337957125, -43.33457722553673 -22.86745625449345, -43.33476202304695 -22.867522376099892, -43.33495241175743 -22.867570065989234, -43.3351465581208 -22.867598864881774, -43.33534259240146 -22.867608495428428, -43.33553862668212 -22.867598864881774, -43.33573277304549 -22.867570065989234, -43.33592316175597 -22.867522376099892, -43.336107959266194 -22.86745625449345, -43.336285385875115 -22.867372337957125, -43.3364537328675 -22.867271434653034, -43.336611378969785 -22.867154516335155, -43.33675680596383 -22.867022708990802, -43.33688861330818 -22.866877281996757, -43.33700553162606 -22.86671963589447, -43.337106434930156 -22.86655128890208, -43.33719035146648 -22.86637386229316, -43.33725647307293 -22.866189064782937, -43.33730416296227 -22.86599867607246, -43.337332961854806 -22.865804529709088, -43.33734259240146 -22.86560849542843, -43.337332961854806 -22.86541246114777, -43.33730416296227 -22.865218314784396, -43.33725647307293 -22.86502792607392, -43.33719035146648 -22.8648431285637, -43.337106434930156 -22.864665701954777, -43.33700553162606 -22.86449735496239, -43.33688861330818 -22.8643397088601, -43.33675680596383 -22.864194281866055, -43.336611378969785 -22.864062474521702, -43.3364537328675 -22.863945556203824, -43.336285385875115 -22.863844652899733, -43.336107959266194 -22.863760736363407, -43.33592316175597 -22.863694614756966, -43.33573277304549 -22.863646924867624, -43.33553862668212 -22.863618125975083, -43.33534259240146 -22.86360849542843, -43.3351465581208 -22.863618125975083, -43.33495241175743 -22.863646924867624, -43.33476202304695 -22.863694614756966, -43.33457722553673 -22.863760736363407, -43.334399798927805 -22.863844652899733, -43.33423145193542 -22.863945556203824, -43.334073805833135 -22.864062474521702, -43.33392837883909 -22.864194281866055, -43.33379657149474 -22.8643397088601, -43.33367965317686 -22.86449735496239, -43.333578749872764 -22.864665701954777, -43.33349483333644 -22.8648431285637, -43.333428711729994 -22.86502792607392, -43.33338102184065 -22.865218314784396, -43.333352222948115 -22.86541246114777, -43.33334259240146 -22.86560849542843))" +002526,Madureira,Zona Norte,88a8a060abfffff,TRUE,368,-22.8656085,-43.33534259,PO,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.33334259240146 -22.86560849542843, -43.333352222948115 -22.865804529709088, -43.33338102184065 -22.86599867607246, -43.333428711729994 -22.866189064782937, -43.33349483333644 -22.86637386229316, -43.333578749872764 -22.86655128890208, -43.33367965317686 -22.86671963589447, -43.33379657149474 -22.866877281996757, -43.33392837883909 -22.867022708990802, -43.334073805833135 -22.867154516335155, -43.33423145193542 -22.867271434653034, -43.334399798927805 -22.867372337957125, -43.33457722553673 -22.86745625449345, -43.33476202304695 -22.867522376099892, -43.33495241175743 -22.867570065989234, -43.3351465581208 -22.867598864881774, -43.33534259240146 -22.867608495428428, -43.33553862668212 -22.867598864881774, -43.33573277304549 -22.867570065989234, -43.33592316175597 -22.867522376099892, -43.336107959266194 -22.86745625449345, -43.336285385875115 -22.867372337957125, -43.3364537328675 -22.867271434653034, -43.336611378969785 -22.867154516335155, -43.33675680596383 -22.867022708990802, -43.33688861330818 -22.866877281996757, -43.33700553162606 -22.86671963589447, -43.337106434930156 -22.86655128890208, -43.33719035146648 -22.86637386229316, -43.33725647307293 -22.866189064782937, -43.33730416296227 -22.86599867607246, -43.337332961854806 -22.865804529709088, -43.33734259240146 -22.86560849542843, -43.337332961854806 -22.86541246114777, -43.33730416296227 -22.865218314784396, -43.33725647307293 -22.86502792607392, -43.33719035146648 -22.8648431285637, -43.337106434930156 -22.864665701954777, -43.33700553162606 -22.86449735496239, -43.33688861330818 -22.8643397088601, -43.33675680596383 -22.864194281866055, -43.336611378969785 -22.864062474521702, -43.3364537328675 -22.863945556203824, -43.336285385875115 -22.863844652899733, -43.336107959266194 -22.863760736363407, -43.33592316175597 -22.863694614756966, -43.33573277304549 -22.863646924867624, -43.33553862668212 -22.863618125975083, -43.33534259240146 -22.86360849542843, -43.3351465581208 -22.863618125975083, -43.33495241175743 -22.863646924867624, -43.33476202304695 -22.863694614756966, -43.33457722553673 -22.863760736363407, -43.334399798927805 -22.863844652899733, -43.33423145193542 -22.863945556203824, -43.334073805833135 -22.864062474521702, -43.33392837883909 -22.864194281866055, -43.33379657149474 -22.8643397088601, -43.33367965317686 -22.86449735496239, -43.333578749872764 -22.864665701954777, -43.33349483333644 -22.8648431285637, -43.333428711729994 -22.86502792607392, -43.33338102184065 -22.865218314784396, -43.333352222948115 -22.86541246114777, -43.33334259240146 -22.86560849542843))" +002527,Madureira,Zona Norte,88a8a060abfffff,TRUE,368,-22.8656085,-43.33534259,PO,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.33334259240146 -22.86560849542843, -43.333352222948115 -22.865804529709088, -43.33338102184065 -22.86599867607246, -43.333428711729994 -22.866189064782937, -43.33349483333644 -22.86637386229316, -43.333578749872764 -22.86655128890208, -43.33367965317686 -22.86671963589447, -43.33379657149474 -22.866877281996757, -43.33392837883909 -22.867022708990802, -43.334073805833135 -22.867154516335155, -43.33423145193542 -22.867271434653034, -43.334399798927805 -22.867372337957125, -43.33457722553673 -22.86745625449345, -43.33476202304695 -22.867522376099892, -43.33495241175743 -22.867570065989234, -43.3351465581208 -22.867598864881774, -43.33534259240146 -22.867608495428428, -43.33553862668212 -22.867598864881774, -43.33573277304549 -22.867570065989234, -43.33592316175597 -22.867522376099892, -43.336107959266194 -22.86745625449345, -43.336285385875115 -22.867372337957125, -43.3364537328675 -22.867271434653034, -43.336611378969785 -22.867154516335155, -43.33675680596383 -22.867022708990802, -43.33688861330818 -22.866877281996757, -43.33700553162606 -22.86671963589447, -43.337106434930156 -22.86655128890208, -43.33719035146648 -22.86637386229316, -43.33725647307293 -22.866189064782937, -43.33730416296227 -22.86599867607246, -43.337332961854806 -22.865804529709088, -43.33734259240146 -22.86560849542843, -43.337332961854806 -22.86541246114777, -43.33730416296227 -22.865218314784396, -43.33725647307293 -22.86502792607392, -43.33719035146648 -22.8648431285637, -43.337106434930156 -22.864665701954777, -43.33700553162606 -22.86449735496239, -43.33688861330818 -22.8643397088601, -43.33675680596383 -22.864194281866055, -43.336611378969785 -22.864062474521702, -43.3364537328675 -22.863945556203824, -43.336285385875115 -22.863844652899733, -43.336107959266194 -22.863760736363407, -43.33592316175597 -22.863694614756966, -43.33573277304549 -22.863646924867624, -43.33553862668212 -22.863618125975083, -43.33534259240146 -22.86360849542843, -43.3351465581208 -22.863618125975083, -43.33495241175743 -22.863646924867624, -43.33476202304695 -22.863694614756966, -43.33457722553673 -22.863760736363407, -43.334399798927805 -22.863844652899733, -43.33423145193542 -22.863945556203824, -43.334073805833135 -22.864062474521702, -43.33392837883909 -22.864194281866055, -43.33379657149474 -22.8643397088601, -43.33367965317686 -22.86449735496239, -43.333578749872764 -22.864665701954777, -43.33349483333644 -22.8648431285637, -43.333428711729994 -22.86502792607392, -43.33338102184065 -22.865218314784396, -43.333352222948115 -22.86541246114777, -43.33334259240146 -22.86560849542843))" +002528,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002529,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002530,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002531,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002532,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002533,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002534,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002535,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +002536,Cidade Universitária,Ilhas,88a8a06a93fffff,,,,,,,, +003020,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +003021,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +003022,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +003100,Coelho Neto,Zona Norte,88a8a06e53fffff,,,,,,,, +003101,Parque Colúmbia,Zona Norte,88a8a06e15fffff,,,,,,,, +003102,Pavuna,Zona Norte,88a8a06e11fffff,,,,,,,, +003103,Pavuna,Zona Norte,88a8a06e13fffff,TRUE,84,-22.80456218,-43.35124612,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3492461229 -22.8045621791, -43.349255753446656 -22.80475821338066, -43.34928455233919 -22.804952359744032, -43.349332242228535 -22.805142748454507, -43.34939836383498 -22.80532754596473, -43.349482280371305 -22.80550497257365, -43.3495831836754 -22.80567331956604, -43.34970010199328 -22.805830965668328, -43.34983190933763 -22.805976392662373, -43.349977336331676 -22.806108200006726, -43.350134982433964 -22.806225118324605, -43.350303329426346 -22.806326021628696, -43.35048075603527 -22.80640993816502, -43.35066555354549 -22.806476059771462, -43.35085594225597 -22.806523749660805, -43.35105008861934 -22.806552548553345, -43.3512461229 -22.8065621791, -43.351442157180664 -22.806552548553345, -43.35163630354403 -22.806523749660805, -43.35182669225451 -22.806476059771462, -43.352011489764735 -22.80640993816502, -43.352188916373656 -22.806326021628696, -43.35235726336604 -22.806225118324605, -43.352514909468326 -22.806108200006726, -43.35266033646237 -22.805976392662373, -43.352792143806724 -22.805830965668328, -43.3529090621246 -22.80567331956604, -43.3530099654287 -22.80550497257365, -43.35309388196502 -22.80532754596473, -43.35316000357147 -22.805142748454507, -43.35320769346081 -22.804952359744032, -43.353236492353346 -22.80475821338066, -43.3532461229 -22.8045621791, -43.353236492353346 -22.80436614481934, -43.35320769346081 -22.804171998455967, -43.35316000357147 -22.80398160974549, -43.35309388196502 -22.80379681223527, -43.3530099654287 -22.803619385626348, -43.3529090621246 -22.80345103863396, -43.352792143806724 -22.80329339253167, -43.35266033646237 -22.803147965537626, -43.352514909468326 -22.803016158193273, -43.35235726336604 -22.802899239875394, -43.352188916373656 -22.802798336571303, -43.352011489764735 -22.802714420034977, -43.35182669225451 -22.802648298428537, -43.35163630354403 -22.802600608539194, -43.351442157180664 -22.802571809646654, -43.3512461229 -22.8025621791, -43.35105008861934 -22.802571809646654, -43.35085594225597 -22.802600608539194, -43.35066555354549 -22.802648298428537, -43.35048075603527 -22.802714420034977, -43.350303329426346 -22.802798336571303, -43.350134982433964 -22.802899239875394, -43.349977336331676 -22.803016158193273, -43.34983190933763 -22.803147965537626, -43.34970010199328 -22.80329339253167, -43.3495831836754 -22.80345103863396, -43.349482280371305 -22.803619385626348, -43.34939836383498 -22.80379681223527, -43.349332242228535 -22.80398160974549, -43.34928455233919 -22.804171998455967, -43.349255753446656 -22.80436614481934, -43.3492461229 -22.8045621791))" +003104,Pavuna,Zona Norte,88a8a06ecdfffff,TRUE,417,-22.80546095,-43.35674207,PO,G,,"POLYGON ((-43.354742073820496 -22.8054609523673, -43.35475170436715 -22.80565698664796, -43.35478050325969 -22.805851133011334, -43.35482819314903 -22.80604152172181, -43.35489431475548 -22.80622631923203, -43.3549782312918 -22.806403745840953, -43.3550791345959 -22.806572092833342, -43.355196052913776 -22.80672973893563, -43.35532786025813 -22.806875165929675, -43.355473287252174 -22.807006973274028, -43.35563093335446 -22.807123891591907, -43.355799280346844 -22.807224794895998, -43.355976706955765 -22.807308711432324, -43.35616150446599 -22.807374833038764, -43.356351893176466 -22.807422522928107, -43.356546039539836 -22.807451321820647, -43.3567420738205 -22.8074609523673, -43.35693810810116 -22.807451321820647, -43.35713225446453 -22.807422522928107, -43.35732264317501 -22.807374833038764, -43.35750744068523 -22.807308711432324, -43.357684867294154 -22.807224794895998, -43.357853214286536 -22.807123891591907, -43.35801086038882 -22.807006973274028, -43.35815628738287 -22.806875165929675, -43.35828809472722 -22.80672973893563, -43.3584050130451 -22.806572092833342, -43.358505916349195 -22.806403745840953, -43.35858983288552 -22.80622631923203, -43.358655954491965 -22.80604152172181, -43.35870364438131 -22.805851133011334, -43.358732443273844 -22.80565698664796, -43.3587420738205 -22.8054609523673, -43.358732443273844 -22.805264918086642, -43.35870364438131 -22.80507077172327, -43.358655954491965 -22.804880383012794, -43.35858983288552 -22.80469558550257, -43.358505916349195 -22.80451815889365, -43.3584050130451 -22.80434981190126, -43.35828809472722 -22.804192165798973, -43.35815628738287 -22.804046738804928, -43.35801086038882 -22.803914931460575, -43.357853214286536 -22.803798013142696, -43.357684867294154 -22.803697109838605, -43.35750744068523 -22.80361319330228, -43.35732264317501 -22.80354707169584, -43.35713225446453 -22.803499381806496, -43.35693810810116 -22.803470582913956, -43.3567420738205 -22.803460952367303, -43.356546039539836 -22.803470582913956, -43.356351893176466 -22.803499381806496, -43.35616150446599 -22.80354707169584, -43.355976706955765 -22.80361319330228, -43.355799280346844 -22.803697109838605, -43.35563093335446 -22.803798013142696, -43.355473287252174 -22.803914931460575, -43.35532786025813 -22.804046738804928, -43.355196052913776 -22.804192165798973, -43.3550791345959 -22.80434981190126, -43.3549782312918 -22.80451815889365, -43.35489431475548 -22.80469558550257, -43.35482819314903 -22.804880383012794, -43.35478050325969 -22.80507077172327, -43.35475170436715 -22.805264918086642, -43.354742073820496 -22.8054609523673))" +003105,Pavuna,Zona Norte,88a8a06ecdfffff,,,,,,,, +003106,Pavuna,Zona Norte,88a8a06e1bfffff,,,,,,,, +003107,Pavuna,Zona Norte,88a8a06ecdfffff,TRUE,58,-22.80832542,-43.35865415,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3566541529 -22.8083254226, -43.356663783446656 -22.80852145688066, -43.35669258233919 -22.808715603244032, -43.356740272228535 -22.808905991954507, -43.35680639383498 -22.80909078946473, -43.356890310371305 -22.80926821607365, -43.3569912136754 -22.80943656306604, -43.35710813199328 -22.809594209168328, -43.35723993933763 -22.809739636162373, -43.35738536633168 -22.809871443506726, -43.357543012433965 -22.809988361824605, -43.35771135942635 -22.810089265128696, -43.35788878603527 -22.81017318166502, -43.35807358354549 -22.810239303271462, -43.35826397225597 -22.810286993160805, -43.35845811861934 -22.810315792053345, -43.3586541529 -22.8103254226, -43.358850187180664 -22.810315792053345, -43.359044333544034 -22.810286993160805, -43.35923472225451 -22.810239303271462, -43.359419519764735 -22.81017318166502, -43.35959694637366 -22.810089265128696, -43.35976529336604 -22.809988361824605, -43.359922939468326 -22.809871443506726, -43.36006836646237 -22.809739636162373, -43.360200173806724 -22.809594209168328, -43.3603170921246 -22.80943656306604, -43.3604179954287 -22.80926821607365, -43.360501911965024 -22.80909078946473, -43.36056803357147 -22.808905991954507, -43.36061572346081 -22.808715603244032, -43.36064452235335 -22.80852145688066, -43.360654152900004 -22.8083254226, -43.36064452235335 -22.80812938831934, -43.36061572346081 -22.807935241955967, -43.36056803357147 -22.80774485324549, -43.360501911965024 -22.80756005573527, -43.3604179954287 -22.807382629126348, -43.3603170921246 -22.80721428213396, -43.360200173806724 -22.80705663603167, -43.36006836646237 -22.806911209037626, -43.359922939468326 -22.806779401693273, -43.35976529336604 -22.806662483375394, -43.35959694637366 -22.806561580071303, -43.359419519764735 -22.806477663534977, -43.35923472225451 -22.806411541928536, -43.359044333544034 -22.806363852039194, -43.358850187180664 -22.806335053146654, -43.3586541529 -22.8063254226, -43.35845811861934 -22.806335053146654, -43.35826397225597 -22.806363852039194, -43.35807358354549 -22.806411541928536, -43.35788878603527 -22.806477663534977, -43.35771135942635 -22.806561580071303, -43.357543012433965 -22.806662483375394, -43.35738536633168 -22.806779401693273, -43.35723993933763 -22.806911209037626, -43.35710813199328 -22.80705663603167, -43.3569912136754 -22.80721428213396, -43.356890310371305 -22.807382629126348, -43.35680639383498 -22.80756005573527, -43.356740272228535 -22.80774485324549, -43.35669258233919 -22.807935241955967, -43.356663783446656 -22.80812938831934, -43.3566541529 -22.8083254226))" +003109,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +003110,Pavuna,Zona Norte,88a8a06525fffff,,,,,,,, +003111,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +003112,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +003115,Tijuca,Grande Tijuca,88a8a06141fffff,TRUE,40,-22.9301,-43.24152354,PC,G,Canal do Mangue,"POLYGON ((-43.239523538099995 -22.9301000042, -43.23953316864665 -22.93029603848066, -43.23956196753919 -22.930490184844032, -43.23960965742853 -22.930680573554508, -43.239675779034975 -22.93086537106473, -43.2397596955713 -22.93104279767365, -43.239860598875396 -22.93121114466604, -43.239977517193275 -22.931368790768328, -43.24010932453763 -22.931514217762373, -43.24025475153167 -22.931646025106726, -43.24041239763396 -22.931762943424605, -43.24058074462634 -22.931863846728696, -43.240758171235264 -22.931947763265022, -43.240942968745486 -22.932013884871463, -43.241133357455965 -22.932061574760805, -43.241327503819335 -22.932090373653345, -43.2415235381 -22.9321000042, -43.24171957238066 -22.932090373653345, -43.24191371874403 -22.932061574760805, -43.24210410745451 -22.932013884871463, -43.24228890496473 -22.931947763265022, -43.24246633157365 -22.931863846728696, -43.242634678566034 -22.931762943424605, -43.24279232466832 -22.931646025106726, -43.24293775166237 -22.931514217762373, -43.24306955900672 -22.931368790768328, -43.2431864773246 -22.93121114466604, -43.24328738062869 -22.93104279767365, -43.24337129716502 -22.93086537106473, -43.243437418771464 -22.930680573554508, -43.243485108660806 -22.930490184844032, -43.24351390755334 -22.93029603848066, -43.2435235381 -22.9301000042, -43.24351390755334 -22.92990396991934, -43.243485108660806 -22.929709823555967, -43.243437418771464 -22.929519434845492, -43.24337129716502 -22.92933463733527, -43.24328738062869 -22.92915721072635, -43.2431864773246 -22.92898886373396, -43.24306955900672 -22.92883121763167, -43.24293775166237 -22.928685790637626, -43.24279232466832 -22.928553983293273, -43.242634678566034 -22.928437064975395, -43.24246633157365 -22.928336161671304, -43.24228890496473 -22.928252245134978, -43.24210410745451 -22.928186123528537, -43.24191371874403 -22.928138433639194, -43.24171957238066 -22.928109634746654, -43.2415235381 -22.9281000042, -43.241327503819335 -22.928109634746654, -43.241133357455965 -22.928138433639194, -43.240942968745486 -22.928186123528537, -43.240758171235264 -22.928252245134978, -43.24058074462634 -22.928336161671304, -43.24041239763396 -22.928437064975395, -43.24025475153167 -22.928553983293273, -43.24010932453763 -22.928685790637626, -43.239977517193275 -22.92883121763167, -43.239860598875396 -22.92898886373396, -43.2397596955713 -22.92915721072635, -43.239675779034975 -22.92933463733527, -43.23960965742853 -22.929519434845492, -43.23956196753919 -22.929709823555967, -43.23953316864665 -22.92990396991934, -43.239523538099995 -22.9301000042))" +003116,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +003117,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +003119,Andaraí,Grande Tijuca,88a8a06143fffff,,,,,,,, +003120,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +003121,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +003122,Jacarepaguá,Jacarepaguá,88a8a0753bfffff,TRUE,333,-22.96174676,-43.39821251,PO,J,Rio dos Passarinhos,"POLYGON ((-43.396212512299996 -22.9617467611, -43.39622214284665 -22.961942795380658, -43.39625094173919 -22.96213694174403, -43.39629863162853 -22.962327330454507, -43.39636475323498 -22.96251212796473, -43.3964486697713 -22.96268955457365, -43.3965495730754 -22.96285790156604, -43.396666491393276 -22.963015547668327, -43.39679829873763 -22.963160974662372, -43.396943725731674 -22.963292782006725, -43.39710137183396 -22.963409700324604, -43.397269718826344 -22.963510603628695, -43.397447145435265 -22.96359452016502, -43.39763194294549 -22.96366064177146, -43.397822331655966 -22.963708331660804, -43.398016478019336 -22.963737130553344, -43.3982125123 -22.963746761099998, -43.39840854658066 -22.963737130553344, -43.39860269294403 -22.963708331660804, -43.39879308165451 -22.96366064177146, -43.39897787916473 -22.96359452016502, -43.399155305773654 -22.963510603628695, -43.399323652766036 -22.963409700324604, -43.399481298868324 -22.963292782006725, -43.39962672586237 -22.963160974662372, -43.39975853320672 -22.963015547668327, -43.3998754515246 -22.96285790156604, -43.399976354828695 -22.96268955457365, -43.40006027136502 -22.96251212796473, -43.400126392971465 -22.962327330454507, -43.40017408286081 -22.96213694174403, -43.400202881753344 -22.961942795380658, -43.4002125123 -22.9617467611, -43.400202881753344 -22.96155072681934, -43.40017408286081 -22.961356580455966, -43.400126392971465 -22.96116619174549, -43.40006027136502 -22.96098139423527, -43.399976354828695 -22.960803967626347, -43.3998754515246 -22.96063562063396, -43.39975853320672 -22.96047797453167, -43.39962672586237 -22.960332547537625, -43.399481298868324 -22.960200740193272, -43.399323652766036 -22.960083821875394, -43.399155305773654 -22.959982918571303, -43.39897787916473 -22.959899002034977, -43.39879308165451 -22.959832880428536, -43.39860269294403 -22.959785190539193, -43.39840854658066 -22.959756391646653, -43.3982125123 -22.9597467611, -43.398016478019336 -22.959756391646653, -43.397822331655966 -22.959785190539193, -43.39763194294549 -22.959832880428536, -43.397447145435265 -22.959899002034977, -43.397269718826344 -22.959982918571303, -43.39710137183396 -22.960083821875394, -43.396943725731674 -22.960200740193272, -43.39679829873763 -22.960332547537625, -43.396666491393276 -22.96047797453167, -43.3965495730754 -22.96063562063396, -43.3964486697713 -22.960803967626347, -43.39636475323498 -22.96098139423527, -43.39629863162853 -22.96116619174549, -43.39625094173919 -22.961356580455966, -43.39622214284665 -22.96155072681934, -43.396212512299996 -22.9617467611))" +003123,Irajá,Zona Norte,88a8a06e41fffff,,,,,,,, +003125,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +003127,Coelho Neto,Zona Norte,88a8a06e53fffff,,,,,,,, +003128,Coelho Neto,Zona Norte,88a8a06e53fffff,,,,,,,, +003129,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076edfffff,,,,,,,, +003130,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076edfffff,,,,,,,, +003131,Recreio dos Bandeirantes,Barra da Tijuca,88a8a076e5fffff,TRUE,390,-23.01535837,-43.49216438,PO,J,Canal de Sernambetiba,"POLYGON ((-43.49016437795787 -23.01535836799227, -43.490174008504525 -23.01555440227293, -43.49020280739706 -23.015748548636303, -43.490250497286404 -23.015938937346778, -43.49031661889285 -23.016123734857, -43.490400535429174 -23.016301161465922, -43.49050143873327 -23.01646950845831, -43.49061835705115 -23.0166271545606, -43.4907501643955 -23.016772581554644, -43.490895591389545 -23.016904388898997, -43.49105323749183 -23.017021307216876, -43.491221584484215 -23.017122210520967, -43.49139901109314 -23.017206127057293, -43.49158380860336 -23.017272248663733, -43.49177419731384 -23.017319938553076, -43.49196834367721 -23.017348737445616, -43.49216437795787 -23.01735836799227, -43.49236041223853 -23.017348737445616, -43.4925545586019 -23.017319938553076, -43.49274494731238 -23.017272248663733, -43.492929744822604 -23.017206127057293, -43.493107171431525 -23.017122210520967, -43.49327551842391 -23.017021307216876, -43.493433164526195 -23.016904388898997, -43.49357859152024 -23.016772581554644, -43.49371039886459 -23.0166271545606, -43.49382731718247 -23.01646950845831, -43.493928220486566 -23.016301161465922, -43.49401213702289 -23.016123734857, -43.49407825862934 -23.015938937346778, -43.49412594851868 -23.015748548636303, -43.494154747411216 -23.01555440227293, -43.49416437795787 -23.01535836799227, -43.494154747411216 -23.01516233371161, -43.49412594851868 -23.014968187348238, -43.49407825862934 -23.014777798637763, -43.49401213702289 -23.01459300112754, -43.493928220486566 -23.01441557451862, -43.49382731718247 -23.01424722752623, -43.49371039886459 -23.014089581423942, -43.49357859152024 -23.013944154429897, -43.493433164526195 -23.013812347085544, -43.49327551842391 -23.013695428767665, -43.493107171431525 -23.013594525463574, -43.492929744822604 -23.01351060892725, -43.49274494731238 -23.013444487320807, -43.4925545586019 -23.013396797431465, -43.49236041223853 -23.013367998538925, -43.49216437795787 -23.01335836799227, -43.49196834367721 -23.013367998538925, -43.49177419731384 -23.013396797431465, -43.49158380860336 -23.013444487320807, -43.49139901109314 -23.01351060892725, -43.491221584484215 -23.013594525463574, -43.49105323749183 -23.013695428767665, -43.490895591389545 -23.013812347085544, -43.4907501643955 -23.013944154429897, -43.49061835705115 -23.014089581423942, -43.49050143873327 -23.01424722752623, -43.490400535429174 -23.01441557451862, -43.49031661889285 -23.01459300112754, -43.490250497286404 -23.014777798637763, -43.49020280739706 -23.014968187348238, -43.490174008504525 -23.01516233371161, -43.49016437795787 -23.01535836799227))" +003132,Pavuna,Zona Norte,88a8a06ecdfffff,,,,,,,, +003133,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +003134,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +003135,Barra da Tijuca,Barra da Tijuca,88a8a07191fffff,,,,,,,, +003137,Pavuna,Zona Norte,88a8a06e17fffff,,,,,,,, +003138,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +003139,Copacabana,Zona Sul,88a8a078c5fffff,,,,,,,, +003141,Barra da Tijuca,Barra da Tijuca,88a8a07569fffff,,,,,,,, +003142,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +003143,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +003144,Irajá,Zona Norte,88a8a06e41fffff,,,,,,,, +003145,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07615fffff,,,,,,,, +003146,Jacarepaguá,Jacarepaguá,88a8a07515fffff,,,,,,,, +003147,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003148,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003149,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003150,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003151,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003152,Copacabana,Zona Sul,88a8a0788dfffff,,,,,,,, +003153,Copacabana,Zona Sul,88a8a0788dfffff,,,,,,,, +003154,Copacabana,Zona Sul,88a8a0788dfffff,,,,,,,, +003155,Copacabana,Zona Sul,88a8a0788dfffff,TRUE,86,-22.96437957,-43.19277597,PO,ZS,Praia de Copacabana,"POLYGON ((-43.190775971 -22.9643795741, -43.19078560154666 -22.96457560838066, -43.190814400439194 -22.964769754744033, -43.19086209032854 -22.96496014345451, -43.19092821193498 -22.96514494096473, -43.19101212847131 -22.965322367573652, -43.1911130317754 -22.96549071456604, -43.19122995009328 -22.96564836066833, -43.19136175743763 -22.965793787662374, -43.19150718443168 -22.965925595006727, -43.191664830533966 -22.966042513324606, -43.19183317752635 -22.966143416628697, -43.19201060413527 -22.966227333165023, -43.19219540164549 -22.966293454771463, -43.19238579035597 -22.966341144660806, -43.19257993671934 -22.966369943553346, -43.192775971 -22.9663795741, -43.192972005280666 -22.966369943553346, -43.193166151644036 -22.966341144660806, -43.193356540354515 -22.966293454771463, -43.19354133786474 -22.966227333165023, -43.19371876447366 -22.966143416628697, -43.19388711146604 -22.966042513324606, -43.19404475756833 -22.965925595006727, -43.19419018456237 -22.965793787662374, -43.194321991906726 -22.96564836066833, -43.194438910224605 -22.96549071456604, -43.1945398135287 -22.965322367573652, -43.194623730065025 -22.96514494096473, -43.19468985167147 -22.96496014345451, -43.19473754156081 -22.964769754744033, -43.19476634045335 -22.96457560838066, -43.194775971000006 -22.9643795741, -43.19476634045335 -22.96418353981934, -43.19473754156081 -22.963989393455968, -43.19468985167147 -22.963799004745493, -43.194623730065025 -22.96361420723527, -43.1945398135287 -22.96343678062635, -43.194438910224605 -22.96326843363396, -43.194321991906726 -22.963110787531672, -43.19419018456237 -22.962965360537627, -43.19404475756833 -22.962833553193274, -43.19388711146604 -22.962716634875395, -43.19371876447366 -22.962615731571304, -43.19354133786474 -22.96253181503498, -43.193356540354515 -22.962465693428538, -43.193166151644036 -22.962418003539195, -43.192972005280666 -22.962389204646655, -43.192775971 -22.9623795741, -43.19257993671934 -22.962389204646655, -43.19238579035597 -22.962418003539195, -43.19219540164549 -22.962465693428538, -43.19201060413527 -22.96253181503498, -43.19183317752635 -22.962615731571304, -43.191664830533966 -22.962716634875395, -43.19150718443168 -22.962833553193274, -43.19136175743763 -22.962965360537627, -43.19122995009328 -22.963110787531672, -43.1911130317754 -22.96326843363396, -43.19101212847131 -22.96343678062635, -43.19092821193498 -22.96361420723527, -43.19086209032854 -22.963799004745493, -43.190814400439194 -22.963989393455968, -43.19078560154666 -22.96418353981934, -43.190775971 -22.9643795741))" +003156,Copacabana,Zona Sul,88a8a0788dfffff,TRUE,86,-22.96437957,-43.19277597,PO,ZS,Praia de Copacabana,"POLYGON ((-43.190775971 -22.9643795741, -43.19078560154666 -22.96457560838066, -43.190814400439194 -22.964769754744033, -43.19086209032854 -22.96496014345451, -43.19092821193498 -22.96514494096473, -43.19101212847131 -22.965322367573652, -43.1911130317754 -22.96549071456604, -43.19122995009328 -22.96564836066833, -43.19136175743763 -22.965793787662374, -43.19150718443168 -22.965925595006727, -43.191664830533966 -22.966042513324606, -43.19183317752635 -22.966143416628697, -43.19201060413527 -22.966227333165023, -43.19219540164549 -22.966293454771463, -43.19238579035597 -22.966341144660806, -43.19257993671934 -22.966369943553346, -43.192775971 -22.9663795741, -43.192972005280666 -22.966369943553346, -43.193166151644036 -22.966341144660806, -43.193356540354515 -22.966293454771463, -43.19354133786474 -22.966227333165023, -43.19371876447366 -22.966143416628697, -43.19388711146604 -22.966042513324606, -43.19404475756833 -22.965925595006727, -43.19419018456237 -22.965793787662374, -43.194321991906726 -22.96564836066833, -43.194438910224605 -22.96549071456604, -43.1945398135287 -22.965322367573652, -43.194623730065025 -22.96514494096473, -43.19468985167147 -22.96496014345451, -43.19473754156081 -22.964769754744033, -43.19476634045335 -22.96457560838066, -43.194775971000006 -22.9643795741, -43.19476634045335 -22.96418353981934, -43.19473754156081 -22.963989393455968, -43.19468985167147 -22.963799004745493, -43.194623730065025 -22.96361420723527, -43.1945398135287 -22.96343678062635, -43.194438910224605 -22.96326843363396, -43.194321991906726 -22.963110787531672, -43.19419018456237 -22.962965360537627, -43.19404475756833 -22.962833553193274, -43.19388711146604 -22.962716634875395, -43.19371876447366 -22.962615731571304, -43.19354133786474 -22.96253181503498, -43.193356540354515 -22.962465693428538, -43.193166151644036 -22.962418003539195, -43.192972005280666 -22.962389204646655, -43.192775971 -22.9623795741, -43.19257993671934 -22.962389204646655, -43.19238579035597 -22.962418003539195, -43.19219540164549 -22.962465693428538, -43.19201060413527 -22.96253181503498, -43.19183317752635 -22.962615731571304, -43.191664830533966 -22.962716634875395, -43.19150718443168 -22.962833553193274, -43.19136175743763 -22.962965360537627, -43.19122995009328 -22.963110787531672, -43.1911130317754 -22.96326843363396, -43.19101212847131 -22.96343678062635, -43.19092821193498 -22.96361420723527, -43.19086209032854 -22.963799004745493, -43.190814400439194 -22.963989393455968, -43.19078560154666 -22.96418353981934, -43.190775971 -22.9643795741))" +003157,Copacabana,Zona Sul,88a8a0788dfffff,,,,,,,, +003158,Copacabana,Zona Sul,88a8a0788dfffff,,,,,,,, +003159,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003160,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003161,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003162,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003163,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003164,Botafogo,Zona Sul,88a8a0788dfffff,,,,,,,, +003165,Barra da Tijuca,Barra da Tijuca,88a8a07515fffff,,,,,,,, +003166,Jacarepaguá,Jacarepaguá,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +003167,Barra da Tijuca,Barra da Tijuca,88a8a07515fffff,,,,,,,, +003168,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +003169,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +003170,Barra da Tijuca,Barra da Tijuca,88a8a0756dfffff,,,,,,,, +003171,Alto da Boa Vista,Grande Tijuca,88a8a0635bfffff,,,,,,,, +003172,Camorim,Barra da Tijuca,88a8a0751dfffff,,,,,,,, +003174,Jacarepaguá,Jacarepaguá,88a8a07539fffff,,,,,,,, +003175,Jacarepaguá,Jacarepaguá,88a8a07531fffff,TRUE,193,-22.96385484,-43.3943982,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3923982005 -22.9638548365, -43.392407831046654 -22.96405087078066, -43.39243662993919 -22.964245017144034, -43.39248431982853 -22.96443540585451, -43.39255044143498 -22.96462020336473, -43.3926343579713 -22.964797629973653, -43.3927352612754 -22.96496597696604, -43.39285217959328 -22.96512362306833, -43.39298398693763 -22.965269050062375, -43.393129413931675 -22.965400857406728, -43.39328706003396 -22.965517775724607, -43.393455407026345 -22.965618679028697, -43.393632833635266 -22.965702595565023, -43.39381763114549 -22.965768717171464, -43.39400801985597 -22.965816407060807, -43.39420216621934 -22.965845205953347, -43.3943982005 -22.9658548365, -43.39459423478066 -22.965845205953347, -43.39478838114403 -22.965816407060807, -43.39497876985451 -22.965768717171464, -43.39516356736473 -22.965702595565023, -43.395340993973655 -22.965618679028697, -43.395509340966036 -22.965517775724607, -43.395666987068324 -22.965400857406728, -43.39581241406237 -22.965269050062375, -43.39594422140672 -22.96512362306833, -43.3960611397246 -22.96496597696604, -43.396162043028696 -22.964797629973653, -43.39624595956502 -22.96462020336473, -43.396312081171466 -22.96443540585451, -43.39635977106081 -22.964245017144034, -43.396388569953345 -22.96405087078066, -43.3963982005 -22.9638548365, -43.396388569953345 -22.963658802219342, -43.39635977106081 -22.96346465585597, -43.396312081171466 -22.963274267145493, -43.39624595956502 -22.96308946963527, -43.396162043028696 -22.96291204302635, -43.3960611397246 -22.96274369603396, -43.39594422140672 -22.962586049931673, -43.39581241406237 -22.962440622937628, -43.395666987068324 -22.962308815593275, -43.395509340966036 -22.962191897275396, -43.395340993973655 -22.962090993971305, -43.39516356736473 -22.96200707743498, -43.39497876985451 -22.96194095582854, -43.39478838114403 -22.961893265939196, -43.39459423478066 -22.961864467046656, -43.3943982005 -22.961854836500002, -43.39420216621934 -22.961864467046656, -43.39400801985597 -22.961893265939196, -43.39381763114549 -22.96194095582854, -43.393632833635266 -22.96200707743498, -43.393455407026345 -22.962090993971305, -43.39328706003396 -22.962191897275396, -43.393129413931675 -22.962308815593275, -43.39298398693763 -22.962440622937628, -43.39285217959328 -22.962586049931673, -43.3927352612754 -22.96274369603396, -43.3926343579713 -22.96291204302635, -43.39255044143498 -22.96308946963527, -43.39248431982853 -22.963274267145493, -43.39243662993919 -22.96346465585597, -43.392407831046654 -22.963658802219342, -43.3923982005 -22.9638548365))" +003176,Jacarepaguá,Jacarepaguá,88a8a07511fffff,,,,,,,, +003177,Barra da Tijuca,Barra da Tijuca,88a8a07553fffff,,,,,,,, +003178,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07461fffff,,,,,,,, +003179,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07467fffff,,,,,,,, +003180,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0755bfffff,,,,,,,, +003181,Barra da Tijuca,Barra da Tijuca,88a8a0719bfffff,TRUE,301,-23.00620821,-43.31199616,PO,J,Lagoa da Tijuca,"POLYGON ((-43.3099961621 -23.0062082145, -43.310005792646656 -23.006404248780658, -43.31003459153919 -23.00659839514403, -43.310082281428535 -23.006788783854507, -43.31014840303498 -23.00697358136473, -43.310232319571305 -23.00715100797365, -43.3103332228754 -23.00731935496604, -43.31045014119328 -23.007477001068327, -43.31058194853763 -23.007622428062373, -43.31072737553168 -23.007754235406725, -43.310885021633965 -23.007871153724604, -43.31105336862635 -23.007972057028695, -43.31123079523527 -23.00805597356502, -43.31141559274549 -23.008122095171462, -43.31160598145597 -23.008169785060804, -43.31180012781934 -23.008198583953344, -43.3119961621 -23.008208214499998, -43.312192196380664 -23.008198583953344, -43.312386342744034 -23.008169785060804, -43.31257673145451 -23.008122095171462, -43.312761528964735 -23.00805597356502, -43.31293895557366 -23.007972057028695, -43.31310730256604 -23.007871153724604, -43.313264948668326 -23.007754235406725, -43.31341037566237 -23.007622428062373, -43.313542183006724 -23.007477001068327, -43.3136591013246 -23.00731935496604, -43.3137600046287 -23.00715100797365, -43.313843921165024 -23.00697358136473, -43.31391004277147 -23.006788783854507, -43.31395773266081 -23.00659839514403, -43.31398653155335 -23.006404248780658, -43.313996162100004 -23.0062082145, -43.31398653155335 -23.00601218021934, -43.31395773266081 -23.005818033855967, -43.31391004277147 -23.00562764514549, -43.313843921165024 -23.00544284763527, -43.3137600046287 -23.005265421026348, -43.3136591013246 -23.00509707403396, -43.313542183006724 -23.00493942793167, -43.31341037566237 -23.004794000937625, -43.313264948668326 -23.004662193593273, -43.31310730256604 -23.004545275275394, -43.31293895557366 -23.004444371971303, -43.312761528964735 -23.004360455434977, -43.31257673145451 -23.004294333828536, -43.312386342744034 -23.004246643939194, -43.312192196380664 -23.004217845046654, -43.3119961621 -23.0042082145, -43.31180012781934 -23.004217845046654, -43.31160598145597 -23.004246643939194, -43.31141559274549 -23.004294333828536, -43.31123079523527 -23.004360455434977, -43.31105336862635 -23.004444371971303, -43.310885021633965 -23.004545275275394, -43.31072737553168 -23.004662193593273, -43.31058194853763 -23.004794000937625, -43.31045014119328 -23.00493942793167, -43.3103332228754 -23.00509707403396, -43.310232319571305 -23.005265421026348, -43.31014840303498 -23.00544284763527, -43.310082281428535 -23.00562764514549, -43.31003459153919 -23.005818033855967, -43.310005792646656 -23.00601218021934, -43.3099961621 -23.0062082145))" +003183,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003184,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003185,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003186,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003187,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003188,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003189,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003190,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003191,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003192,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07441fffff,,,,,,,, +003193,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003194,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003195,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07443fffff,,,,,,,, +003196,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003197,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003198,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07443fffff,,,,,,,, +003199,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003200,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003201,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003202,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003203,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003204,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003206,Campo Grande,Zona Oeste,88a8a02989fffff,,,,,,,, +003207,Barra da Tijuca,Barra da Tijuca,88a8a07559fffff,,,,,,,, +003208,Barra da Tijuca,Barra da Tijuca,88a8a0755dfffff,,,,,,,, +003209,Campo Grande,Zona Oeste,88a8a02989fffff,,,,,,,, +003210,Campo Grande,Zona Oeste,88a8a029c7fffff,,,,,,,, +003211,Barra da Tijuca,Barra da Tijuca,88a8a07567fffff,,,,,,,, +003212,Barra da Tijuca,Barra da Tijuca,88a8a0752dfffff,TRUE,299,-22.98054424,-43.36533115,PO,J,Arroio Fundo,"POLYGON ((-43.3633311487 -22.9805442422, -43.363340779246656 -22.98074027648066, -43.36336957813919 -22.980934422844033, -43.363417268028535 -22.98112481155451, -43.36348338963498 -22.98130960906473, -43.363567306171305 -22.981487035673652, -43.3636682094754 -22.98165538266604, -43.36378512779328 -22.98181302876833, -43.36391693513763 -22.981958455762374, -43.364062362131676 -22.982090263106727, -43.364220008233964 -22.982207181424606, -43.364388355226346 -22.982308084728697, -43.36456578183527 -22.982392001265023, -43.36475057934549 -22.982458122871464, -43.36494096805597 -22.982505812760806, -43.36513511441934 -22.982534611653346, -43.3653311487 -22.9825442422, -43.365527182980664 -22.982534611653346, -43.365721329344034 -22.982505812760806, -43.36591171805451 -22.982458122871464, -43.366096515564735 -22.982392001265023, -43.366273942173656 -22.982308084728697, -43.36644228916604 -22.982207181424606, -43.366599935268326 -22.982090263106727, -43.36674536226237 -22.981958455762374, -43.366877169606724 -22.98181302876833, -43.3669940879246 -22.98165538266604, -43.3670949912287 -22.981487035673652, -43.36717890776502 -22.98130960906473, -43.36724502937147 -22.98112481155451, -43.36729271926081 -22.980934422844033, -43.36732151815335 -22.98074027648066, -43.3673311487 -22.9805442422, -43.36732151815335 -22.98034820791934, -43.36729271926081 -22.980154061555968, -43.36724502937147 -22.979963672845493, -43.36717890776502 -22.97977887533527, -43.3670949912287 -22.97960144872635, -43.3669940879246 -22.97943310173396, -43.366877169606724 -22.979275455631672, -43.36674536226237 -22.979130028637627, -43.366599935268326 -22.978998221293274, -43.36644228916604 -22.978881302975395, -43.366273942173656 -22.978780399671304, -43.366096515564735 -22.97869648313498, -43.36591171805451 -22.978630361528538, -43.365721329344034 -22.978582671639195, -43.365527182980664 -22.978553872746655, -43.3653311487 -22.9785442422, -43.36513511441934 -22.978553872746655, -43.36494096805597 -22.978582671639195, -43.36475057934549 -22.978630361528538, -43.36456578183527 -22.97869648313498, -43.364388355226346 -22.978780399671304, -43.364220008233964 -22.978881302975395, -43.364062362131676 -22.978998221293274, -43.36391693513763 -22.979130028637627, -43.36378512779328 -22.979275455631672, -43.3636682094754 -22.97943310173396, -43.363567306171305 -22.97960144872635, -43.36348338963498 -22.97977887533527, -43.363417268028535 -22.979963672845493, -43.36336957813919 -22.980154061555968, -43.363340779246656 -22.98034820791934, -43.3633311487 -22.9805442422))" +003213,Maracanã,Grande Tijuca,88a8a0610dfffff,,,,,,,, +003214,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003215,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003216,Tijuca,Grande Tijuca,88a8a06163fffff,,,,,,,, +003217,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003218,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003219,Maracanã,Grande Tijuca,88a8a0610dfffff,,,,,,,, +003220,Maracanã,Grande Tijuca,88a8a0610dfffff,TRUE,275,-22.91262532,-43.23500878,PO,G,Canal do Mangue,"POLYGON ((-43.2330087823 -22.9126253186, -43.233018412846654 -22.91282135288066, -43.23304721173919 -22.913015499244032, -43.23309490162853 -22.913205887954508, -43.23316102323498 -22.91339068546473, -43.2332449397713 -22.91356811207365, -43.2333458430754 -22.91373645906604, -43.23346276139328 -22.91389410516833, -43.23359456873763 -22.914039532162374, -43.233739995731675 -22.914171339506726, -43.23389764183396 -22.914288257824605, -43.234065988826345 -22.914389161128696, -43.234243415435266 -22.914473077665022, -43.23442821294549 -22.914539199271463, -43.23461860165597 -22.914586889160805, -43.23481274801934 -22.914615688053345, -43.2350087823 -22.9146253186, -43.23520481658066 -22.914615688053345, -43.23539896294403 -22.914586889160805, -43.23558935165451 -22.914539199271463, -43.23577414916473 -22.914473077665022, -43.235951575773655 -22.914389161128696, -43.236119922766036 -22.914288257824605, -43.236277568868324 -22.914171339506726, -43.23642299586237 -22.914039532162374, -43.23655480320672 -22.91389410516833, -43.2366717215246 -22.91373645906604, -43.236772624828696 -22.91356811207365, -43.23685654136502 -22.91339068546473, -43.236922662971466 -22.913205887954508, -43.23697035286081 -22.913015499244032, -43.236999151753345 -22.91282135288066, -43.2370087823 -22.9126253186, -43.236999151753345 -22.91242928431934, -43.23697035286081 -22.912235137955967, -43.236922662971466 -22.912044749245492, -43.23685654136502 -22.91185995173527, -43.236772624828696 -22.91168252512635, -43.2366717215246 -22.91151417813396, -43.23655480320672 -22.91135653203167, -43.23642299586237 -22.911211105037626, -43.236277568868324 -22.911079297693274, -43.236119922766036 -22.910962379375395, -43.235951575773655 -22.910861476071304, -43.23577414916473 -22.910777559534978, -43.23558935165451 -22.910711437928537, -43.23539896294403 -22.910663748039195, -43.23520481658066 -22.910634949146655, -43.2350087823 -22.9106253186, -43.23481274801934 -22.910634949146655, -43.23461860165597 -22.910663748039195, -43.23442821294549 -22.910711437928537, -43.234243415435266 -22.910777559534978, -43.234065988826345 -22.910861476071304, -43.23389764183396 -22.910962379375395, -43.233739995731675 -22.911079297693274, -43.23359456873763 -22.911211105037626, -43.23346276139328 -22.91135653203167, -43.2333458430754 -22.91151417813396, -43.2332449397713 -22.91168252512635, -43.23316102323498 -22.91185995173527, -43.23309490162853 -22.912044749245492, -43.23304721173919 -22.912235137955967, -43.233018412846654 -22.91242928431934, -43.2330087823 -22.9126253186))" +003221,Maracanã,Grande Tijuca,88a8a0610dfffff,,,,,,,, +003222,Maracanã,Grande Tijuca,88a8a0610dfffff,,,,,,,, +003223,Campo Grande,Zona Oeste,88a8a029c5fffff,,,,,,,, +003224,Campo Grande,Zona Oeste,88a8a029c7fffff,,,,,,,, +003225,Campo Grande,Zona Oeste,88a8a029c5fffff,TRUE,261,-22.88308542,-43.57309198,PO,S,Rio Campinho,"POLYGON ((-43.5710919764 -22.8830854193, -43.571101606946655 -22.883281453580658, -43.57113040583919 -22.88347559994403, -43.571178095728534 -22.883665988654506, -43.57124421733498 -22.88385078616473, -43.571328133871305 -22.88402821277365, -43.5714290371754 -22.88419655976604, -43.57154595549328 -22.884354205868327, -43.57167776283763 -22.884499632862372, -43.571823189831676 -22.884631440206725, -43.571980835933964 -22.884748358524604, -43.572149182926346 -22.884849261828695, -43.57232660953527 -22.88493317836502, -43.57251140704549 -22.88499929997146, -43.57270179575597 -22.885046989860804, -43.57289594211934 -22.885075788753344, -43.5730919764 -22.885085419299998, -43.57328801068066 -22.885075788753344, -43.57348215704403 -22.885046989860804, -43.57367254575451 -22.88499929997146, -43.573857343264734 -22.88493317836502, -43.574034769873656 -22.884849261828695, -43.57420311686604 -22.884748358524604, -43.574360762968325 -22.884631440206725, -43.57450618996237 -22.884499632862372, -43.57463799730672 -22.884354205868327, -43.5747549156246 -22.88419655976604, -43.5748558189287 -22.88402821277365, -43.57493973546502 -22.88385078616473, -43.57500585707147 -22.883665988654506, -43.57505354696081 -22.88347559994403, -43.575082345853346 -22.883281453580658, -43.5750919764 -22.8830854193, -43.575082345853346 -22.88288938501934, -43.57505354696081 -22.882695238655966, -43.57500585707147 -22.88250484994549, -43.57493973546502 -22.88232005243527, -43.5748558189287 -22.882142625826347, -43.5747549156246 -22.881974278833958, -43.57463799730672 -22.88181663273167, -43.57450618996237 -22.881671205737625, -43.574360762968325 -22.881539398393272, -43.57420311686604 -22.881422480075393, -43.574034769873656 -22.881321576771303, -43.573857343264734 -22.881237660234977, -43.57367254575451 -22.881171538628536, -43.57348215704403 -22.881123848739193, -43.57328801068066 -22.881095049846653, -43.5730919764 -22.8810854193, -43.57289594211934 -22.881095049846653, -43.57270179575597 -22.881123848739193, -43.57251140704549 -22.881171538628536, -43.57232660953527 -22.881237660234977, -43.572149182926346 -22.881321576771303, -43.571980835933964 -22.881422480075393, -43.571823189831676 -22.881539398393272, -43.57167776283763 -22.881671205737625, -43.57154595549328 -22.88181663273167, -43.5714290371754 -22.881974278833958, -43.571328133871305 -22.882142625826347, -43.57124421733498 -22.88232005243527, -43.571178095728534 -22.88250484994549, -43.57113040583919 -22.882695238655966, -43.571101606946655 -22.88288938501934, -43.5710919764 -22.8830854193))" +003227,Jacarepaguá,Jacarepaguá,88a8a07539fffff,TRUE,240,-22.97276823,-43.39221805,PM,J,Lagoa da Tijuca,"POLYGON ((-43.390218047299996 -22.9727682289, -43.39022767784665 -22.97296426318066, -43.39025647673919 -22.973158409544034, -43.39030416662853 -22.97334879825451, -43.390370288234976 -22.97353359576473, -43.3904542047713 -22.973711022373653, -43.3905551080754 -22.973879369366042, -43.390672026393275 -22.97403701546833, -43.39080383373763 -22.974182442462375, -43.390949260731674 -22.974314249806728, -43.39110690683396 -22.974431168124607, -43.39127525382634 -22.974532071428698, -43.391452680435265 -22.974615987965024, -43.39163747794549 -22.974682109571464, -43.391827866655966 -22.974729799460807, -43.392022013019336 -22.974758598353347, -43.3922180473 -22.9747682289, -43.39241408158066 -22.974758598353347, -43.39260822794403 -22.974729799460807, -43.39279861665451 -22.974682109571464, -43.39298341416473 -22.974615987965024, -43.39316084077365 -22.974532071428698, -43.393329187766035 -22.974431168124607, -43.39348683386832 -22.974314249806728, -43.39363226086237 -22.974182442462375, -43.39376406820672 -22.97403701546833, -43.3938809865246 -22.973879369366042, -43.393981889828694 -22.973711022373653, -43.39406580636502 -22.97353359576473, -43.394131927971465 -22.97334879825451, -43.39417961786081 -22.973158409544034, -43.394208416753344 -22.97296426318066, -43.3942180473 -22.9727682289, -43.394208416753344 -22.972572194619342, -43.39417961786081 -22.97237804825597, -43.394131927971465 -22.972187659545494, -43.39406580636502 -22.97200286203527, -43.393981889828694 -22.97182543542635, -43.3938809865246 -22.97165708843396, -43.39376406820672 -22.971499442331673, -43.39363226086237 -22.971354015337628, -43.39348683386832 -22.971222207993275, -43.393329187766035 -22.971105289675396, -43.39316084077365 -22.971004386371305, -43.39298341416473 -22.97092046983498, -43.39279861665451 -22.97085434822854, -43.39260822794403 -22.970806658339196, -43.39241408158066 -22.970777859446656, -43.3922180473 -22.970768228900003, -43.392022013019336 -22.970777859446656, -43.391827866655966 -22.970806658339196, -43.39163747794549 -22.97085434822854, -43.391452680435265 -22.97092046983498, -43.39127525382634 -22.971004386371305, -43.39110690683396 -22.971105289675396, -43.390949260731674 -22.971222207993275, -43.39080383373763 -22.971354015337628, -43.390672026393275 -22.971499442331673, -43.3905551080754 -22.97165708843396, -43.3904542047713 -22.97182543542635, -43.390370288234976 -22.97200286203527, -43.39030416662853 -22.972187659545494, -43.39025647673919 -22.97237804825597, -43.39022767784665 -22.972572194619342, -43.390218047299996 -22.9727682289))" +003228,Campo Grande,Zona Oeste,88a8a0291dfffff,,,,,,,, +003229,Campo Grande,Zona Oeste,88a8a0291dfffff,,,,,,,, +003230,Jacarepaguá,Jacarepaguá,88a8a07535fffff,,,,,,,, +003231,Barra da Tijuca,Barra da Tijuca,88a8a07515fffff,,,,,,,, +003232,Barra da Tijuca,Barra da Tijuca,88a8a07515fffff,TRUE,105,-22.97127073,-43.40140078,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.3994007844 -22.9712707295, -43.39941041494666 -22.971466763780658, -43.399439213839194 -22.97166091014403, -43.39948690372854 -22.971851298854506, -43.39955302533498 -22.97203609636473, -43.39963694187131 -22.97221352297365, -43.3997378451754 -22.97238186996604, -43.39985476349328 -22.972539516068327, -43.39998657083763 -22.972684943062372, -43.40013199783168 -22.972816750406725, -43.40028964393397 -22.972933668724604, -43.40045799092635 -22.973034572028695, -43.40063541753527 -22.97311848856502, -43.40082021504549 -22.97318461017146, -43.40101060375597 -22.973232300060804, -43.40120475011934 -22.973261098953344, -43.4014007844 -22.973270729499998, -43.401596818680666 -22.973261098953344, -43.401790965044036 -22.973232300060804, -43.401981353754515 -22.97318461017146, -43.40216615126474 -22.97311848856502, -43.40234357787366 -22.973034572028695, -43.40251192486604 -22.972933668724604, -43.40266957096833 -22.972816750406725, -43.40281499796237 -22.972684943062372, -43.402946805306726 -22.972539516068327, -43.403063723624605 -22.97238186996604, -43.4031646269287 -22.97221352297365, -43.403248543465025 -22.97203609636473, -43.40331466507147 -22.971851298854506, -43.40336235496081 -22.97166091014403, -43.40339115385335 -22.971466763780658, -43.403400784400006 -22.9712707295, -43.40339115385335 -22.97107469521934, -43.40336235496081 -22.970880548855966, -43.40331466507147 -22.97069016014549, -43.403248543465025 -22.97050536263527, -43.4031646269287 -22.970327936026347, -43.403063723624605 -22.97015958903396, -43.402946805306726 -22.97000194293167, -43.40281499796237 -22.969856515937625, -43.40266957096833 -22.969724708593272, -43.40251192486604 -22.969607790275393, -43.40234357787366 -22.969506886971303, -43.40216615126474 -22.969422970434977, -43.401981353754515 -22.969356848828536, -43.401790965044036 -22.969309158939193, -43.401596818680666 -22.969280360046653, -43.4014007844 -22.9692707295, -43.40120475011934 -22.969280360046653, -43.40101060375597 -22.969309158939193, -43.40082021504549 -22.969356848828536, -43.40063541753527 -22.969422970434977, -43.40045799092635 -22.969506886971303, -43.40028964393397 -22.969607790275393, -43.40013199783168 -22.969724708593272, -43.39998657083763 -22.969856515937625, -43.39985476349328 -22.97000194293167, -43.3997378451754 -22.97015958903396, -43.39963694187131 -22.970327936026347, -43.39955302533498 -22.97050536263527, -43.39948690372854 -22.97069016014549, -43.399439213839194 -22.970880548855966, -43.39941041494666 -22.97107469521934, -43.3994007844 -22.9712707295))" +003234,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0740dfffff,,,,,,,, +003235,Pavuna,Zona Norte,88a8a06ec9fffff,,,,,,,, +003236,Recreio dos Bandeirantes,Barra da Tijuca,88a8a0740dfffff,,,,,,,, +003238,Pavuna,Zona Norte,88a8a06ecdfffff,,,,,,,, +003239,Pavuna,Zona Norte,88a8a06ecdfffff,,,,,,,, +003241,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,TRUE,206,-22.99356461,-43.44539816,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.443398163199994 -22.9935646075, -43.44340779374665 -22.99376064178066, -43.44343659263919 -22.993954788144034, -43.44348428252853 -22.99414517685451, -43.443550404134974 -22.99432997436473, -43.4436343206713 -22.994507400973653, -43.443735223975395 -22.994675747966042, -43.443852142293274 -22.99483339406833, -43.44398394963763 -22.994978821062375, -43.44412937663167 -22.995110628406728, -43.44428702273396 -22.995227546724607, -43.44445536972634 -22.995328450028698, -43.44463279633526 -22.995412366565024, -43.444817593845485 -22.995478488171464, -43.445007982555964 -22.995526178060807, -43.445202128919334 -22.995554976953347, -43.4453981632 -22.9955646075, -43.44559419748066 -22.995554976953347, -43.44578834384403 -22.995526178060807, -43.44597873255451 -22.995478488171464, -43.44616353006473 -22.995412366565024, -43.44634095667365 -22.995328450028698, -43.44650930366603 -22.995227546724607, -43.44666694976832 -22.995110628406728, -43.44681237676237 -22.994978821062375, -43.44694418410672 -22.99483339406833, -43.4470611024246 -22.994675747966042, -43.44716200572869 -22.994507400973653, -43.44724592226502 -22.99432997436473, -43.44731204387146 -22.99414517685451, -43.447359733760806 -22.993954788144034, -43.44738853265334 -22.99376064178066, -43.4473981632 -22.9935646075, -43.44738853265334 -22.993368573219342, -43.447359733760806 -22.99317442685597, -43.44731204387146 -22.992984038145494, -43.44724592226502 -22.99279924063527, -43.44716200572869 -22.99262181402635, -43.4470611024246 -22.99245346703396, -43.44694418410672 -22.992295820931673, -43.44681237676237 -22.992150393937628, -43.44666694976832 -22.992018586593275, -43.44650930366603 -22.991901668275396, -43.44634095667365 -22.991800764971305, -43.44616353006473 -22.99171684843498, -43.44597873255451 -22.99165072682854, -43.44578834384403 -22.991603036939196, -43.44559419748066 -22.991574238046656, -43.4453981632 -22.991564607500003, -43.445202128919334 -22.991574238046656, -43.445007982555964 -22.991603036939196, -43.444817593845485 -22.99165072682854, -43.44463279633526 -22.99171684843498, -43.44445536972634 -22.991800764971305, -43.44428702273396 -22.991901668275396, -43.44412937663167 -22.992018586593275, -43.44398394963763 -22.992150393937628, -43.443852142293274 -22.992295820931673, -43.443735223975395 -22.99245346703396, -43.4436343206713 -22.99262181402635, -43.443550404134974 -22.99279924063527, -43.44348428252853 -22.992984038145494, -43.44343659263919 -22.99317442685597, -43.44340779374665 -22.993368573219342, -43.443398163199994 -22.9935646075))" +003242,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003243,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003244,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003245,Pavuna,Zona Norte,88a8a06ecdfffff,,,,,,,, +003246,Pavuna,Zona Norte,88a8a06ecdfffff,,,,,,,, +003247,Pavuna,Zona Norte,88a8a06ecdfffff,,,,,,,, +003251,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +003252,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +003253,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +003254,São Cristóvão,Centro,88a8a06127fffff,,,,,,,, +003255,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +003256,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +003257,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +003258,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +003259,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +003260,Centro,Centro,88a8a06a0bfffff,TRUE,65,-22.90648633,-43.18234547,PC,G,Canal do Mangue,"POLYGON ((-43.180345474 -22.9064863275, -43.180355104546656 -22.90668236178066, -43.18038390343919 -22.906876508144034, -43.180431593328535 -22.90706689685451, -43.18049771493498 -22.90725169436473, -43.180581631471306 -22.907429120973653, -43.1806825347754 -22.907597467966042, -43.18079945309328 -22.90775511406833, -43.18093126043763 -22.907900541062375, -43.18107668743168 -22.908032348406728, -43.181234333533965 -22.908149266724607, -43.18140268052635 -22.908250170028698, -43.18158010713527 -22.908334086565024, -43.18176490464549 -22.908400208171464, -43.18195529335597 -22.908447898060807, -43.18214943971934 -22.908476696953347, -43.182345474 -22.9084863275, -43.182541508280664 -22.908476696953347, -43.182735654644034 -22.908447898060807, -43.18292604335451 -22.908400208171464, -43.183110840864735 -22.908334086565024, -43.18328826747366 -22.908250170028698, -43.18345661446604 -22.908149266724607, -43.183614260568326 -22.908032348406728, -43.18375968756237 -22.907900541062375, -43.183891494906725 -22.90775511406833, -43.1840084132246 -22.907597467966042, -43.1841093165287 -22.907429120973653, -43.184193233065024 -22.90725169436473, -43.18425935467147 -22.90706689685451, -43.18430704456081 -22.906876508144034, -43.18433584345335 -22.90668236178066, -43.184345474000004 -22.9064863275, -43.18433584345335 -22.906290293219342, -43.18430704456081 -22.90609614685597, -43.18425935467147 -22.905905758145494, -43.184193233065024 -22.90572096063527, -43.1841093165287 -22.90554353402635, -43.1840084132246 -22.90537518703396, -43.183891494906725 -22.905217540931673, -43.18375968756237 -22.905072113937628, -43.183614260568326 -22.904940306593275, -43.18345661446604 -22.904823388275396, -43.18328826747366 -22.904722484971305, -43.183110840864735 -22.90463856843498, -43.18292604335451 -22.90457244682854, -43.182735654644034 -22.904524756939196, -43.182541508280664 -22.904495958046656, -43.182345474 -22.904486327500003, -43.18214943971934 -22.904495958046656, -43.18195529335597 -22.904524756939196, -43.18176490464549 -22.90457244682854, -43.18158010713527 -22.90463856843498, -43.18140268052635 -22.904722484971305, -43.181234333533965 -22.904823388275396, -43.18107668743168 -22.904940306593275, -43.18093126043763 -22.905072113937628, -43.18079945309328 -22.905217540931673, -43.1806825347754 -22.90537518703396, -43.180581631471306 -22.90554353402635, -43.18049771493498 -22.90572096063527, -43.180431593328535 -22.905905758145494, -43.18038390343919 -22.90609614685597, -43.180355104546656 -22.906290293219342, -43.180345474 -22.9064863275))" +003261,Centro,Centro,88a8a06a0bfffff,TRUE,65,-22.90648633,-43.18234547,PC,G,Canal do Mangue,"POLYGON ((-43.180345474 -22.9064863275, -43.180355104546656 -22.90668236178066, -43.18038390343919 -22.906876508144034, -43.180431593328535 -22.90706689685451, -43.18049771493498 -22.90725169436473, -43.180581631471306 -22.907429120973653, -43.1806825347754 -22.907597467966042, -43.18079945309328 -22.90775511406833, -43.18093126043763 -22.907900541062375, -43.18107668743168 -22.908032348406728, -43.181234333533965 -22.908149266724607, -43.18140268052635 -22.908250170028698, -43.18158010713527 -22.908334086565024, -43.18176490464549 -22.908400208171464, -43.18195529335597 -22.908447898060807, -43.18214943971934 -22.908476696953347, -43.182345474 -22.9084863275, -43.182541508280664 -22.908476696953347, -43.182735654644034 -22.908447898060807, -43.18292604335451 -22.908400208171464, -43.183110840864735 -22.908334086565024, -43.18328826747366 -22.908250170028698, -43.18345661446604 -22.908149266724607, -43.183614260568326 -22.908032348406728, -43.18375968756237 -22.907900541062375, -43.183891494906725 -22.90775511406833, -43.1840084132246 -22.907597467966042, -43.1841093165287 -22.907429120973653, -43.184193233065024 -22.90725169436473, -43.18425935467147 -22.90706689685451, -43.18430704456081 -22.906876508144034, -43.18433584345335 -22.90668236178066, -43.184345474000004 -22.9064863275, -43.18433584345335 -22.906290293219342, -43.18430704456081 -22.90609614685597, -43.18425935467147 -22.905905758145494, -43.184193233065024 -22.90572096063527, -43.1841093165287 -22.90554353402635, -43.1840084132246 -22.90537518703396, -43.183891494906725 -22.905217540931673, -43.18375968756237 -22.905072113937628, -43.183614260568326 -22.904940306593275, -43.18345661446604 -22.904823388275396, -43.18328826747366 -22.904722484971305, -43.183110840864735 -22.90463856843498, -43.18292604335451 -22.90457244682854, -43.182735654644034 -22.904524756939196, -43.182541508280664 -22.904495958046656, -43.182345474 -22.904486327500003, -43.18214943971934 -22.904495958046656, -43.18195529335597 -22.904524756939196, -43.18176490464549 -22.90457244682854, -43.18158010713527 -22.90463856843498, -43.18140268052635 -22.904722484971305, -43.181234333533965 -22.904823388275396, -43.18107668743168 -22.904940306593275, -43.18093126043763 -22.905072113937628, -43.18079945309328 -22.905217540931673, -43.1806825347754 -22.90537518703396, -43.180581631471306 -22.90554353402635, -43.18049771493498 -22.90572096063527, -43.180431593328535 -22.905905758145494, -43.18038390343919 -22.90609614685597, -43.180355104546656 -22.906290293219342, -43.180345474 -22.9064863275))" +003262,Glória,Centro,88a8a06a41fffff,,,,,,,, +003263,Glória,Centro,88a8a06a41fffff,,,,,,,, +003264,Glória,Centro,88a8a06a41fffff,,,,,,,, +003265,Glória,Centro,88a8a06a41fffff,,,,,,,, +003266,São Cristóvão,Centro,88a8a0612bfffff,,,,,,,, +003268,Centro,Centro,88a8a06a0bfffff,TRUE,65,-22.90648633,-43.18234547,PC,G,Canal do Mangue,"POLYGON ((-43.180345474 -22.9064863275, -43.180355104546656 -22.90668236178066, -43.18038390343919 -22.906876508144034, -43.180431593328535 -22.90706689685451, -43.18049771493498 -22.90725169436473, -43.180581631471306 -22.907429120973653, -43.1806825347754 -22.907597467966042, -43.18079945309328 -22.90775511406833, -43.18093126043763 -22.907900541062375, -43.18107668743168 -22.908032348406728, -43.181234333533965 -22.908149266724607, -43.18140268052635 -22.908250170028698, -43.18158010713527 -22.908334086565024, -43.18176490464549 -22.908400208171464, -43.18195529335597 -22.908447898060807, -43.18214943971934 -22.908476696953347, -43.182345474 -22.9084863275, -43.182541508280664 -22.908476696953347, -43.182735654644034 -22.908447898060807, -43.18292604335451 -22.908400208171464, -43.183110840864735 -22.908334086565024, -43.18328826747366 -22.908250170028698, -43.18345661446604 -22.908149266724607, -43.183614260568326 -22.908032348406728, -43.18375968756237 -22.907900541062375, -43.183891494906725 -22.90775511406833, -43.1840084132246 -22.907597467966042, -43.1841093165287 -22.907429120973653, -43.184193233065024 -22.90725169436473, -43.18425935467147 -22.90706689685451, -43.18430704456081 -22.906876508144034, -43.18433584345335 -22.90668236178066, -43.184345474000004 -22.9064863275, -43.18433584345335 -22.906290293219342, -43.18430704456081 -22.90609614685597, -43.18425935467147 -22.905905758145494, -43.184193233065024 -22.90572096063527, -43.1841093165287 -22.90554353402635, -43.1840084132246 -22.90537518703396, -43.183891494906725 -22.905217540931673, -43.18375968756237 -22.905072113937628, -43.183614260568326 -22.904940306593275, -43.18345661446604 -22.904823388275396, -43.18328826747366 -22.904722484971305, -43.183110840864735 -22.90463856843498, -43.18292604335451 -22.90457244682854, -43.182735654644034 -22.904524756939196, -43.182541508280664 -22.904495958046656, -43.182345474 -22.904486327500003, -43.18214943971934 -22.904495958046656, -43.18195529335597 -22.904524756939196, -43.18176490464549 -22.90457244682854, -43.18158010713527 -22.90463856843498, -43.18140268052635 -22.904722484971305, -43.181234333533965 -22.904823388275396, -43.18107668743168 -22.904940306593275, -43.18093126043763 -22.905072113937628, -43.18079945309328 -22.905217540931673, -43.1806825347754 -22.90537518703396, -43.180581631471306 -22.90554353402635, -43.18049771493498 -22.90572096063527, -43.180431593328535 -22.905905758145494, -43.18038390343919 -22.90609614685597, -43.180355104546656 -22.906290293219342, -43.180345474 -22.9064863275))" +003269,Osvaldo Cruz,Zona Norte,88a8a06087fffff,,,,,,,, +003270,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +003271,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +003272,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +003273,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +003274,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +003275,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +003276,Copacabana,Zona Sul,88a8a078c1fffff,,,,,,,, +003277,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +003278,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +003279,Copacabana,Zona Sul,88a8a078cdfffff,,,,,,,, +003280,Galeão,Ilhas,88a8a06f65fffff,TRUE,318,-22.81994455,-43.22676948,PO,G,Praia de Sao Bento,"POLYGON ((-43.2247694753 -22.819944552, -43.22477910584666 -22.820140586280658, -43.224807904739194 -22.82033473264403, -43.224855594628536 -22.820525121354507, -43.22492171623498 -22.82070991886473, -43.22500563277131 -22.82088734547365, -43.2251065360754 -22.82105569246604, -43.22522345439328 -22.821213338568327, -43.22535526173763 -22.821358765562373, -43.22550068873168 -22.821490572906725, -43.225658334833966 -22.821607491224604, -43.22582668182635 -22.821708394528695, -43.22600410843527 -22.82179231106502, -43.22618890594549 -22.821858432671462, -43.22637929465597 -22.821906122560804, -43.22657344101934 -22.821934921453344, -43.2267694753 -22.821944551999998, -43.226965509580666 -22.821934921453344, -43.227159655944035 -22.821906122560804, -43.227350044654514 -22.821858432671462, -43.22753484216474 -22.82179231106502, -43.22771226877366 -22.821708394528695, -43.22788061576604 -22.821607491224604, -43.22803826186833 -22.821490572906725, -43.22818368886237 -22.821358765562373, -43.228315496206726 -22.821213338568327, -43.228432414524605 -22.82105569246604, -43.2285333178287 -22.82088734547365, -43.228617234365025 -22.82070991886473, -43.22868335597147 -22.820525121354507, -43.22873104586081 -22.82033473264403, -43.22875984475335 -22.820140586280658, -43.228769475300005 -22.819944552, -43.22875984475335 -22.81974851771934, -43.22873104586081 -22.819554371355967, -43.22868335597147 -22.81936398264549, -43.228617234365025 -22.81917918513527, -43.2285333178287 -22.819001758526348, -43.228432414524605 -22.81883341153396, -43.228315496206726 -22.81867576543167, -43.22818368886237 -22.818530338437625, -43.22803826186833 -22.818398531093273, -43.22788061576604 -22.818281612775394, -43.22771226877366 -22.818180709471303, -43.22753484216474 -22.818096792934977, -43.227350044654514 -22.818030671328536, -43.227159655944035 -22.817982981439194, -43.226965509580666 -22.817954182546654, -43.2267694753 -22.817944552, -43.22657344101934 -22.817954182546654, -43.22637929465597 -22.817982981439194, -43.22618890594549 -22.818030671328536, -43.22600410843527 -22.818096792934977, -43.22582668182635 -22.818180709471303, -43.225658334833966 -22.818281612775394, -43.22550068873168 -22.818398531093273, -43.22535526173763 -22.818530338437625, -43.22522345439328 -22.81867576543167, -43.2251065360754 -22.81883341153396, -43.22500563277131 -22.819001758526348, -43.22492171623498 -22.81917918513527, -43.224855594628536 -22.81936398264549, -43.224807904739194 -22.819554371355967, -43.22477910584666 -22.81974851771934, -43.2247694753 -22.819944552))" +003281,Galeão,Ilhas,88a8a06f65fffff,TRUE,318,-22.81994455,-43.22676948,PO,G,Praia de Sao Bento,"POLYGON ((-43.2247694753 -22.819944552, -43.22477910584666 -22.820140586280658, -43.224807904739194 -22.82033473264403, -43.224855594628536 -22.820525121354507, -43.22492171623498 -22.82070991886473, -43.22500563277131 -22.82088734547365, -43.2251065360754 -22.82105569246604, -43.22522345439328 -22.821213338568327, -43.22535526173763 -22.821358765562373, -43.22550068873168 -22.821490572906725, -43.225658334833966 -22.821607491224604, -43.22582668182635 -22.821708394528695, -43.22600410843527 -22.82179231106502, -43.22618890594549 -22.821858432671462, -43.22637929465597 -22.821906122560804, -43.22657344101934 -22.821934921453344, -43.2267694753 -22.821944551999998, -43.226965509580666 -22.821934921453344, -43.227159655944035 -22.821906122560804, -43.227350044654514 -22.821858432671462, -43.22753484216474 -22.82179231106502, -43.22771226877366 -22.821708394528695, -43.22788061576604 -22.821607491224604, -43.22803826186833 -22.821490572906725, -43.22818368886237 -22.821358765562373, -43.228315496206726 -22.821213338568327, -43.228432414524605 -22.82105569246604, -43.2285333178287 -22.82088734547365, -43.228617234365025 -22.82070991886473, -43.22868335597147 -22.820525121354507, -43.22873104586081 -22.82033473264403, -43.22875984475335 -22.820140586280658, -43.228769475300005 -22.819944552, -43.22875984475335 -22.81974851771934, -43.22873104586081 -22.819554371355967, -43.22868335597147 -22.81936398264549, -43.228617234365025 -22.81917918513527, -43.2285333178287 -22.819001758526348, -43.228432414524605 -22.81883341153396, -43.228315496206726 -22.81867576543167, -43.22818368886237 -22.818530338437625, -43.22803826186833 -22.818398531093273, -43.22788061576604 -22.818281612775394, -43.22771226877366 -22.818180709471303, -43.22753484216474 -22.818096792934977, -43.227350044654514 -22.818030671328536, -43.227159655944035 -22.817982981439194, -43.226965509580666 -22.817954182546654, -43.2267694753 -22.817944552, -43.22657344101934 -22.817954182546654, -43.22637929465597 -22.817982981439194, -43.22618890594549 -22.818030671328536, -43.22600410843527 -22.818096792934977, -43.22582668182635 -22.818180709471303, -43.225658334833966 -22.818281612775394, -43.22550068873168 -22.818398531093273, -43.22535526173763 -22.818530338437625, -43.22522345439328 -22.81867576543167, -43.2251065360754 -22.81883341153396, -43.22500563277131 -22.819001758526348, -43.22492171623498 -22.81917918513527, -43.224855594628536 -22.81936398264549, -43.224807904739194 -22.819554371355967, -43.22477910584666 -22.81974851771934, -43.2247694753 -22.819944552))" +003282,Galeão,Ilhas,88a8a06f65fffff,TRUE,318,-22.81994455,-43.22676948,PO,G,Praia de Sao Bento,"POLYGON ((-43.2247694753 -22.819944552, -43.22477910584666 -22.820140586280658, -43.224807904739194 -22.82033473264403, -43.224855594628536 -22.820525121354507, -43.22492171623498 -22.82070991886473, -43.22500563277131 -22.82088734547365, -43.2251065360754 -22.82105569246604, -43.22522345439328 -22.821213338568327, -43.22535526173763 -22.821358765562373, -43.22550068873168 -22.821490572906725, -43.225658334833966 -22.821607491224604, -43.22582668182635 -22.821708394528695, -43.22600410843527 -22.82179231106502, -43.22618890594549 -22.821858432671462, -43.22637929465597 -22.821906122560804, -43.22657344101934 -22.821934921453344, -43.2267694753 -22.821944551999998, -43.226965509580666 -22.821934921453344, -43.227159655944035 -22.821906122560804, -43.227350044654514 -22.821858432671462, -43.22753484216474 -22.82179231106502, -43.22771226877366 -22.821708394528695, -43.22788061576604 -22.821607491224604, -43.22803826186833 -22.821490572906725, -43.22818368886237 -22.821358765562373, -43.228315496206726 -22.821213338568327, -43.228432414524605 -22.82105569246604, -43.2285333178287 -22.82088734547365, -43.228617234365025 -22.82070991886473, -43.22868335597147 -22.820525121354507, -43.22873104586081 -22.82033473264403, -43.22875984475335 -22.820140586280658, -43.228769475300005 -22.819944552, -43.22875984475335 -22.81974851771934, -43.22873104586081 -22.819554371355967, -43.22868335597147 -22.81936398264549, -43.228617234365025 -22.81917918513527, -43.2285333178287 -22.819001758526348, -43.228432414524605 -22.81883341153396, -43.228315496206726 -22.81867576543167, -43.22818368886237 -22.818530338437625, -43.22803826186833 -22.818398531093273, -43.22788061576604 -22.818281612775394, -43.22771226877366 -22.818180709471303, -43.22753484216474 -22.818096792934977, -43.227350044654514 -22.818030671328536, -43.227159655944035 -22.817982981439194, -43.226965509580666 -22.817954182546654, -43.2267694753 -22.817944552, -43.22657344101934 -22.817954182546654, -43.22637929465597 -22.817982981439194, -43.22618890594549 -22.818030671328536, -43.22600410843527 -22.818096792934977, -43.22582668182635 -22.818180709471303, -43.225658334833966 -22.818281612775394, -43.22550068873168 -22.818398531093273, -43.22535526173763 -22.818530338437625, -43.22522345439328 -22.81867576543167, -43.2251065360754 -22.81883341153396, -43.22500563277131 -22.819001758526348, -43.22492171623498 -22.81917918513527, -43.224855594628536 -22.81936398264549, -43.224807904739194 -22.819554371355967, -43.22477910584666 -22.81974851771934, -43.2247694753 -22.819944552))" +003283,Galeão,Ilhas,88a8a068dbfffff,,,,,,,, +003284,Galeão,Ilhas,88a8a068dbfffff,,,,,,,, +003285,Galeão,Ilhas,88a8a068d1fffff,,,,,,,, +003286,Galeão,Ilhas,88a8a068d7fffff,,,,,,,, +003287,Galeão,Ilhas,88a8a068d7fffff,,,,,,,, +003288,Portuguesa,Ilhas,88a8a068d7fffff,,,,,,,, +003289,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +003290,São Cristóvão,Centro,88a8a06123fffff,,,,,,,, +003292,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +003293,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +003294,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +003295,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +003296,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +003297,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +003298,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +003299,Vargem Pequena,Barra da Tijuca,88a8a0741dfffff,,,,,,,, +003300,Vargem Pequena,Barra da Tijuca,88a8a0741dfffff,,,,,,,, +003301,Vargem Pequena,Barra da Tijuca,88a8a0741dfffff,,,,,,,, +003302,Vargem Pequena,Barra da Tijuca,88a8a0741dfffff,,,,,,,, +003303,Vargem Pequena,Barra da Tijuca,88a8a07415fffff,,,,,,,, +003304,Vargem Pequena,Barra da Tijuca,88a8a07415fffff,,,,,,,, +003305,Jardim Guanabara,Ilhas,88a8a068d5fffff,,,,,,,, +003306,Barra da Tijuca,Barra da Tijuca,88a8a070a5fffff,,,,,,,, +003307,Jardim Guanabara,Ilhas,88a8a068d5fffff,,,,,,,, +003308,Gávea,Zona Sul,88a8a06365fffff,TRUE,294,-22.97878473,-43.22864049,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.226640489999994 -22.9787847288, -43.22665012054665 -22.97898076308066, -43.22667891943919 -22.979174909444033, -43.22672660932853 -22.97936529815451, -43.226792730934974 -22.97955009566473, -43.2268766474713 -22.979727522273652, -43.226977550775395 -22.97989586926604, -43.227094469093274 -22.98005351536833, -43.22722627643763 -22.980198942362374, -43.22737170343167 -22.980330749706727, -43.22752934953396 -22.980447668024606, -43.22769769652634 -22.980548571328697, -43.22787512313526 -22.980632487865023, -43.228059920645485 -22.980698609471464, -43.228250309355964 -22.980746299360806, -43.228444455719334 -22.980775098253346, -43.22864049 -22.9807847288, -43.22883652428066 -22.980775098253346, -43.22903067064403 -22.980746299360806, -43.22922105935451 -22.980698609471464, -43.22940585686473 -22.980632487865023, -43.22958328347365 -22.980548571328697, -43.22975163046603 -22.980447668024606, -43.22990927656832 -22.980330749706727, -43.23005470356237 -22.980198942362374, -43.23018651090672 -22.98005351536833, -43.2303034292246 -22.97989586926604, -43.23040433252869 -22.979727522273652, -43.23048824906502 -22.97955009566473, -43.23055437067146 -22.97936529815451, -43.230602060560805 -22.979174909444033, -43.23063085945334 -22.97898076308066, -43.23064049 -22.9787847288, -43.23063085945334 -22.978588694519342, -43.230602060560805 -22.97839454815597, -43.23055437067146 -22.978204159445493, -43.23048824906502 -22.97801936193527, -43.23040433252869 -22.97784193532635, -43.2303034292246 -22.97767358833396, -43.23018651090672 -22.977515942231673, -43.23005470356237 -22.977370515237627, -43.22990927656832 -22.977238707893274, -43.22975163046603 -22.977121789575396, -43.22958328347365 -22.977020886271305, -43.22940585686473 -22.97693696973498, -43.22922105935451 -22.976870848128538, -43.22903067064403 -22.976823158239196, -43.22883652428066 -22.976794359346655, -43.22864049 -22.976784728800002, -43.228444455719334 -22.976794359346655, -43.228250309355964 -22.976823158239196, -43.228059920645485 -22.976870848128538, -43.22787512313526 -22.97693696973498, -43.22769769652634 -22.977020886271305, -43.22752934953396 -22.977121789575396, -43.22737170343167 -22.977238707893274, -43.22722627643763 -22.977370515237627, -43.227094469093274 -22.977515942231673, -43.226977550775395 -22.97767358833396, -43.2268766474713 -22.97784193532635, -43.226792730934974 -22.97801936193527, -43.22672660932853 -22.978204159445493, -43.22667891943919 -22.97839454815597, -43.22665012054665 -22.978588694519342, -43.226640489999994 -22.9787847288))" +003309,Gávea,Zona Sul,88a8a06365fffff,,,,,,,, +003310,Gávea,Zona Sul,88a8a06365fffff,,,,,,,, +003311,Gávea,Zona Sul,88a8a06365fffff,,,,,,,, +003312,Gávea,Zona Sul,88a8a06365fffff,,,,,,,, +003313,Gávea,Zona Sul,88a8a06365fffff,,,,,,,, +003314,Jardim Guanabara,Ilhas,88a8a068c3fffff,,,,,,,, +003315,Jardim Guanabara,Ilhas,88a8a068c3fffff,,,,,,,, +003317,Jardim Guanabara,Ilhas,88a8a068c3fffff,,,,,,,, +003318,Maracanã,Grande Tijuca,88a8a0610dfffff,TRUE,322,-22.91860358,-43.23113487,PO,G,Canal do Mangue,"POLYGON ((-43.229134866799996 -22.9186035777, -43.22914449734665 -22.91879961198066, -43.22917329623919 -22.918993758344033, -43.22922098612853 -22.91918414705451, -43.229287107734976 -22.91936894456473, -43.2293710242713 -22.919546371173652, -43.229471927575396 -22.91971471816604, -43.229588845893275 -22.91987236426833, -43.22972065323763 -22.920017791262374, -43.22986608023167 -22.920149598606727, -43.23002372633396 -22.920266516924606, -43.23019207332634 -22.920367420228697, -43.230369499935264 -22.920451336765023, -43.23055429744549 -22.920517458371464, -43.230744686155965 -22.920565148260806, -43.230938832519335 -22.920593947153346, -43.2311348668 -22.9206035777, -43.23133090108066 -22.920593947153346, -43.23152504744403 -22.920565148260806, -43.23171543615451 -22.920517458371464, -43.23190023366473 -22.920451336765023, -43.23207766027365 -22.920367420228697, -43.232246007266035 -22.920266516924606, -43.23240365336832 -22.920149598606727, -43.23254908036237 -22.920017791262374, -43.23268088770672 -22.91987236426833, -43.2327978060246 -22.91971471816604, -43.232898709328694 -22.919546371173652, -43.23298262586502 -22.91936894456473, -43.233048747471464 -22.91918414705451, -43.23309643736081 -22.918993758344033, -43.23312523625334 -22.91879961198066, -43.2331348668 -22.9186035777, -43.23312523625334 -22.91840754341934, -43.23309643736081 -22.91821339705597, -43.233048747471464 -22.918023008345493, -43.23298262586502 -22.91783821083527, -43.232898709328694 -22.91766078422635, -43.2327978060246 -22.91749243723396, -43.23268088770672 -22.917334791131672, -43.23254908036237 -22.917189364137627, -43.23240365336832 -22.917057556793274, -43.232246007266035 -22.916940638475396, -43.23207766027365 -22.916839735171305, -43.23190023366473 -22.91675581863498, -43.23171543615451 -22.916689697028538, -43.23152504744403 -22.916642007139195, -43.23133090108066 -22.916613208246655, -43.2311348668 -22.916603577700002, -43.230938832519335 -22.916613208246655, -43.230744686155965 -22.916642007139195, -43.23055429744549 -22.916689697028538, -43.230369499935264 -22.91675581863498, -43.23019207332634 -22.916839735171305, -43.23002372633396 -22.916940638475396, -43.22986608023167 -22.917057556793274, -43.22972065323763 -22.917189364137627, -43.229588845893275 -22.917334791131672, -43.229471927575396 -22.91749243723396, -43.2293710242713 -22.91766078422635, -43.229287107734976 -22.91783821083527, -43.22922098612853 -22.918023008345493, -43.22917329623919 -22.91821339705597, -43.22914449734665 -22.91840754341934, -43.229134866799996 -22.9186035777))" +003319,Cacuia,Ilhas,88a8a068c7fffff,,,,,,,, +003320,Jardim Guanabara,Ilhas,88a8a068c3fffff,,,,,,,, +003321,Jardim Guanabara,Ilhas,88a8a068d7fffff,,,,,,,, +003322,Jardim Guanabara,Ilhas,88a8a068c3fffff,,,,,,,, +003323,Lagoa,Zona Sul,88a8a078d1fffff,,,,,,,, +003324,Jardim Guanabara,Ilhas,88a8a068d5fffff,,,,,,,, +003325,Jardim Guanabara,Ilhas,88a8a068d5fffff,,,,,,,, +003326,Pavuna,Zona Norte,88a8a06ec9fffff,,,,,,,, +003327,Pavuna,Zona Norte,88a8a06ec9fffff,,,,,,,, +003328,Jardim Guanabara,Ilhas,88a8a06889fffff,,,,,,,, +003329,Jardim Guanabara,Ilhas,88a8a06889fffff,,,,,,,, +003330,Cacuia,Ilhas,88a8a0688dfffff,,,,,,,, +003331,Parque Colúmbia,Zona Norte,88a8a06e11fffff,,,,,,,, +003332,Pitangueiras,Ilhas,88a8a068ebfffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +003333,Cacuia,Ilhas,88a8a068c7fffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +003334,Cacuia,Ilhas,88a8a068c7fffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +003335,Pavuna,Zona Norte,88a8a06ec9fffff,TRUE,179,-22.80991655,-43.37202885,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.3700288509 -22.8099165459, -43.370038481446656 -22.810112580180657, -43.37006728033919 -22.81030672654403, -43.370114970228535 -22.810497115254506, -43.37018109183498 -22.81068191276473, -43.370265008371305 -22.81085933937365, -43.3703659116754 -22.81102768636604, -43.37048282999328 -22.811185332468327, -43.37061463733763 -22.811330759462372, -43.37076006433168 -22.811462566806725, -43.370917710433964 -22.811579485124604, -43.371086057426346 -22.811680388428694, -43.37126348403527 -22.81176430496502, -43.37144828154549 -22.81183042657146, -43.37163867025597 -22.811878116460804, -43.37183281661934 -22.811906915353344, -43.3720288509 -22.811916545899997, -43.372224885180664 -22.811906915353344, -43.372419031544034 -22.811878116460804, -43.37260942025451 -22.81183042657146, -43.372794217764735 -22.81176430496502, -43.372971644373656 -22.811680388428694, -43.37313999136604 -22.811579485124604, -43.373297637468326 -22.811462566806725, -43.37344306446237 -22.811330759462372, -43.373574871806724 -22.811185332468327, -43.3736917901246 -22.81102768636604, -43.3737926934287 -22.81085933937365, -43.37387660996502 -22.81068191276473, -43.37394273157147 -22.810497115254506, -43.37399042146081 -22.81030672654403, -43.37401922035335 -22.810112580180657, -43.374028850900004 -22.8099165459, -43.37401922035335 -22.80972051161934, -43.37399042146081 -22.809526365255966, -43.37394273157147 -22.80933597654549, -43.37387660996502 -22.80915117903527, -43.3737926934287 -22.808973752426347, -43.3736917901246 -22.808805405433958, -43.373574871806724 -22.80864775933167, -43.37344306446237 -22.808502332337625, -43.373297637468326 -22.808370524993272, -43.37313999136604 -22.808253606675393, -43.372971644373656 -22.808152703371302, -43.372794217764735 -22.808068786834976, -43.37260942025451 -22.808002665228535, -43.372419031544034 -22.807954975339193, -43.372224885180664 -22.807926176446653, -43.3720288509 -22.8079165459, -43.37183281661934 -22.807926176446653, -43.37163867025597 -22.807954975339193, -43.37144828154549 -22.808002665228535, -43.37126348403527 -22.808068786834976, -43.371086057426346 -22.808152703371302, -43.370917710433964 -22.808253606675393, -43.37076006433168 -22.808370524993272, -43.37061463733763 -22.808502332337625, -43.37048282999328 -22.80864775933167, -43.3703659116754 -22.808805405433958, -43.370265008371305 -22.808973752426347, -43.37018109183498 -22.80915117903527, -43.370114970228535 -22.80933597654549, -43.37006728033919 -22.809526365255966, -43.370038481446656 -22.80972051161934, -43.3700288509 -22.8099165459))" +003336,Pavuna,Zona Norte,88a8a06ec9fffff,,,,,,,, +003337,Cacuia,Ilhas,88a8a068c7fffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +003338,Jardim Guanabara,Ilhas,88a8a068c7fffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +003339,Cacuia,Ilhas,88a8a068c7fffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +003340,Cacuia,Ilhas,88a8a0688dfffff,,,,,,,, +003341,Jardim Guanabara,Ilhas,88a8a0688bfffff,TRUE,323,-22.8061356,-43.19773688,PO,G,Rio Jequia,"POLYGON ((-43.1957368847 -22.8061356034, -43.195746515246654 -22.80633163768066, -43.19577531413919 -22.806525784044034, -43.19582300402853 -22.80671617275451, -43.19588912563498 -22.80690097026473, -43.1959730421713 -22.807078396873653, -43.1960739454754 -22.807246743866042, -43.19619086379328 -22.80740438996833, -43.19632267113763 -22.807549816962375, -43.196468098131675 -22.807681624306728, -43.19662574423396 -22.807798542624607, -43.196794091226344 -22.807899445928697, -43.196971517835266 -22.807983362465023, -43.19715631534549 -22.808049484071464, -43.19734670405597 -22.808097173960807, -43.19754085041934 -22.808125972853347, -43.1977368847 -22.8081356034, -43.19793291898066 -22.808125972853347, -43.19812706534403 -22.808097173960807, -43.19831745405451 -22.808049484071464, -43.19850225156473 -22.807983362465023, -43.198679678173654 -22.807899445928697, -43.198848025166036 -22.807798542624607, -43.199005671268324 -22.807681624306728, -43.19915109826237 -22.807549816962375, -43.19928290560672 -22.80740438996833, -43.1993998239246 -22.807246743866042, -43.199500727228695 -22.807078396873653, -43.19958464376502 -22.80690097026473, -43.199650765371466 -22.80671617275451, -43.19969845526081 -22.806525784044034, -43.199727254153345 -22.80633163768066, -43.1997368847 -22.8061356034, -43.199727254153345 -22.805939569119342, -43.19969845526081 -22.80574542275597, -43.199650765371466 -22.805555034045494, -43.19958464376502 -22.80537023653527, -43.199500727228695 -22.80519280992635, -43.1993998239246 -22.80502446293396, -43.19928290560672 -22.804866816831673, -43.19915109826237 -22.804721389837628, -43.199005671268324 -22.804589582493275, -43.198848025166036 -22.804472664175396, -43.198679678173654 -22.804371760871305, -43.19850225156473 -22.80428784433498, -43.19831745405451 -22.80422172272854, -43.19812706534403 -22.804174032839196, -43.19793291898066 -22.804145233946656, -43.1977368847 -22.804135603400002, -43.19754085041934 -22.804145233946656, -43.19734670405597 -22.804174032839196, -43.19715631534549 -22.80422172272854, -43.196971517835266 -22.80428784433498, -43.196794091226344 -22.804371760871305, -43.19662574423396 -22.804472664175396, -43.196468098131675 -22.804589582493275, -43.19632267113763 -22.804721389837628, -43.19619086379328 -22.804866816831673, -43.1960739454754 -22.80502446293396, -43.1959730421713 -22.80519280992635, -43.19588912563498 -22.80537023653527, -43.19582300402853 -22.805555034045494, -43.19577531413919 -22.80574542275597, -43.195746515246654 -22.805939569119342, -43.1957368847 -22.8061356034))" +003342,,,88a8a06ec9fffff,,,,,,,, +003343,Jardim Guanabara,Ilhas,88a8a0688bfffff,,,,,,,, +003344,Portuguesa,Ilhas,88a8a0688bfffff,,,,,,,, +003345,Jardim Guanabara,Ilhas,88a8a068d7fffff,,,,,,,, +003346,Portuguesa,Ilhas,88a8a068d7fffff,,,,,,,, +003347,Jardim Guanabara,Ilhas,88a8a068c3fffff,,,,,,,, +003354,Vargem Pequena,Barra da Tijuca,88a8a07415fffff,,,,,,,, +003355,Vargem Pequena,Barra da Tijuca,88a8a07415fffff,,,,,,,, +003356,Vargem Pequena,Barra da Tijuca,88a8a07415fffff,,,,,,,, +003357,Vargem Pequena,Barra da Tijuca,88a8a07415fffff,,,,,,,, +003358,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003359,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003360,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003361,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003362,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003364,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003365,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003366,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003367,Vargem Pequena,Barra da Tijuca,88a8a07403fffff,,,,,,,, +003368,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,TRUE,255,-22.98578107,-43.45754403,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.4555440344 -22.9857810672, -43.455553664946656 -22.98597710148066, -43.45558246383919 -22.986171247844034, -43.455630153728535 -22.98636163655451, -43.45569627533498 -22.98654643406473, -43.455780191871305 -22.986723860673653, -43.4558810951754 -22.986892207666042, -43.45599801349328 -22.98704985376833, -43.45612982083763 -22.987195280762375, -43.45627524783168 -22.987327088106728, -43.456432893933965 -22.987444006424607, -43.45660124092635 -22.987544909728697, -43.45677866753527 -22.987628826265023, -43.45696346504549 -22.987694947871464, -43.45715385375597 -22.987742637760807, -43.45734800011934 -22.987771436653347, -43.4575440344 -22.9877810672, -43.457740068680664 -22.987771436653347, -43.457934215044034 -22.987742637760807, -43.45812460375451 -22.987694947871464, -43.458309401264735 -22.987628826265023, -43.45848682787366 -22.987544909728697, -43.45865517486604 -22.987444006424607, -43.458812820968326 -22.987327088106728, -43.45895824796237 -22.987195280762375, -43.459090055306724 -22.98704985376833, -43.4592069736246 -22.986892207666042, -43.4593078769287 -22.986723860673653, -43.459391793465024 -22.98654643406473, -43.45945791507147 -22.98636163655451, -43.45950560496081 -22.986171247844034, -43.45953440385335 -22.98597710148066, -43.459544034400004 -22.9857810672, -43.45953440385335 -22.985585032919342, -43.45950560496081 -22.98539088655597, -43.45945791507147 -22.985200497845494, -43.459391793465024 -22.98501570033527, -43.4593078769287 -22.98483827372635, -43.4592069736246 -22.98466992673396, -43.459090055306724 -22.984512280631673, -43.45895824796237 -22.984366853637628, -43.458812820968326 -22.984235046293275, -43.45865517486604 -22.984118127975396, -43.45848682787366 -22.984017224671305, -43.458309401264735 -22.98393330813498, -43.45812460375451 -22.98386718652854, -43.457934215044034 -22.983819496639196, -43.457740068680664 -22.983790697746656, -43.4575440344 -22.983781067200002, -43.45734800011934 -22.983790697746656, -43.45715385375597 -22.983819496639196, -43.45696346504549 -22.98386718652854, -43.45677866753527 -22.98393330813498, -43.45660124092635 -22.984017224671305, -43.456432893933965 -22.984118127975396, -43.45627524783168 -22.984235046293275, -43.45612982083763 -22.984366853637628, -43.45599801349328 -22.984512280631673, -43.4558810951754 -22.98466992673396, -43.455780191871305 -22.98483827372635, -43.45569627533498 -22.98501570033527, -43.455630153728535 -22.985200497845494, -43.45558246383919 -22.98539088655597, -43.455553664946656 -22.985585032919342, -43.4555440344 -22.9857810672))" +003369,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,TRUE,255,-22.98578107,-43.45754403,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.4555440344 -22.9857810672, -43.455553664946656 -22.98597710148066, -43.45558246383919 -22.986171247844034, -43.455630153728535 -22.98636163655451, -43.45569627533498 -22.98654643406473, -43.455780191871305 -22.986723860673653, -43.4558810951754 -22.986892207666042, -43.45599801349328 -22.98704985376833, -43.45612982083763 -22.987195280762375, -43.45627524783168 -22.987327088106728, -43.456432893933965 -22.987444006424607, -43.45660124092635 -22.987544909728697, -43.45677866753527 -22.987628826265023, -43.45696346504549 -22.987694947871464, -43.45715385375597 -22.987742637760807, -43.45734800011934 -22.987771436653347, -43.4575440344 -22.9877810672, -43.457740068680664 -22.987771436653347, -43.457934215044034 -22.987742637760807, -43.45812460375451 -22.987694947871464, -43.458309401264735 -22.987628826265023, -43.45848682787366 -22.987544909728697, -43.45865517486604 -22.987444006424607, -43.458812820968326 -22.987327088106728, -43.45895824796237 -22.987195280762375, -43.459090055306724 -22.98704985376833, -43.4592069736246 -22.986892207666042, -43.4593078769287 -22.986723860673653, -43.459391793465024 -22.98654643406473, -43.45945791507147 -22.98636163655451, -43.45950560496081 -22.986171247844034, -43.45953440385335 -22.98597710148066, -43.459544034400004 -22.9857810672, -43.45953440385335 -22.985585032919342, -43.45950560496081 -22.98539088655597, -43.45945791507147 -22.985200497845494, -43.459391793465024 -22.98501570033527, -43.4593078769287 -22.98483827372635, -43.4592069736246 -22.98466992673396, -43.459090055306724 -22.984512280631673, -43.45895824796237 -22.984366853637628, -43.458812820968326 -22.984235046293275, -43.45865517486604 -22.984118127975396, -43.45848682787366 -22.984017224671305, -43.458309401264735 -22.98393330813498, -43.45812460375451 -22.98386718652854, -43.457934215044034 -22.983819496639196, -43.457740068680664 -22.983790697746656, -43.4575440344 -22.983781067200002, -43.45734800011934 -22.983790697746656, -43.45715385375597 -22.983819496639196, -43.45696346504549 -22.98386718652854, -43.45677866753527 -22.98393330813498, -43.45660124092635 -22.984017224671305, -43.456432893933965 -22.984118127975396, -43.45627524783168 -22.984235046293275, -43.45612982083763 -22.984366853637628, -43.45599801349328 -22.984512280631673, -43.4558810951754 -22.98466992673396, -43.455780191871305 -22.98483827372635, -43.45569627533498 -22.98501570033527, -43.455630153728535 -22.985200497845494, -43.45558246383919 -22.98539088655597, -43.455553664946656 -22.985585032919342, -43.4555440344 -22.9857810672))" +003370,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,TRUE,255,-22.98578107,-43.45754403,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.4555440344 -22.9857810672, -43.455553664946656 -22.98597710148066, -43.45558246383919 -22.986171247844034, -43.455630153728535 -22.98636163655451, -43.45569627533498 -22.98654643406473, -43.455780191871305 -22.986723860673653, -43.4558810951754 -22.986892207666042, -43.45599801349328 -22.98704985376833, -43.45612982083763 -22.987195280762375, -43.45627524783168 -22.987327088106728, -43.456432893933965 -22.987444006424607, -43.45660124092635 -22.987544909728697, -43.45677866753527 -22.987628826265023, -43.45696346504549 -22.987694947871464, -43.45715385375597 -22.987742637760807, -43.45734800011934 -22.987771436653347, -43.4575440344 -22.9877810672, -43.457740068680664 -22.987771436653347, -43.457934215044034 -22.987742637760807, -43.45812460375451 -22.987694947871464, -43.458309401264735 -22.987628826265023, -43.45848682787366 -22.987544909728697, -43.45865517486604 -22.987444006424607, -43.458812820968326 -22.987327088106728, -43.45895824796237 -22.987195280762375, -43.459090055306724 -22.98704985376833, -43.4592069736246 -22.986892207666042, -43.4593078769287 -22.986723860673653, -43.459391793465024 -22.98654643406473, -43.45945791507147 -22.98636163655451, -43.45950560496081 -22.986171247844034, -43.45953440385335 -22.98597710148066, -43.459544034400004 -22.9857810672, -43.45953440385335 -22.985585032919342, -43.45950560496081 -22.98539088655597, -43.45945791507147 -22.985200497845494, -43.459391793465024 -22.98501570033527, -43.4593078769287 -22.98483827372635, -43.4592069736246 -22.98466992673396, -43.459090055306724 -22.984512280631673, -43.45895824796237 -22.984366853637628, -43.458812820968326 -22.984235046293275, -43.45865517486604 -22.984118127975396, -43.45848682787366 -22.984017224671305, -43.458309401264735 -22.98393330813498, -43.45812460375451 -22.98386718652854, -43.457934215044034 -22.983819496639196, -43.457740068680664 -22.983790697746656, -43.4575440344 -22.983781067200002, -43.45734800011934 -22.983790697746656, -43.45715385375597 -22.983819496639196, -43.45696346504549 -22.98386718652854, -43.45677866753527 -22.98393330813498, -43.45660124092635 -22.984017224671305, -43.456432893933965 -22.984118127975396, -43.45627524783168 -22.984235046293275, -43.45612982083763 -22.984366853637628, -43.45599801349328 -22.984512280631673, -43.4558810951754 -22.98466992673396, -43.455780191871305 -22.98483827372635, -43.45569627533498 -22.98501570033527, -43.455630153728535 -22.985200497845494, -43.45558246383919 -22.98539088655597, -43.455553664946656 -22.985585032919342, -43.4555440344 -22.9857810672))" +003371,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,TRUE,255,-22.98578107,-43.45754403,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.4555440344 -22.9857810672, -43.455553664946656 -22.98597710148066, -43.45558246383919 -22.986171247844034, -43.455630153728535 -22.98636163655451, -43.45569627533498 -22.98654643406473, -43.455780191871305 -22.986723860673653, -43.4558810951754 -22.986892207666042, -43.45599801349328 -22.98704985376833, -43.45612982083763 -22.987195280762375, -43.45627524783168 -22.987327088106728, -43.456432893933965 -22.987444006424607, -43.45660124092635 -22.987544909728697, -43.45677866753527 -22.987628826265023, -43.45696346504549 -22.987694947871464, -43.45715385375597 -22.987742637760807, -43.45734800011934 -22.987771436653347, -43.4575440344 -22.9877810672, -43.457740068680664 -22.987771436653347, -43.457934215044034 -22.987742637760807, -43.45812460375451 -22.987694947871464, -43.458309401264735 -22.987628826265023, -43.45848682787366 -22.987544909728697, -43.45865517486604 -22.987444006424607, -43.458812820968326 -22.987327088106728, -43.45895824796237 -22.987195280762375, -43.459090055306724 -22.98704985376833, -43.4592069736246 -22.986892207666042, -43.4593078769287 -22.986723860673653, -43.459391793465024 -22.98654643406473, -43.45945791507147 -22.98636163655451, -43.45950560496081 -22.986171247844034, -43.45953440385335 -22.98597710148066, -43.459544034400004 -22.9857810672, -43.45953440385335 -22.985585032919342, -43.45950560496081 -22.98539088655597, -43.45945791507147 -22.985200497845494, -43.459391793465024 -22.98501570033527, -43.4593078769287 -22.98483827372635, -43.4592069736246 -22.98466992673396, -43.459090055306724 -22.984512280631673, -43.45895824796237 -22.984366853637628, -43.458812820968326 -22.984235046293275, -43.45865517486604 -22.984118127975396, -43.45848682787366 -22.984017224671305, -43.458309401264735 -22.98393330813498, -43.45812460375451 -22.98386718652854, -43.457934215044034 -22.983819496639196, -43.457740068680664 -22.983790697746656, -43.4575440344 -22.983781067200002, -43.45734800011934 -22.983790697746656, -43.45715385375597 -22.983819496639196, -43.45696346504549 -22.98386718652854, -43.45677866753527 -22.98393330813498, -43.45660124092635 -22.984017224671305, -43.456432893933965 -22.984118127975396, -43.45627524783168 -22.984235046293275, -43.45612982083763 -22.984366853637628, -43.45599801349328 -22.984512280631673, -43.4558810951754 -22.98466992673396, -43.455780191871305 -22.98483827372635, -43.45569627533498 -22.98501570033527, -43.455630153728535 -22.985200497845494, -43.45558246383919 -22.98539088655597, -43.455553664946656 -22.985585032919342, -43.4555440344 -22.9857810672))" +003373,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,,,,,,,, +003374,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,,,,,,,, +003375,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,,,,,,,, +003376,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,,,,,,,, +003377,Vargem Pequena,Barra da Tijuca,88a8a07407fffff,,,,,,,, +003378,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003379,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003380,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003381,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003382,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,TRUE,206,-22.99356461,-43.44539816,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.443398163199994 -22.9935646075, -43.44340779374665 -22.99376064178066, -43.44343659263919 -22.993954788144034, -43.44348428252853 -22.99414517685451, -43.443550404134974 -22.99432997436473, -43.4436343206713 -22.994507400973653, -43.443735223975395 -22.994675747966042, -43.443852142293274 -22.99483339406833, -43.44398394963763 -22.994978821062375, -43.44412937663167 -22.995110628406728, -43.44428702273396 -22.995227546724607, -43.44445536972634 -22.995328450028698, -43.44463279633526 -22.995412366565024, -43.444817593845485 -22.995478488171464, -43.445007982555964 -22.995526178060807, -43.445202128919334 -22.995554976953347, -43.4453981632 -22.9955646075, -43.44559419748066 -22.995554976953347, -43.44578834384403 -22.995526178060807, -43.44597873255451 -22.995478488171464, -43.44616353006473 -22.995412366565024, -43.44634095667365 -22.995328450028698, -43.44650930366603 -22.995227546724607, -43.44666694976832 -22.995110628406728, -43.44681237676237 -22.994978821062375, -43.44694418410672 -22.99483339406833, -43.4470611024246 -22.994675747966042, -43.44716200572869 -22.994507400973653, -43.44724592226502 -22.99432997436473, -43.44731204387146 -22.99414517685451, -43.447359733760806 -22.993954788144034, -43.44738853265334 -22.99376064178066, -43.4473981632 -22.9935646075, -43.44738853265334 -22.993368573219342, -43.447359733760806 -22.99317442685597, -43.44731204387146 -22.992984038145494, -43.44724592226502 -22.99279924063527, -43.44716200572869 -22.99262181402635, -43.4470611024246 -22.99245346703396, -43.44694418410672 -22.992295820931673, -43.44681237676237 -22.992150393937628, -43.44666694976832 -22.992018586593275, -43.44650930366603 -22.991901668275396, -43.44634095667365 -22.991800764971305, -43.44616353006473 -22.99171684843498, -43.44597873255451 -22.99165072682854, -43.44578834384403 -22.991603036939196, -43.44559419748066 -22.991574238046656, -43.4453981632 -22.991564607500003, -43.445202128919334 -22.991574238046656, -43.445007982555964 -22.991603036939196, -43.444817593845485 -22.99165072682854, -43.44463279633526 -22.99171684843498, -43.44445536972634 -22.991800764971305, -43.44428702273396 -22.991901668275396, -43.44412937663167 -22.992018586593275, -43.44398394963763 -22.992150393937628, -43.443852142293274 -22.992295820931673, -43.443735223975395 -22.99245346703396, -43.4436343206713 -22.99262181402635, -43.443550404134974 -22.99279924063527, -43.44348428252853 -22.992984038145494, -43.44343659263919 -22.99317442685597, -43.44340779374665 -22.993368573219342, -43.443398163199994 -22.9935646075))" +003383,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,TRUE,206,-22.99356461,-43.44539816,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.443398163199994 -22.9935646075, -43.44340779374665 -22.99376064178066, -43.44343659263919 -22.993954788144034, -43.44348428252853 -22.99414517685451, -43.443550404134974 -22.99432997436473, -43.4436343206713 -22.994507400973653, -43.443735223975395 -22.994675747966042, -43.443852142293274 -22.99483339406833, -43.44398394963763 -22.994978821062375, -43.44412937663167 -22.995110628406728, -43.44428702273396 -22.995227546724607, -43.44445536972634 -22.995328450028698, -43.44463279633526 -22.995412366565024, -43.444817593845485 -22.995478488171464, -43.445007982555964 -22.995526178060807, -43.445202128919334 -22.995554976953347, -43.4453981632 -22.9955646075, -43.44559419748066 -22.995554976953347, -43.44578834384403 -22.995526178060807, -43.44597873255451 -22.995478488171464, -43.44616353006473 -22.995412366565024, -43.44634095667365 -22.995328450028698, -43.44650930366603 -22.995227546724607, -43.44666694976832 -22.995110628406728, -43.44681237676237 -22.994978821062375, -43.44694418410672 -22.99483339406833, -43.4470611024246 -22.994675747966042, -43.44716200572869 -22.994507400973653, -43.44724592226502 -22.99432997436473, -43.44731204387146 -22.99414517685451, -43.447359733760806 -22.993954788144034, -43.44738853265334 -22.99376064178066, -43.4473981632 -22.9935646075, -43.44738853265334 -22.993368573219342, -43.447359733760806 -22.99317442685597, -43.44731204387146 -22.992984038145494, -43.44724592226502 -22.99279924063527, -43.44716200572869 -22.99262181402635, -43.4470611024246 -22.99245346703396, -43.44694418410672 -22.992295820931673, -43.44681237676237 -22.992150393937628, -43.44666694976832 -22.992018586593275, -43.44650930366603 -22.991901668275396, -43.44634095667365 -22.991800764971305, -43.44616353006473 -22.99171684843498, -43.44597873255451 -22.99165072682854, -43.44578834384403 -22.991603036939196, -43.44559419748066 -22.991574238046656, -43.4453981632 -22.991564607500003, -43.445202128919334 -22.991574238046656, -43.445007982555964 -22.991603036939196, -43.444817593845485 -22.99165072682854, -43.44463279633526 -22.99171684843498, -43.44445536972634 -22.991800764971305, -43.44428702273396 -22.991901668275396, -43.44412937663167 -22.992018586593275, -43.44398394963763 -22.992150393937628, -43.443852142293274 -22.992295820931673, -43.443735223975395 -22.99245346703396, -43.4436343206713 -22.99262181402635, -43.443550404134974 -22.99279924063527, -43.44348428252853 -22.992984038145494, -43.44343659263919 -22.99317442685597, -43.44340779374665 -22.993368573219342, -43.443398163199994 -22.9935646075))" +003384,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,TRUE,206,-22.99356461,-43.44539816,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.443398163199994 -22.9935646075, -43.44340779374665 -22.99376064178066, -43.44343659263919 -22.993954788144034, -43.44348428252853 -22.99414517685451, -43.443550404134974 -22.99432997436473, -43.4436343206713 -22.994507400973653, -43.443735223975395 -22.994675747966042, -43.443852142293274 -22.99483339406833, -43.44398394963763 -22.994978821062375, -43.44412937663167 -22.995110628406728, -43.44428702273396 -22.995227546724607, -43.44445536972634 -22.995328450028698, -43.44463279633526 -22.995412366565024, -43.444817593845485 -22.995478488171464, -43.445007982555964 -22.995526178060807, -43.445202128919334 -22.995554976953347, -43.4453981632 -22.9955646075, -43.44559419748066 -22.995554976953347, -43.44578834384403 -22.995526178060807, -43.44597873255451 -22.995478488171464, -43.44616353006473 -22.995412366565024, -43.44634095667365 -22.995328450028698, -43.44650930366603 -22.995227546724607, -43.44666694976832 -22.995110628406728, -43.44681237676237 -22.994978821062375, -43.44694418410672 -22.99483339406833, -43.4470611024246 -22.994675747966042, -43.44716200572869 -22.994507400973653, -43.44724592226502 -22.99432997436473, -43.44731204387146 -22.99414517685451, -43.447359733760806 -22.993954788144034, -43.44738853265334 -22.99376064178066, -43.4473981632 -22.9935646075, -43.44738853265334 -22.993368573219342, -43.447359733760806 -22.99317442685597, -43.44731204387146 -22.992984038145494, -43.44724592226502 -22.99279924063527, -43.44716200572869 -22.99262181402635, -43.4470611024246 -22.99245346703396, -43.44694418410672 -22.992295820931673, -43.44681237676237 -22.992150393937628, -43.44666694976832 -22.992018586593275, -43.44650930366603 -22.991901668275396, -43.44634095667365 -22.991800764971305, -43.44616353006473 -22.99171684843498, -43.44597873255451 -22.99165072682854, -43.44578834384403 -22.991603036939196, -43.44559419748066 -22.991574238046656, -43.4453981632 -22.991564607500003, -43.445202128919334 -22.991574238046656, -43.445007982555964 -22.991603036939196, -43.444817593845485 -22.99165072682854, -43.44463279633526 -22.99171684843498, -43.44445536972634 -22.991800764971305, -43.44428702273396 -22.991901668275396, -43.44412937663167 -22.992018586593275, -43.44398394963763 -22.992150393937628, -43.443852142293274 -22.992295820931673, -43.443735223975395 -22.99245346703396, -43.4436343206713 -22.99262181402635, -43.443550404134974 -22.99279924063527, -43.44348428252853 -22.992984038145494, -43.44343659263919 -22.99317442685597, -43.44340779374665 -22.993368573219342, -43.443398163199994 -22.9935646075))" +003385,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,TRUE,206,-22.99356461,-43.44539816,PM,J,Lagoa de Jacarepagua,"POLYGON ((-43.443398163199994 -22.9935646075, -43.44340779374665 -22.99376064178066, -43.44343659263919 -22.993954788144034, -43.44348428252853 -22.99414517685451, -43.443550404134974 -22.99432997436473, -43.4436343206713 -22.994507400973653, -43.443735223975395 -22.994675747966042, -43.443852142293274 -22.99483339406833, -43.44398394963763 -22.994978821062375, -43.44412937663167 -22.995110628406728, -43.44428702273396 -22.995227546724607, -43.44445536972634 -22.995328450028698, -43.44463279633526 -22.995412366565024, -43.444817593845485 -22.995478488171464, -43.445007982555964 -22.995526178060807, -43.445202128919334 -22.995554976953347, -43.4453981632 -22.9955646075, -43.44559419748066 -22.995554976953347, -43.44578834384403 -22.995526178060807, -43.44597873255451 -22.995478488171464, -43.44616353006473 -22.995412366565024, -43.44634095667365 -22.995328450028698, -43.44650930366603 -22.995227546724607, -43.44666694976832 -22.995110628406728, -43.44681237676237 -22.994978821062375, -43.44694418410672 -22.99483339406833, -43.4470611024246 -22.994675747966042, -43.44716200572869 -22.994507400973653, -43.44724592226502 -22.99432997436473, -43.44731204387146 -22.99414517685451, -43.447359733760806 -22.993954788144034, -43.44738853265334 -22.99376064178066, -43.4473981632 -22.9935646075, -43.44738853265334 -22.993368573219342, -43.447359733760806 -22.99317442685597, -43.44731204387146 -22.992984038145494, -43.44724592226502 -22.99279924063527, -43.44716200572869 -22.99262181402635, -43.4470611024246 -22.99245346703396, -43.44694418410672 -22.992295820931673, -43.44681237676237 -22.992150393937628, -43.44666694976832 -22.992018586593275, -43.44650930366603 -22.991901668275396, -43.44634095667365 -22.991800764971305, -43.44616353006473 -22.99171684843498, -43.44597873255451 -22.99165072682854, -43.44578834384403 -22.991603036939196, -43.44559419748066 -22.991574238046656, -43.4453981632 -22.991564607500003, -43.445202128919334 -22.991574238046656, -43.445007982555964 -22.991603036939196, -43.444817593845485 -22.99165072682854, -43.44463279633526 -22.99171684843498, -43.44445536972634 -22.991800764971305, -43.44428702273396 -22.991901668275396, -43.44412937663167 -22.992018586593275, -43.44398394963763 -22.992150393937628, -43.443852142293274 -22.992295820931673, -43.443735223975395 -22.99245346703396, -43.4436343206713 -22.99262181402635, -43.443550404134974 -22.99279924063527, -43.44348428252853 -22.992984038145494, -43.44343659263919 -22.99317442685597, -43.44340779374665 -22.993368573219342, -43.443398163199994 -22.9935646075))" +003386,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003387,Vargem Pequena,Barra da Tijuca,88a8a07405fffff,,,,,,,, +003388,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,,,,,,,, +003389,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,,,,,,,, +003390,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,,,,,,,, +003391,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,,,,,,,, +003401,Bangu,Grande Bangu,88a8a06449fffff,,,,,,,, +003403,Benfica,Centro,88a8a06139fffff,,,,,,,, +003411,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +003412,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +003413,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +003414,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +003415,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +003416,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +003420,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +003423,Vargem Grande,Barra da Tijuca,88a8a076a5fffff,,,,,,,, +003424,Vargem Grande,Barra da Tijuca,88a8a076a5fffff,,,,,,,, +003425,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,,,,,,,, +003426,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,,,,,,,, +003427,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003428,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003429,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003433,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003434,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003437,Portuguesa,Ilhas,88a8a068d7fffff,,,,,,,, +003438,Portuguesa,Ilhas,88a8a0688bfffff,,,,,,,, +003445,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +003446,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +003447,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +003448,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +003450,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,TRUE,104,-22.98820546,-43.43821119,PC,J,Lagoa de Jacarepagua,"POLYGON ((-43.4362111935 -22.9882054603, -43.43622082404666 -22.98840149458066, -43.436249622939194 -22.988595640944034, -43.436297312828536 -22.98878602965451, -43.43636343443498 -22.98897082716473, -43.43644735097131 -22.989148253773653, -43.4365482542754 -22.989316600766042, -43.43666517259328 -22.98947424686833, -43.43679697993763 -22.989619673862375, -43.43694240693168 -22.989751481206728, -43.437100053033966 -22.989868399524607, -43.43726840002635 -22.989969302828698, -43.43744582663527 -22.990053219365024, -43.43763062414549 -22.990119340971464, -43.43782101285597 -22.990167030860807, -43.43801515921934 -22.990195829753347, -43.4382111935 -22.9902054603, -43.438407227780665 -22.990195829753347, -43.438601374144035 -22.990167030860807, -43.438791762854514 -22.990119340971464, -43.438976560364736 -22.990053219365024, -43.43915398697366 -22.989969302828698, -43.43932233396604 -22.989868399524607, -43.43947998006833 -22.989751481206728, -43.43962540706237 -22.989619673862375, -43.439757214406725 -22.98947424686833, -43.439874132724604 -22.989316600766042, -43.4399750360287 -22.989148253773653, -43.440058952565025 -22.98897082716473, -43.44012507417147 -22.98878602965451, -43.44017276406081 -22.988595640944034, -43.44020156295335 -22.98840149458066, -43.440211193500005 -22.9882054603, -43.44020156295335 -22.988009426019342, -43.44017276406081 -22.98781527965597, -43.44012507417147 -22.987624890945494, -43.440058952565025 -22.98744009343527, -43.4399750360287 -22.98726266682635, -43.439874132724604 -22.98709431983396, -43.439757214406725 -22.986936673731673, -43.43962540706237 -22.986791246737628, -43.43947998006833 -22.986659439393275, -43.43932233396604 -22.986542521075396, -43.43915398697366 -22.986441617771305, -43.438976560364736 -22.98635770123498, -43.438791762854514 -22.98629157962854, -43.438601374144035 -22.986243889739196, -43.438407227780665 -22.986215090846656, -43.4382111935 -22.986205460300003, -43.43801515921934 -22.986215090846656, -43.43782101285597 -22.986243889739196, -43.43763062414549 -22.98629157962854, -43.43744582663527 -22.98635770123498, -43.43726840002635 -22.986441617771305, -43.437100053033966 -22.986542521075396, -43.43694240693168 -22.986659439393275, -43.43679697993763 -22.986791246737628, -43.43666517259328 -22.986936673731673, -43.4365482542754 -22.98709431983396, -43.43644735097131 -22.98726266682635, -43.43636343443498 -22.98744009343527, -43.436297312828536 -22.987624890945494, -43.436249622939194 -22.98781527965597, -43.43622082404666 -22.988009426019342, -43.4362111935 -22.9882054603))" +003451,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,TRUE,104,-22.98820546,-43.43821119,PC,J,Lagoa de Jacarepagua,"POLYGON ((-43.4362111935 -22.9882054603, -43.43622082404666 -22.98840149458066, -43.436249622939194 -22.988595640944034, -43.436297312828536 -22.98878602965451, -43.43636343443498 -22.98897082716473, -43.43644735097131 -22.989148253773653, -43.4365482542754 -22.989316600766042, -43.43666517259328 -22.98947424686833, -43.43679697993763 -22.989619673862375, -43.43694240693168 -22.989751481206728, -43.437100053033966 -22.989868399524607, -43.43726840002635 -22.989969302828698, -43.43744582663527 -22.990053219365024, -43.43763062414549 -22.990119340971464, -43.43782101285597 -22.990167030860807, -43.43801515921934 -22.990195829753347, -43.4382111935 -22.9902054603, -43.438407227780665 -22.990195829753347, -43.438601374144035 -22.990167030860807, -43.438791762854514 -22.990119340971464, -43.438976560364736 -22.990053219365024, -43.43915398697366 -22.989969302828698, -43.43932233396604 -22.989868399524607, -43.43947998006833 -22.989751481206728, -43.43962540706237 -22.989619673862375, -43.439757214406725 -22.98947424686833, -43.439874132724604 -22.989316600766042, -43.4399750360287 -22.989148253773653, -43.440058952565025 -22.98897082716473, -43.44012507417147 -22.98878602965451, -43.44017276406081 -22.988595640944034, -43.44020156295335 -22.98840149458066, -43.440211193500005 -22.9882054603, -43.44020156295335 -22.988009426019342, -43.44017276406081 -22.98781527965597, -43.44012507417147 -22.987624890945494, -43.440058952565025 -22.98744009343527, -43.4399750360287 -22.98726266682635, -43.439874132724604 -22.98709431983396, -43.439757214406725 -22.986936673731673, -43.43962540706237 -22.986791246737628, -43.43947998006833 -22.986659439393275, -43.43932233396604 -22.986542521075396, -43.43915398697366 -22.986441617771305, -43.438976560364736 -22.98635770123498, -43.438791762854514 -22.98629157962854, -43.438601374144035 -22.986243889739196, -43.438407227780665 -22.986215090846656, -43.4382111935 -22.986205460300003, -43.43801515921934 -22.986215090846656, -43.43782101285597 -22.986243889739196, -43.43763062414549 -22.98629157962854, -43.43744582663527 -22.98635770123498, -43.43726840002635 -22.986441617771305, -43.437100053033966 -22.986542521075396, -43.43694240693168 -22.986659439393275, -43.43679697993763 -22.986791246737628, -43.43666517259328 -22.986936673731673, -43.4365482542754 -22.98709431983396, -43.43644735097131 -22.98726266682635, -43.43636343443498 -22.98744009343527, -43.436297312828536 -22.987624890945494, -43.436249622939194 -22.98781527965597, -43.43622082404666 -22.988009426019342, -43.4362111935 -22.9882054603))" +003452,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,TRUE,104,-22.98820546,-43.43821119,PC,J,Lagoa de Jacarepagua,"POLYGON ((-43.4362111935 -22.9882054603, -43.43622082404666 -22.98840149458066, -43.436249622939194 -22.988595640944034, -43.436297312828536 -22.98878602965451, -43.43636343443498 -22.98897082716473, -43.43644735097131 -22.989148253773653, -43.4365482542754 -22.989316600766042, -43.43666517259328 -22.98947424686833, -43.43679697993763 -22.989619673862375, -43.43694240693168 -22.989751481206728, -43.437100053033966 -22.989868399524607, -43.43726840002635 -22.989969302828698, -43.43744582663527 -22.990053219365024, -43.43763062414549 -22.990119340971464, -43.43782101285597 -22.990167030860807, -43.43801515921934 -22.990195829753347, -43.4382111935 -22.9902054603, -43.438407227780665 -22.990195829753347, -43.438601374144035 -22.990167030860807, -43.438791762854514 -22.990119340971464, -43.438976560364736 -22.990053219365024, -43.43915398697366 -22.989969302828698, -43.43932233396604 -22.989868399524607, -43.43947998006833 -22.989751481206728, -43.43962540706237 -22.989619673862375, -43.439757214406725 -22.98947424686833, -43.439874132724604 -22.989316600766042, -43.4399750360287 -22.989148253773653, -43.440058952565025 -22.98897082716473, -43.44012507417147 -22.98878602965451, -43.44017276406081 -22.988595640944034, -43.44020156295335 -22.98840149458066, -43.440211193500005 -22.9882054603, -43.44020156295335 -22.988009426019342, -43.44017276406081 -22.98781527965597, -43.44012507417147 -22.987624890945494, -43.440058952565025 -22.98744009343527, -43.4399750360287 -22.98726266682635, -43.439874132724604 -22.98709431983396, -43.439757214406725 -22.986936673731673, -43.43962540706237 -22.986791246737628, -43.43947998006833 -22.986659439393275, -43.43932233396604 -22.986542521075396, -43.43915398697366 -22.986441617771305, -43.438976560364736 -22.98635770123498, -43.438791762854514 -22.98629157962854, -43.438601374144035 -22.986243889739196, -43.438407227780665 -22.986215090846656, -43.4382111935 -22.986205460300003, -43.43801515921934 -22.986215090846656, -43.43782101285597 -22.986243889739196, -43.43763062414549 -22.98629157962854, -43.43744582663527 -22.98635770123498, -43.43726840002635 -22.986441617771305, -43.437100053033966 -22.986542521075396, -43.43694240693168 -22.986659439393275, -43.43679697993763 -22.986791246737628, -43.43666517259328 -22.986936673731673, -43.4365482542754 -22.98709431983396, -43.43644735097131 -22.98726266682635, -43.43636343443498 -22.98744009343527, -43.436297312828536 -22.987624890945494, -43.436249622939194 -22.98781527965597, -43.43622082404666 -22.988009426019342, -43.4362111935 -22.9882054603))" +003453,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,TRUE,104,-22.98820546,-43.43821119,PC,J,Lagoa de Jacarepagua,"POLYGON ((-43.4362111935 -22.9882054603, -43.43622082404666 -22.98840149458066, -43.436249622939194 -22.988595640944034, -43.436297312828536 -22.98878602965451, -43.43636343443498 -22.98897082716473, -43.43644735097131 -22.989148253773653, -43.4365482542754 -22.989316600766042, -43.43666517259328 -22.98947424686833, -43.43679697993763 -22.989619673862375, -43.43694240693168 -22.989751481206728, -43.437100053033966 -22.989868399524607, -43.43726840002635 -22.989969302828698, -43.43744582663527 -22.990053219365024, -43.43763062414549 -22.990119340971464, -43.43782101285597 -22.990167030860807, -43.43801515921934 -22.990195829753347, -43.4382111935 -22.9902054603, -43.438407227780665 -22.990195829753347, -43.438601374144035 -22.990167030860807, -43.438791762854514 -22.990119340971464, -43.438976560364736 -22.990053219365024, -43.43915398697366 -22.989969302828698, -43.43932233396604 -22.989868399524607, -43.43947998006833 -22.989751481206728, -43.43962540706237 -22.989619673862375, -43.439757214406725 -22.98947424686833, -43.439874132724604 -22.989316600766042, -43.4399750360287 -22.989148253773653, -43.440058952565025 -22.98897082716473, -43.44012507417147 -22.98878602965451, -43.44017276406081 -22.988595640944034, -43.44020156295335 -22.98840149458066, -43.440211193500005 -22.9882054603, -43.44020156295335 -22.988009426019342, -43.44017276406081 -22.98781527965597, -43.44012507417147 -22.987624890945494, -43.440058952565025 -22.98744009343527, -43.4399750360287 -22.98726266682635, -43.439874132724604 -22.98709431983396, -43.439757214406725 -22.986936673731673, -43.43962540706237 -22.986791246737628, -43.43947998006833 -22.986659439393275, -43.43932233396604 -22.986542521075396, -43.43915398697366 -22.986441617771305, -43.438976560364736 -22.98635770123498, -43.438791762854514 -22.98629157962854, -43.438601374144035 -22.986243889739196, -43.438407227780665 -22.986215090846656, -43.4382111935 -22.986205460300003, -43.43801515921934 -22.986215090846656, -43.43782101285597 -22.986243889739196, -43.43763062414549 -22.98629157962854, -43.43744582663527 -22.98635770123498, -43.43726840002635 -22.986441617771305, -43.437100053033966 -22.986542521075396, -43.43694240693168 -22.986659439393275, -43.43679697993763 -22.986791246737628, -43.43666517259328 -22.986936673731673, -43.4365482542754 -22.98709431983396, -43.43644735097131 -22.98726266682635, -43.43636343443498 -22.98744009343527, -43.436297312828536 -22.987624890945494, -43.436249622939194 -22.98781527965597, -43.43622082404666 -22.988009426019342, -43.4362111935 -22.9882054603))" +003454,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,,,,,,,, +003455,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,,,,,,,, +003456,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,,,,,,,, +003457,Vargem Pequena,Barra da Tijuca,88a8a07429fffff,,,,,,,, +003458,Vargem Pequena,Barra da Tijuca,88a8a0742dfffff,,,,,,,, +003459,Vargem Pequena,Barra da Tijuca,88a8a0742dfffff,,,,,,,, +003461,Vargem Pequena,Barra da Tijuca,88a8a0742dfffff,,,,,,,, +003475,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +003476,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +003477,Vila Isabel,Grande Tijuca,88a8a0610bfffff,,,,,,,, +003482,Riachuelo,Zona Norte,88a8a0611dfffff,,,,,,,, +003483,Riachuelo,Zona Norte,88a8a0611dfffff,,,,,,,, +003484,Riachuelo,Zona Norte,88a8a0611dfffff,,,,,,,, +003485,Riachuelo,Zona Norte,88a8a0611dfffff,,,,,,,, +003486,Riachuelo,Zona Norte,88a8a0611dfffff,TRUE,421,-22.90789815,-43.25743545,PO,G,,"POLYGON ((-43.255435454462095 -22.9078981460807, -43.25544508500875 -22.90809418036136, -43.25547388390129 -22.908288326724733, -43.25552157379063 -22.90847871543521, -43.255587695397075 -22.90866351294543, -43.2556716119334 -22.908840939554352, -43.255772515237496 -22.90900928654674, -43.255889433555375 -22.90916693264903, -43.25602124089973 -22.909312359643074, -43.25616666789377 -22.909444166987427, -43.25632431399606 -22.909561085305306, -43.25649266098844 -22.909661988609397, -43.256670087597364 -22.909745905145723, -43.256854885107586 -22.909812026752164, -43.257045273818065 -22.909859716641506, -43.257239420181435 -22.909888515534046, -43.2574354544621 -22.9098981460807, -43.25763148874276 -22.909888515534046, -43.25782563510613 -22.909859716641506, -43.25801602381661 -22.909812026752164, -43.25820082132683 -22.909745905145723, -43.25837824793575 -22.909661988609397, -43.258546594928134 -22.909561085305306, -43.25870424103042 -22.909444166987427, -43.25884966802447 -22.909312359643074, -43.25898147536882 -22.90916693264903, -43.2590983936867 -22.90900928654674, -43.25919929699079 -22.908840939554352, -43.25928321352712 -22.90866351294543, -43.259349335133564 -22.90847871543521, -43.259397025022906 -22.908288326724733, -43.25942582391544 -22.90809418036136, -43.2594354544621 -22.9078981460807, -43.25942582391544 -22.90770211180004, -43.259397025022906 -22.90750796543667, -43.259349335133564 -22.907317576726193, -43.25928321352712 -22.90713277921597, -43.25919929699079 -22.90695535260705, -43.2590983936867 -22.90678700561466, -43.25898147536882 -22.906629359512372, -43.25884966802447 -22.906483932518327, -43.25870424103042 -22.906352125173974, -43.258546594928134 -22.906235206856095, -43.25837824793575 -22.906134303552005, -43.25820082132683 -22.90605038701568, -43.25801602381661 -22.905984265409238, -43.25782563510613 -22.905936575519895, -43.25763148874276 -22.905907776627355, -43.2574354544621 -22.905898146080702, -43.257239420181435 -22.905907776627355, -43.257045273818065 -22.905936575519895, -43.256854885107586 -22.905984265409238, -43.256670087597364 -22.90605038701568, -43.25649266098844 -22.906134303552005, -43.25632431399606 -22.906235206856095, -43.25616666789377 -22.906352125173974, -43.25602124089973 -22.906483932518327, -43.255889433555375 -22.906629359512372, -43.255772515237496 -22.90678700561466, -43.2556716119334 -22.90695535260705, -43.255587695397075 -22.90713277921597, -43.25552157379063 -22.907317576726193, -43.25547388390129 -22.90750796543667, -43.25544508500875 -22.90770211180004, -43.255435454462095 -22.9078981460807))" +003491,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +003492,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +003494,Santa Cruz,Zona Oeste,88a8a02a9dfffff,,,,,,,, +003495,Jardim Guanabara,Ilhas,88a8a068d5fffff,,,,,,,, +003496,Jardim Guanabara,Ilhas,88a8a068d5fffff,,,,,,,, +003499,Santa Cruz,Zona Oeste,88a8a02ad7fffff,,,,,,,, +003501,Jacarepaguá,Jacarepaguá,88a8a07511fffff,,,,,,,, +003502,Jacarepaguá,Jacarepaguá,88a8a07511fffff,,,,,,,, +003503,Camorim,Barra da Tijuca,88a8a07511fffff,,,,,,,, +003504,Camorim,Barra da Tijuca,88a8a07511fffff,,,,,,,, +003505,Camorim,Barra da Tijuca,88a8a07519fffff,TRUE,257,-22.97710105,-43.41680485,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.414804847 -22.9771010491, -43.414814477546656 -22.97729708338066, -43.41484327643919 -22.977491229744032, -43.414890966328535 -22.977681618454508, -43.41495708793498 -22.97786641596473, -43.415041004471306 -22.97804384257365, -43.4151419077754 -22.97821218956604, -43.41525882609328 -22.978369835668328, -43.41539063343763 -22.978515262662373, -43.41553606043168 -22.978647070006726, -43.415693706533965 -22.978763988324605, -43.41586205352635 -22.978864891628696, -43.41603948013527 -22.978948808165022, -43.41622427764549 -22.979014929771463, -43.41641466635597 -22.979062619660805, -43.41660881271934 -22.979091418553345, -43.416804847 -22.9791010491, -43.417000881280664 -22.979091418553345, -43.417195027644034 -22.979062619660805, -43.41738541635451 -22.979014929771463, -43.417570213864735 -22.978948808165022, -43.41774764047366 -22.978864891628696, -43.41791598746604 -22.978763988324605, -43.418073633568326 -22.978647070006726, -43.41821906056237 -22.978515262662373, -43.418350867906724 -22.978369835668328, -43.4184677862246 -22.97821218956604, -43.4185686895287 -22.97804384257365, -43.418652606065024 -22.97786641596473, -43.41871872767147 -22.977681618454508, -43.41876641756081 -22.977491229744032, -43.41879521645335 -22.97729708338066, -43.418804847000004 -22.9771010491, -43.41879521645335 -22.97690501481934, -43.41876641756081 -22.976710868455967, -43.41871872767147 -22.976520479745492, -43.418652606065024 -22.97633568223527, -43.4185686895287 -22.97615825562635, -43.4184677862246 -22.97598990863396, -43.418350867906724 -22.97583226253167, -43.41821906056237 -22.975686835537626, -43.418073633568326 -22.975555028193273, -43.41791598746604 -22.975438109875395, -43.41774764047366 -22.975337206571304, -43.417570213864735 -22.975253290034978, -43.41738541635451 -22.975187168428537, -43.417195027644034 -22.975139478539194, -43.417000881280664 -22.975110679646654, -43.416804847 -22.9751010491, -43.41660881271934 -22.975110679646654, -43.41641466635597 -22.975139478539194, -43.41622427764549 -22.975187168428537, -43.41603948013527 -22.975253290034978, -43.41586205352635 -22.975337206571304, -43.415693706533965 -22.975438109875395, -43.41553606043168 -22.975555028193273, -43.41539063343763 -22.975686835537626, -43.41525882609328 -22.97583226253167, -43.4151419077754 -22.97598990863396, -43.415041004471306 -22.97615825562635, -43.41495708793498 -22.97633568223527, -43.414890966328535 -22.976520479745492, -43.41484327643919 -22.976710868455967, -43.414814477546656 -22.97690501481934, -43.414804847 -22.9771010491))" +003506,Camorim,Barra da Tijuca,88a8a07519fffff,TRUE,257,-22.97710105,-43.41680485,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.414804847 -22.9771010491, -43.414814477546656 -22.97729708338066, -43.41484327643919 -22.977491229744032, -43.414890966328535 -22.977681618454508, -43.41495708793498 -22.97786641596473, -43.415041004471306 -22.97804384257365, -43.4151419077754 -22.97821218956604, -43.41525882609328 -22.978369835668328, -43.41539063343763 -22.978515262662373, -43.41553606043168 -22.978647070006726, -43.415693706533965 -22.978763988324605, -43.41586205352635 -22.978864891628696, -43.41603948013527 -22.978948808165022, -43.41622427764549 -22.979014929771463, -43.41641466635597 -22.979062619660805, -43.41660881271934 -22.979091418553345, -43.416804847 -22.9791010491, -43.417000881280664 -22.979091418553345, -43.417195027644034 -22.979062619660805, -43.41738541635451 -22.979014929771463, -43.417570213864735 -22.978948808165022, -43.41774764047366 -22.978864891628696, -43.41791598746604 -22.978763988324605, -43.418073633568326 -22.978647070006726, -43.41821906056237 -22.978515262662373, -43.418350867906724 -22.978369835668328, -43.4184677862246 -22.97821218956604, -43.4185686895287 -22.97804384257365, -43.418652606065024 -22.97786641596473, -43.41871872767147 -22.977681618454508, -43.41876641756081 -22.977491229744032, -43.41879521645335 -22.97729708338066, -43.418804847000004 -22.9771010491, -43.41879521645335 -22.97690501481934, -43.41876641756081 -22.976710868455967, -43.41871872767147 -22.976520479745492, -43.418652606065024 -22.97633568223527, -43.4185686895287 -22.97615825562635, -43.4184677862246 -22.97598990863396, -43.418350867906724 -22.97583226253167, -43.41821906056237 -22.975686835537626, -43.418073633568326 -22.975555028193273, -43.41791598746604 -22.975438109875395, -43.41774764047366 -22.975337206571304, -43.417570213864735 -22.975253290034978, -43.41738541635451 -22.975187168428537, -43.417195027644034 -22.975139478539194, -43.417000881280664 -22.975110679646654, -43.416804847 -22.9751010491, -43.41660881271934 -22.975110679646654, -43.41641466635597 -22.975139478539194, -43.41622427764549 -22.975187168428537, -43.41603948013527 -22.975253290034978, -43.41586205352635 -22.975337206571304, -43.415693706533965 -22.975438109875395, -43.41553606043168 -22.975555028193273, -43.41539063343763 -22.975686835537626, -43.41525882609328 -22.97583226253167, -43.4151419077754 -22.97598990863396, -43.415041004471306 -22.97615825562635, -43.41495708793498 -22.97633568223527, -43.414890966328535 -22.976520479745492, -43.41484327643919 -22.976710868455967, -43.414814477546656 -22.97690501481934, -43.414804847 -22.9771010491))" +003507,Camorim,Barra da Tijuca,88a8a07519fffff,,,,,,,, +003508,Camorim,Barra da Tijuca,88a8a07519fffff,,,,,,,, +003509,Camorim,Barra da Tijuca,88a8a07425fffff,,,,,,,, +003510,Camorim,Barra da Tijuca,88a8a07425fffff,,,,,,,, +003511,Camorim,Barra da Tijuca,88a8a07425fffff,,,,,,,, +003512,Camorim,Barra da Tijuca,88a8a07425fffff,,,,,,,, +003513,Camorim,Barra da Tijuca,88a8a07425fffff,,,,,,,, +003514,Camorim,Barra da Tijuca,88a8a07425fffff,,,,,,,, +003515,Camorim,Barra da Tijuca,88a8a07425fffff,,,,,,,, +003516,Camorim,Barra da Tijuca,88a8a07425fffff,,,,,,,, +003517,Jacarepaguá,Jacarepaguá,88a8a07511fffff,TRUE,113,-22.97164208,-43.41338413,PC,J,Lagoa de Jacarepagua,"POLYGON ((-43.4113841343 -22.9716420847, -43.41139376484666 -22.97183811898066, -43.411422563739194 -22.972032265344033, -43.411470253628536 -22.97222265405451, -43.41153637523498 -22.97240745156473, -43.41162029177131 -22.972584878173652, -43.4117211950754 -22.97275322516604, -43.41183811339328 -22.97291087126833, -43.41196992073763 -22.973056298262374, -43.41211534773168 -22.973188105606727, -43.412272993833966 -22.973305023924606, -43.41244134082635 -22.973405927228697, -43.41261876743527 -22.973489843765023, -43.41280356494549 -22.973555965371464, -43.41299395365597 -22.973603655260806, -43.41318810001934 -22.973632454153346, -43.4133841343 -22.9736420847, -43.413580168580665 -22.973632454153346, -43.413774314944035 -22.973603655260806, -43.413964703654514 -22.973555965371464, -43.41414950116474 -22.973489843765023, -43.41432692777366 -22.973405927228697, -43.41449527476604 -22.973305023924606, -43.41465292086833 -22.973188105606727, -43.41479834786237 -22.973056298262374, -43.414930155206726 -22.97291087126833, -43.415047073524605 -22.97275322516604, -43.4151479768287 -22.972584878173652, -43.415231893365025 -22.97240745156473, -43.41529801497147 -22.97222265405451, -43.41534570486081 -22.972032265344033, -43.41537450375335 -22.97183811898066, -43.415384134300005 -22.9716420847, -43.41537450375335 -22.971446050419342, -43.41534570486081 -22.97125190405597, -43.41529801497147 -22.971061515345493, -43.415231893365025 -22.97087671783527, -43.4151479768287 -22.97069929122635, -43.415047073524605 -22.97053094423396, -43.414930155206726 -22.970373298131673, -43.41479834786237 -22.970227871137627, -43.41465292086833 -22.970096063793275, -43.41449527476604 -22.969979145475396, -43.41432692777366 -22.969878242171305, -43.41414950116474 -22.96979432563498, -43.413964703654514 -22.969728204028538, -43.413774314944035 -22.969680514139196, -43.413580168580665 -22.969651715246655, -43.4133841343 -22.969642084700002, -43.41318810001934 -22.969651715246655, -43.41299395365597 -22.969680514139196, -43.41280356494549 -22.969728204028538, -43.41261876743527 -22.96979432563498, -43.41244134082635 -22.969878242171305, -43.412272993833966 -22.969979145475396, -43.41211534773168 -22.970096063793275, -43.41196992073763 -22.970227871137627, -43.41183811339328 -22.970373298131673, -43.4117211950754 -22.97053094423396, -43.41162029177131 -22.97069929122635, -43.41153637523498 -22.97087671783527, -43.411470253628536 -22.971061515345493, -43.411422563739194 -22.97125190405597, -43.41139376484666 -22.971446050419342, -43.4113841343 -22.9716420847))" +003518,Jacarepaguá,Jacarepaguá,88a8a07511fffff,TRUE,113,-22.97164208,-43.41338413,PC,J,Lagoa de Jacarepagua,"POLYGON ((-43.4113841343 -22.9716420847, -43.41139376484666 -22.97183811898066, -43.411422563739194 -22.972032265344033, -43.411470253628536 -22.97222265405451, -43.41153637523498 -22.97240745156473, -43.41162029177131 -22.972584878173652, -43.4117211950754 -22.97275322516604, -43.41183811339328 -22.97291087126833, -43.41196992073763 -22.973056298262374, -43.41211534773168 -22.973188105606727, -43.412272993833966 -22.973305023924606, -43.41244134082635 -22.973405927228697, -43.41261876743527 -22.973489843765023, -43.41280356494549 -22.973555965371464, -43.41299395365597 -22.973603655260806, -43.41318810001934 -22.973632454153346, -43.4133841343 -22.9736420847, -43.413580168580665 -22.973632454153346, -43.413774314944035 -22.973603655260806, -43.413964703654514 -22.973555965371464, -43.41414950116474 -22.973489843765023, -43.41432692777366 -22.973405927228697, -43.41449527476604 -22.973305023924606, -43.41465292086833 -22.973188105606727, -43.41479834786237 -22.973056298262374, -43.414930155206726 -22.97291087126833, -43.415047073524605 -22.97275322516604, -43.4151479768287 -22.972584878173652, -43.415231893365025 -22.97240745156473, -43.41529801497147 -22.97222265405451, -43.41534570486081 -22.972032265344033, -43.41537450375335 -22.97183811898066, -43.415384134300005 -22.9716420847, -43.41537450375335 -22.971446050419342, -43.41534570486081 -22.97125190405597, -43.41529801497147 -22.971061515345493, -43.415231893365025 -22.97087671783527, -43.4151479768287 -22.97069929122635, -43.415047073524605 -22.97053094423396, -43.414930155206726 -22.970373298131673, -43.41479834786237 -22.970227871137627, -43.41465292086833 -22.970096063793275, -43.41449527476604 -22.969979145475396, -43.41432692777366 -22.969878242171305, -43.41414950116474 -22.96979432563498, -43.413964703654514 -22.969728204028538, -43.413774314944035 -22.969680514139196, -43.413580168580665 -22.969651715246655, -43.4133841343 -22.969642084700002, -43.41318810001934 -22.969651715246655, -43.41299395365597 -22.969680514139196, -43.41280356494549 -22.969728204028538, -43.41261876743527 -22.96979432563498, -43.41244134082635 -22.969878242171305, -43.412272993833966 -22.969979145475396, -43.41211534773168 -22.970096063793275, -43.41196992073763 -22.970227871137627, -43.41183811339328 -22.970373298131673, -43.4117211950754 -22.97053094423396, -43.41162029177131 -22.97069929122635, -43.41153637523498 -22.97087671783527, -43.411470253628536 -22.971061515345493, -43.411422563739194 -22.97125190405597, -43.41139376484666 -22.971446050419342, -43.4113841343 -22.9716420847))" +003527,Cacuia,Ilhas,88a8a068ebfffff,,,,,,,, +003531,Zumbi,Ilhas,88a8a068ebfffff,TRUE,346,-22.81986637,-43.17938744,PO,G,Rio Jequia,"POLYGON ((-43.1773874382 -22.8198663679, -43.17739706874666 -22.82006240218066, -43.177425867639194 -22.820256548544034, -43.177473557528536 -22.82044693725451, -43.17753967913498 -22.82063173476473, -43.17762359567131 -22.820809161373653, -43.1777244989754 -22.82097750836604, -43.17784141729328 -22.82113515446833, -43.17797322463763 -22.821280581462375, -43.17811865163168 -22.821412388806728, -43.178276297733966 -22.821529307124607, -43.17844464472635 -22.821630210428697, -43.17862207133527 -22.821714126965023, -43.17880686884549 -22.821780248571464, -43.17899725755597 -22.821827938460807, -43.17919140391934 -22.821856737353347, -43.1793874382 -22.8218663679, -43.179583472480665 -22.821856737353347, -43.179777618844035 -22.821827938460807, -43.179968007554514 -22.821780248571464, -43.180152805064736 -22.821714126965023, -43.18033023167366 -22.821630210428697, -43.18049857866604 -22.821529307124607, -43.18065622476833 -22.821412388806728, -43.18080165176237 -22.821280581462375, -43.180933459106726 -22.82113515446833, -43.181050377424604 -22.82097750836604, -43.1811512807287 -22.820809161373653, -43.181235197265025 -22.82063173476473, -43.18130131887147 -22.82044693725451, -43.18134900876081 -22.820256548544034, -43.18137780765335 -22.82006240218066, -43.181387438200005 -22.8198663679, -43.18137780765335 -22.819670333619342, -43.18134900876081 -22.81947618725597, -43.18130131887147 -22.819285798545494, -43.181235197265025 -22.81910100103527, -43.1811512807287 -22.81892357442635, -43.181050377424604 -22.81875522743396, -43.180933459106726 -22.818597581331673, -43.18080165176237 -22.818452154337628, -43.18065622476833 -22.818320346993275, -43.18049857866604 -22.818203428675396, -43.18033023167366 -22.818102525371305, -43.180152805064736 -22.81801860883498, -43.179968007554514 -22.81795248722854, -43.179777618844035 -22.817904797339196, -43.179583472480665 -22.817875998446656, -43.1793874382 -22.817866367900002, -43.17919140391934 -22.817875998446656, -43.17899725755597 -22.817904797339196, -43.17880686884549 -22.81795248722854, -43.17862207133527 -22.81801860883498, -43.17844464472635 -22.818102525371305, -43.178276297733966 -22.818203428675396, -43.17811865163168 -22.818320346993275, -43.17797322463763 -22.818452154337628, -43.17784141729328 -22.818597581331673, -43.1777244989754 -22.81875522743396, -43.17762359567131 -22.81892357442635, -43.17753967913498 -22.81910100103527, -43.177473557528536 -22.819285798545494, -43.177425867639194 -22.81947618725597, -43.17739706874666 -22.819670333619342, -43.1773874382 -22.8198663679))" +003532,Ribeira,Ilhas,88a8a068e9fffff,,,,,,,, +003533,Zumbi,Ilhas,88a8a068e9fffff,TRUE,346,-22.81986637,-43.17938744,PO,G,Rio Jequia,"POLYGON ((-43.1773874382 -22.8198663679, -43.17739706874666 -22.82006240218066, -43.177425867639194 -22.820256548544034, -43.177473557528536 -22.82044693725451, -43.17753967913498 -22.82063173476473, -43.17762359567131 -22.820809161373653, -43.1777244989754 -22.82097750836604, -43.17784141729328 -22.82113515446833, -43.17797322463763 -22.821280581462375, -43.17811865163168 -22.821412388806728, -43.178276297733966 -22.821529307124607, -43.17844464472635 -22.821630210428697, -43.17862207133527 -22.821714126965023, -43.17880686884549 -22.821780248571464, -43.17899725755597 -22.821827938460807, -43.17919140391934 -22.821856737353347, -43.1793874382 -22.8218663679, -43.179583472480665 -22.821856737353347, -43.179777618844035 -22.821827938460807, -43.179968007554514 -22.821780248571464, -43.180152805064736 -22.821714126965023, -43.18033023167366 -22.821630210428697, -43.18049857866604 -22.821529307124607, -43.18065622476833 -22.821412388806728, -43.18080165176237 -22.821280581462375, -43.180933459106726 -22.82113515446833, -43.181050377424604 -22.82097750836604, -43.1811512807287 -22.820809161373653, -43.181235197265025 -22.82063173476473, -43.18130131887147 -22.82044693725451, -43.18134900876081 -22.820256548544034, -43.18137780765335 -22.82006240218066, -43.181387438200005 -22.8198663679, -43.18137780765335 -22.819670333619342, -43.18134900876081 -22.81947618725597, -43.18130131887147 -22.819285798545494, -43.181235197265025 -22.81910100103527, -43.1811512807287 -22.81892357442635, -43.181050377424604 -22.81875522743396, -43.180933459106726 -22.818597581331673, -43.18080165176237 -22.818452154337628, -43.18065622476833 -22.818320346993275, -43.18049857866604 -22.818203428675396, -43.18033023167366 -22.818102525371305, -43.180152805064736 -22.81801860883498, -43.179968007554514 -22.81795248722854, -43.179777618844035 -22.817904797339196, -43.179583472480665 -22.817875998446656, -43.1793874382 -22.817866367900002, -43.17919140391934 -22.817875998446656, -43.17899725755597 -22.817904797339196, -43.17880686884549 -22.81795248722854, -43.17862207133527 -22.81801860883498, -43.17844464472635 -22.818102525371305, -43.178276297733966 -22.818203428675396, -43.17811865163168 -22.818320346993275, -43.17797322463763 -22.818452154337628, -43.17784141729328 -22.818597581331673, -43.1777244989754 -22.81875522743396, -43.17762359567131 -22.81892357442635, -43.17753967913498 -22.81910100103527, -43.177473557528536 -22.819285798545494, -43.177425867639194 -22.81947618725597, -43.17739706874666 -22.819670333619342, -43.1773874382 -22.8198663679))" +003534,Ribeira,Ilhas,88a8a068e9fffff,,,,,,,, +003537,Ribeira,Ilhas,88a8a068edfffff,,,,,,,, +003538,Zumbi,Ilhas,88a8a068ebfffff,TRUE,346,-22.81986637,-43.17938744,PO,G,Rio Jequia,"POLYGON ((-43.1773874382 -22.8198663679, -43.17739706874666 -22.82006240218066, -43.177425867639194 -22.820256548544034, -43.177473557528536 -22.82044693725451, -43.17753967913498 -22.82063173476473, -43.17762359567131 -22.820809161373653, -43.1777244989754 -22.82097750836604, -43.17784141729328 -22.82113515446833, -43.17797322463763 -22.821280581462375, -43.17811865163168 -22.821412388806728, -43.178276297733966 -22.821529307124607, -43.17844464472635 -22.821630210428697, -43.17862207133527 -22.821714126965023, -43.17880686884549 -22.821780248571464, -43.17899725755597 -22.821827938460807, -43.17919140391934 -22.821856737353347, -43.1793874382 -22.8218663679, -43.179583472480665 -22.821856737353347, -43.179777618844035 -22.821827938460807, -43.179968007554514 -22.821780248571464, -43.180152805064736 -22.821714126965023, -43.18033023167366 -22.821630210428697, -43.18049857866604 -22.821529307124607, -43.18065622476833 -22.821412388806728, -43.18080165176237 -22.821280581462375, -43.180933459106726 -22.82113515446833, -43.181050377424604 -22.82097750836604, -43.1811512807287 -22.820809161373653, -43.181235197265025 -22.82063173476473, -43.18130131887147 -22.82044693725451, -43.18134900876081 -22.820256548544034, -43.18137780765335 -22.82006240218066, -43.181387438200005 -22.8198663679, -43.18137780765335 -22.819670333619342, -43.18134900876081 -22.81947618725597, -43.18130131887147 -22.819285798545494, -43.181235197265025 -22.81910100103527, -43.1811512807287 -22.81892357442635, -43.181050377424604 -22.81875522743396, -43.180933459106726 -22.818597581331673, -43.18080165176237 -22.818452154337628, -43.18065622476833 -22.818320346993275, -43.18049857866604 -22.818203428675396, -43.18033023167366 -22.818102525371305, -43.180152805064736 -22.81801860883498, -43.179968007554514 -22.81795248722854, -43.179777618844035 -22.817904797339196, -43.179583472480665 -22.817875998446656, -43.1793874382 -22.817866367900002, -43.17919140391934 -22.817875998446656, -43.17899725755597 -22.817904797339196, -43.17880686884549 -22.81795248722854, -43.17862207133527 -22.81801860883498, -43.17844464472635 -22.818102525371305, -43.178276297733966 -22.818203428675396, -43.17811865163168 -22.818320346993275, -43.17797322463763 -22.818452154337628, -43.17784141729328 -22.818597581331673, -43.1777244989754 -22.81875522743396, -43.17762359567131 -22.81892357442635, -43.17753967913498 -22.81910100103527, -43.177473557528536 -22.819285798545494, -43.177425867639194 -22.81947618725597, -43.17739706874666 -22.819670333619342, -43.1773874382 -22.8198663679))" +003539,Zumbi,Ilhas,88a8a068e9fffff,,,,,,,, +003540,Ribeira,Ilhas,88a8a068e9fffff,,,,,,,, +003544,Ribeira,Ilhas,88a8a068e9fffff,,,,,,,, +003545,Zumbi,Ilhas,88a8a068e9fffff,TRUE,346,-22.81986637,-43.17938744,PO,G,Rio Jequia,"POLYGON ((-43.1773874382 -22.8198663679, -43.17739706874666 -22.82006240218066, -43.177425867639194 -22.820256548544034, -43.177473557528536 -22.82044693725451, -43.17753967913498 -22.82063173476473, -43.17762359567131 -22.820809161373653, -43.1777244989754 -22.82097750836604, -43.17784141729328 -22.82113515446833, -43.17797322463763 -22.821280581462375, -43.17811865163168 -22.821412388806728, -43.178276297733966 -22.821529307124607, -43.17844464472635 -22.821630210428697, -43.17862207133527 -22.821714126965023, -43.17880686884549 -22.821780248571464, -43.17899725755597 -22.821827938460807, -43.17919140391934 -22.821856737353347, -43.1793874382 -22.8218663679, -43.179583472480665 -22.821856737353347, -43.179777618844035 -22.821827938460807, -43.179968007554514 -22.821780248571464, -43.180152805064736 -22.821714126965023, -43.18033023167366 -22.821630210428697, -43.18049857866604 -22.821529307124607, -43.18065622476833 -22.821412388806728, -43.18080165176237 -22.821280581462375, -43.180933459106726 -22.82113515446833, -43.181050377424604 -22.82097750836604, -43.1811512807287 -22.820809161373653, -43.181235197265025 -22.82063173476473, -43.18130131887147 -22.82044693725451, -43.18134900876081 -22.820256548544034, -43.18137780765335 -22.82006240218066, -43.181387438200005 -22.8198663679, -43.18137780765335 -22.819670333619342, -43.18134900876081 -22.81947618725597, -43.18130131887147 -22.819285798545494, -43.181235197265025 -22.81910100103527, -43.1811512807287 -22.81892357442635, -43.181050377424604 -22.81875522743396, -43.180933459106726 -22.818597581331673, -43.18080165176237 -22.818452154337628, -43.18065622476833 -22.818320346993275, -43.18049857866604 -22.818203428675396, -43.18033023167366 -22.818102525371305, -43.180152805064736 -22.81801860883498, -43.179968007554514 -22.81795248722854, -43.179777618844035 -22.817904797339196, -43.179583472480665 -22.817875998446656, -43.1793874382 -22.817866367900002, -43.17919140391934 -22.817875998446656, -43.17899725755597 -22.817904797339196, -43.17880686884549 -22.81795248722854, -43.17862207133527 -22.81801860883498, -43.17844464472635 -22.818102525371305, -43.178276297733966 -22.818203428675396, -43.17811865163168 -22.818320346993275, -43.17797322463763 -22.818452154337628, -43.17784141729328 -22.818597581331673, -43.1777244989754 -22.81875522743396, -43.17762359567131 -22.81892357442635, -43.17753967913498 -22.81910100103527, -43.177473557528536 -22.819285798545494, -43.177425867639194 -22.81947618725597, -43.17739706874666 -22.819670333619342, -43.1773874382 -22.8198663679))" +003546,Ribeira,Ilhas,88a8a06817fffff,,,,,,,, +003547,Pitangueiras,Ilhas,88a8a068ebfffff,,,,,,,, +003548,Centro,Centro,88a8a06a01fffff,,,,,,,, +003549,Centro,Centro,88a8a06a01fffff,,,,,,,, +003550,Pitangueiras,Ilhas,88a8a068ebfffff,,,,,,,, +003559,Cacuia,Ilhas,88a8a0688dfffff,TRUE,75,-22.81035273,-43.18621906,PC,G,Rio Jequia,"POLYGON ((-43.184219063499995 -22.8103527292, -43.18422869404665 -22.81054876348066, -43.18425749293919 -22.810742909844034, -43.18430518282853 -22.81093329855451, -43.184371304434976 -22.81111809606473, -43.1844552209713 -22.811295522673653, -43.184556124275396 -22.811463869666042, -43.184673042593275 -22.81162151576833, -43.18480484993763 -22.811766942762375, -43.18495027693167 -22.811898750106728, -43.18510792303396 -22.812015668424607, -43.18527627002634 -22.812116571728698, -43.185453696635264 -22.812200488265024, -43.185638494145486 -22.812266609871465, -43.185828882855965 -22.812314299760807, -43.186023029219335 -22.812343098653347, -43.1862190635 -22.8123527292, -43.18641509778066 -22.812343098653347, -43.18660924414403 -22.812314299760807, -43.18679963285451 -22.812266609871465, -43.18698443036473 -22.812200488265024, -43.18716185697365 -22.812116571728698, -43.187330203966035 -22.812015668424607, -43.18748785006832 -22.811898750106728, -43.18763327706237 -22.811766942762375, -43.18776508440672 -22.81162151576833, -43.1878820027246 -22.811463869666042, -43.187982906028694 -22.811295522673653, -43.18806682256502 -22.81111809606473, -43.188132944171464 -22.81093329855451, -43.18818063406081 -22.810742909844034, -43.18820943295334 -22.81054876348066, -43.1882190635 -22.8103527292, -43.18820943295334 -22.810156694919343, -43.18818063406081 -22.80996254855597, -43.188132944171464 -22.809772159845494, -43.18806682256502 -22.80958736233527, -43.187982906028694 -22.80940993572635, -43.1878820027246 -22.80924158873396, -43.18776508440672 -22.809083942631673, -43.18763327706237 -22.808938515637628, -43.18748785006832 -22.808806708293275, -43.187330203966035 -22.808689789975396, -43.18716185697365 -22.808588886671306, -43.18698443036473 -22.80850497013498, -43.18679963285451 -22.80843884852854, -43.18660924414403 -22.808391158639196, -43.18641509778066 -22.808362359746656, -43.1862190635 -22.808352729200003, -43.186023029219335 -22.808362359746656, -43.185828882855965 -22.808391158639196, -43.185638494145486 -22.80843884852854, -43.185453696635264 -22.80850497013498, -43.18527627002634 -22.808588886671306, -43.18510792303396 -22.808689789975396, -43.18495027693167 -22.808806708293275, -43.18480484993763 -22.808938515637628, -43.184673042593275 -22.809083942631673, -43.184556124275396 -22.80924158873396, -43.1844552209713 -22.80940993572635, -43.184371304434976 -22.80958736233527, -43.18430518282853 -22.809772159845494, -43.18425749293919 -22.80996254855597, -43.18422869404665 -22.810156694919343, -43.184219063499995 -22.8103527292))" +003562,Cacuia,Ilhas,88a8a0688dfffff,,,,,,,, +003563,Cacuia,Ilhas,88a8a0688dfffff,TRUE,75,-22.81035273,-43.18621906,PC,G,Rio Jequia,"POLYGON ((-43.184219063499995 -22.8103527292, -43.18422869404665 -22.81054876348066, -43.18425749293919 -22.810742909844034, -43.18430518282853 -22.81093329855451, -43.184371304434976 -22.81111809606473, -43.1844552209713 -22.811295522673653, -43.184556124275396 -22.811463869666042, -43.184673042593275 -22.81162151576833, -43.18480484993763 -22.811766942762375, -43.18495027693167 -22.811898750106728, -43.18510792303396 -22.812015668424607, -43.18527627002634 -22.812116571728698, -43.185453696635264 -22.812200488265024, -43.185638494145486 -22.812266609871465, -43.185828882855965 -22.812314299760807, -43.186023029219335 -22.812343098653347, -43.1862190635 -22.8123527292, -43.18641509778066 -22.812343098653347, -43.18660924414403 -22.812314299760807, -43.18679963285451 -22.812266609871465, -43.18698443036473 -22.812200488265024, -43.18716185697365 -22.812116571728698, -43.187330203966035 -22.812015668424607, -43.18748785006832 -22.811898750106728, -43.18763327706237 -22.811766942762375, -43.18776508440672 -22.81162151576833, -43.1878820027246 -22.811463869666042, -43.187982906028694 -22.811295522673653, -43.18806682256502 -22.81111809606473, -43.188132944171464 -22.81093329855451, -43.18818063406081 -22.810742909844034, -43.18820943295334 -22.81054876348066, -43.1882190635 -22.8103527292, -43.18820943295334 -22.810156694919343, -43.18818063406081 -22.80996254855597, -43.188132944171464 -22.809772159845494, -43.18806682256502 -22.80958736233527, -43.187982906028694 -22.80940993572635, -43.1878820027246 -22.80924158873396, -43.18776508440672 -22.809083942631673, -43.18763327706237 -22.808938515637628, -43.18748785006832 -22.808806708293275, -43.187330203966035 -22.808689789975396, -43.18716185697365 -22.808588886671306, -43.18698443036473 -22.80850497013498, -43.18679963285451 -22.80843884852854, -43.18660924414403 -22.808391158639196, -43.18641509778066 -22.808362359746656, -43.1862190635 -22.808352729200003, -43.186023029219335 -22.808362359746656, -43.185828882855965 -22.808391158639196, -43.185638494145486 -22.80843884852854, -43.185453696635264 -22.80850497013498, -43.18527627002634 -22.808588886671306, -43.18510792303396 -22.808689789975396, -43.18495027693167 -22.808806708293275, -43.18480484993763 -22.808938515637628, -43.184673042593275 -22.809083942631673, -43.184556124275396 -22.80924158873396, -43.1844552209713 -22.80940993572635, -43.184371304434976 -22.80958736233527, -43.18430518282853 -22.809772159845494, -43.18425749293919 -22.80996254855597, -43.18422869404665 -22.810156694919343, -43.184219063499995 -22.8103527292))" +003564,Centro,Centro,88a8a06a0dfffff,,,,,,,, +003565,Centro,Centro,88a8a06a01fffff,,,,,,,, +003566,Cocotá,Ilhas,88a8a068e3fffff,,,,,,,, +003567,Cocotá,Ilhas,88a8a068e3fffff,,,,,,,, +003568,Cocotá,Ilhas,88a8a06885fffff,,,,,,,, +003569,Cocotá,Ilhas,88a8a06885fffff,,,,,,,, +003570,Cocotá,Ilhas,88a8a068a9fffff,TRUE,76,-22.80385742,-43.17879397,PC,G,Praia de Olaria,"POLYGON ((-43.1767939699 -22.8038574221, -43.176803600446654 -22.804053456380657, -43.17683239933919 -22.80424760274403, -43.17688008922853 -22.804437991454506, -43.17694621083498 -22.80462278896473, -43.1770301273713 -22.80480021557365, -43.1771310306754 -22.80496856256604, -43.177247948993276 -22.805126208668327, -43.17737975633763 -22.805271635662372, -43.177525183331674 -22.805403443006725, -43.17768282943396 -22.805520361324604, -43.177851176426344 -22.805621264628694, -43.178028603035266 -22.80570518116502, -43.17821340054549 -22.80577130277146, -43.17840378925597 -22.805818992660804, -43.17859793561934 -22.805847791553344, -43.1787939699 -22.805857422099997, -43.17899000418066 -22.805847791553344, -43.17918415054403 -22.805818992660804, -43.17937453925451 -22.80577130277146, -43.17955933676473 -22.80570518116502, -43.179736763373654 -22.805621264628694, -43.179905110366036 -22.805520361324604, -43.180062756468324 -22.805403443006725, -43.18020818346237 -22.805271635662372, -43.18033999080672 -22.805126208668327, -43.1804569091246 -22.80496856256604, -43.180557812428695 -22.80480021557365, -43.18064172896502 -22.80462278896473, -43.180707850571466 -22.804437991454506, -43.18075554046081 -22.80424760274403, -43.180784339353345 -22.804053456380657, -43.1807939699 -22.8038574221, -43.180784339353345 -22.80366138781934, -43.18075554046081 -22.803467241455966, -43.180707850571466 -22.80327685274549, -43.18064172896502 -22.80309205523527, -43.180557812428695 -22.802914628626347, -43.1804569091246 -22.802746281633958, -43.18033999080672 -22.80258863553167, -43.18020818346237 -22.802443208537625, -43.180062756468324 -22.802311401193272, -43.179905110366036 -22.802194482875393, -43.179736763373654 -22.802093579571302, -43.17955933676473 -22.802009663034976, -43.17937453925451 -22.801943541428535, -43.17918415054403 -22.801895851539193, -43.17899000418066 -22.801867052646653, -43.1787939699 -22.8018574221, -43.17859793561934 -22.801867052646653, -43.17840378925597 -22.801895851539193, -43.17821340054549 -22.801943541428535, -43.178028603035266 -22.802009663034976, -43.177851176426344 -22.802093579571302, -43.17768282943396 -22.802194482875393, -43.177525183331674 -22.802311401193272, -43.17737975633763 -22.802443208537625, -43.177247948993276 -22.80258863553167, -43.1771310306754 -22.802746281633958, -43.1770301273713 -22.802914628626347, -43.17694621083498 -22.80309205523527, -43.17688008922853 -22.80327685274549, -43.17683239933919 -22.803467241455966, -43.176803600446654 -22.80366138781934, -43.1767939699 -22.8038574221))" +003571,Cocotá,Ilhas,88a8a068a9fffff,TRUE,76,-22.80385742,-43.17879397,PC,G,Praia de Olaria,"POLYGON ((-43.1767939699 -22.8038574221, -43.176803600446654 -22.804053456380657, -43.17683239933919 -22.80424760274403, -43.17688008922853 -22.804437991454506, -43.17694621083498 -22.80462278896473, -43.1770301273713 -22.80480021557365, -43.1771310306754 -22.80496856256604, -43.177247948993276 -22.805126208668327, -43.17737975633763 -22.805271635662372, -43.177525183331674 -22.805403443006725, -43.17768282943396 -22.805520361324604, -43.177851176426344 -22.805621264628694, -43.178028603035266 -22.80570518116502, -43.17821340054549 -22.80577130277146, -43.17840378925597 -22.805818992660804, -43.17859793561934 -22.805847791553344, -43.1787939699 -22.805857422099997, -43.17899000418066 -22.805847791553344, -43.17918415054403 -22.805818992660804, -43.17937453925451 -22.80577130277146, -43.17955933676473 -22.80570518116502, -43.179736763373654 -22.805621264628694, -43.179905110366036 -22.805520361324604, -43.180062756468324 -22.805403443006725, -43.18020818346237 -22.805271635662372, -43.18033999080672 -22.805126208668327, -43.1804569091246 -22.80496856256604, -43.180557812428695 -22.80480021557365, -43.18064172896502 -22.80462278896473, -43.180707850571466 -22.804437991454506, -43.18075554046081 -22.80424760274403, -43.180784339353345 -22.804053456380657, -43.1807939699 -22.8038574221, -43.180784339353345 -22.80366138781934, -43.18075554046081 -22.803467241455966, -43.180707850571466 -22.80327685274549, -43.18064172896502 -22.80309205523527, -43.180557812428695 -22.802914628626347, -43.1804569091246 -22.802746281633958, -43.18033999080672 -22.80258863553167, -43.18020818346237 -22.802443208537625, -43.180062756468324 -22.802311401193272, -43.179905110366036 -22.802194482875393, -43.179736763373654 -22.802093579571302, -43.17955933676473 -22.802009663034976, -43.17937453925451 -22.801943541428535, -43.17918415054403 -22.801895851539193, -43.17899000418066 -22.801867052646653, -43.1787939699 -22.8018574221, -43.17859793561934 -22.801867052646653, -43.17840378925597 -22.801895851539193, -43.17821340054549 -22.801943541428535, -43.178028603035266 -22.802009663034976, -43.177851176426344 -22.802093579571302, -43.17768282943396 -22.802194482875393, -43.177525183331674 -22.802311401193272, -43.17737975633763 -22.802443208537625, -43.177247948993276 -22.80258863553167, -43.1771310306754 -22.802746281633958, -43.1770301273713 -22.802914628626347, -43.17694621083498 -22.80309205523527, -43.17688008922853 -22.80327685274549, -43.17683239933919 -22.803467241455966, -43.176803600446654 -22.80366138781934, -43.1767939699 -22.8038574221))" +003572,Cocotá,Ilhas,88a8a06885fffff,,,,,,,, +003573,Cocotá,Ilhas,88a8a06885fffff,,,,,,,, +003574,Vicente de Carvalho,Zona Norte,88a8a0619bfffff,,,,,,,, +003575,Vicente de Carvalho,Zona Norte,88a8a0619bfffff,,,,,,,, +003576,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +003577,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +003578,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +003579,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +003580,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +003581,Jacarepaguá,Jacarepaguá,88a8a07531fffff,,,,,,,, +003582,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +003583,Curicica,Jacarepaguá,88a8a0753bfffff,TRUE,333,-22.96174676,-43.39821251,PO,J,Rio dos Passarinhos,"POLYGON ((-43.396212512299996 -22.9617467611, -43.39622214284665 -22.961942795380658, -43.39625094173919 -22.96213694174403, -43.39629863162853 -22.962327330454507, -43.39636475323498 -22.96251212796473, -43.3964486697713 -22.96268955457365, -43.3965495730754 -22.96285790156604, -43.396666491393276 -22.963015547668327, -43.39679829873763 -22.963160974662372, -43.396943725731674 -22.963292782006725, -43.39710137183396 -22.963409700324604, -43.397269718826344 -22.963510603628695, -43.397447145435265 -22.96359452016502, -43.39763194294549 -22.96366064177146, -43.397822331655966 -22.963708331660804, -43.398016478019336 -22.963737130553344, -43.3982125123 -22.963746761099998, -43.39840854658066 -22.963737130553344, -43.39860269294403 -22.963708331660804, -43.39879308165451 -22.96366064177146, -43.39897787916473 -22.96359452016502, -43.399155305773654 -22.963510603628695, -43.399323652766036 -22.963409700324604, -43.399481298868324 -22.963292782006725, -43.39962672586237 -22.963160974662372, -43.39975853320672 -22.963015547668327, -43.3998754515246 -22.96285790156604, -43.399976354828695 -22.96268955457365, -43.40006027136502 -22.96251212796473, -43.400126392971465 -22.962327330454507, -43.40017408286081 -22.96213694174403, -43.400202881753344 -22.961942795380658, -43.4002125123 -22.9617467611, -43.400202881753344 -22.96155072681934, -43.40017408286081 -22.961356580455966, -43.400126392971465 -22.96116619174549, -43.40006027136502 -22.96098139423527, -43.399976354828695 -22.960803967626347, -43.3998754515246 -22.96063562063396, -43.39975853320672 -22.96047797453167, -43.39962672586237 -22.960332547537625, -43.399481298868324 -22.960200740193272, -43.399323652766036 -22.960083821875394, -43.399155305773654 -22.959982918571303, -43.39897787916473 -22.959899002034977, -43.39879308165451 -22.959832880428536, -43.39860269294403 -22.959785190539193, -43.39840854658066 -22.959756391646653, -43.3982125123 -22.9597467611, -43.398016478019336 -22.959756391646653, -43.397822331655966 -22.959785190539193, -43.39763194294549 -22.959832880428536, -43.397447145435265 -22.959899002034977, -43.397269718826344 -22.959982918571303, -43.39710137183396 -22.960083821875394, -43.396943725731674 -22.960200740193272, -43.39679829873763 -22.960332547537625, -43.396666491393276 -22.96047797453167, -43.3965495730754 -22.96063562063396, -43.3964486697713 -22.960803967626347, -43.39636475323498 -22.96098139423527, -43.39629863162853 -22.96116619174549, -43.39625094173919 -22.961356580455966, -43.39622214284665 -22.96155072681934, -43.396212512299996 -22.9617467611))" +003584,Jacarepaguá,Jacarepaguá,88a8a0753bfffff,TRUE,333,-22.96174676,-43.39821251,PO,J,Rio dos Passarinhos,"POLYGON ((-43.396212512299996 -22.9617467611, -43.39622214284665 -22.961942795380658, -43.39625094173919 -22.96213694174403, -43.39629863162853 -22.962327330454507, -43.39636475323498 -22.96251212796473, -43.3964486697713 -22.96268955457365, -43.3965495730754 -22.96285790156604, -43.396666491393276 -22.963015547668327, -43.39679829873763 -22.963160974662372, -43.396943725731674 -22.963292782006725, -43.39710137183396 -22.963409700324604, -43.397269718826344 -22.963510603628695, -43.397447145435265 -22.96359452016502, -43.39763194294549 -22.96366064177146, -43.397822331655966 -22.963708331660804, -43.398016478019336 -22.963737130553344, -43.3982125123 -22.963746761099998, -43.39840854658066 -22.963737130553344, -43.39860269294403 -22.963708331660804, -43.39879308165451 -22.96366064177146, -43.39897787916473 -22.96359452016502, -43.399155305773654 -22.963510603628695, -43.399323652766036 -22.963409700324604, -43.399481298868324 -22.963292782006725, -43.39962672586237 -22.963160974662372, -43.39975853320672 -22.963015547668327, -43.3998754515246 -22.96285790156604, -43.399976354828695 -22.96268955457365, -43.40006027136502 -22.96251212796473, -43.400126392971465 -22.962327330454507, -43.40017408286081 -22.96213694174403, -43.400202881753344 -22.961942795380658, -43.4002125123 -22.9617467611, -43.400202881753344 -22.96155072681934, -43.40017408286081 -22.961356580455966, -43.400126392971465 -22.96116619174549, -43.40006027136502 -22.96098139423527, -43.399976354828695 -22.960803967626347, -43.3998754515246 -22.96063562063396, -43.39975853320672 -22.96047797453167, -43.39962672586237 -22.960332547537625, -43.399481298868324 -22.960200740193272, -43.399323652766036 -22.960083821875394, -43.399155305773654 -22.959982918571303, -43.39897787916473 -22.959899002034977, -43.39879308165451 -22.959832880428536, -43.39860269294403 -22.959785190539193, -43.39840854658066 -22.959756391646653, -43.3982125123 -22.9597467611, -43.398016478019336 -22.959756391646653, -43.397822331655966 -22.959785190539193, -43.39763194294549 -22.959832880428536, -43.397447145435265 -22.959899002034977, -43.397269718826344 -22.959982918571303, -43.39710137183396 -22.960083821875394, -43.396943725731674 -22.960200740193272, -43.39679829873763 -22.960332547537625, -43.396666491393276 -22.96047797453167, -43.3965495730754 -22.96063562063396, -43.3964486697713 -22.960803967626347, -43.39636475323498 -22.96098139423527, -43.39629863162853 -22.96116619174549, -43.39625094173919 -22.961356580455966, -43.39622214284665 -22.96155072681934, -43.396212512299996 -22.9617467611))" +003585,Jacarepaguá,Jacarepaguá,88a8a07517fffff,,,,,,,, +003586,Jacarepaguá,Jacarepaguá,88a8a07517fffff,,,,,,,, +003587,Jacarepaguá,Jacarepaguá,88a8a07517fffff,,,,,,,, +003588,Jacarepaguá,Jacarepaguá,88a8a07517fffff,,,,,,,, +003589,Jacarepaguá,Jacarepaguá,88a8a07517fffff,,,,,,,, +003590,Jacarepaguá,Jacarepaguá,88a8a07517fffff,,,,,,,, +003591,Jacarepaguá,Jacarepaguá,88a8a07517fffff,,,,,,,, +003592,Jacarepaguá,Jacarepaguá,88a8a07517fffff,,,,,,,, +003593,Camorim,Barra da Tijuca,88a8a07519fffff,TRUE,257,-22.97710105,-43.41680485,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.414804847 -22.9771010491, -43.414814477546656 -22.97729708338066, -43.41484327643919 -22.977491229744032, -43.414890966328535 -22.977681618454508, -43.41495708793498 -22.97786641596473, -43.415041004471306 -22.97804384257365, -43.4151419077754 -22.97821218956604, -43.41525882609328 -22.978369835668328, -43.41539063343763 -22.978515262662373, -43.41553606043168 -22.978647070006726, -43.415693706533965 -22.978763988324605, -43.41586205352635 -22.978864891628696, -43.41603948013527 -22.978948808165022, -43.41622427764549 -22.979014929771463, -43.41641466635597 -22.979062619660805, -43.41660881271934 -22.979091418553345, -43.416804847 -22.9791010491, -43.417000881280664 -22.979091418553345, -43.417195027644034 -22.979062619660805, -43.41738541635451 -22.979014929771463, -43.417570213864735 -22.978948808165022, -43.41774764047366 -22.978864891628696, -43.41791598746604 -22.978763988324605, -43.418073633568326 -22.978647070006726, -43.41821906056237 -22.978515262662373, -43.418350867906724 -22.978369835668328, -43.4184677862246 -22.97821218956604, -43.4185686895287 -22.97804384257365, -43.418652606065024 -22.97786641596473, -43.41871872767147 -22.977681618454508, -43.41876641756081 -22.977491229744032, -43.41879521645335 -22.97729708338066, -43.418804847000004 -22.9771010491, -43.41879521645335 -22.97690501481934, -43.41876641756081 -22.976710868455967, -43.41871872767147 -22.976520479745492, -43.418652606065024 -22.97633568223527, -43.4185686895287 -22.97615825562635, -43.4184677862246 -22.97598990863396, -43.418350867906724 -22.97583226253167, -43.41821906056237 -22.975686835537626, -43.418073633568326 -22.975555028193273, -43.41791598746604 -22.975438109875395, -43.41774764047366 -22.975337206571304, -43.417570213864735 -22.975253290034978, -43.41738541635451 -22.975187168428537, -43.417195027644034 -22.975139478539194, -43.417000881280664 -22.975110679646654, -43.416804847 -22.9751010491, -43.41660881271934 -22.975110679646654, -43.41641466635597 -22.975139478539194, -43.41622427764549 -22.975187168428537, -43.41603948013527 -22.975253290034978, -43.41586205352635 -22.975337206571304, -43.415693706533965 -22.975438109875395, -43.41553606043168 -22.975555028193273, -43.41539063343763 -22.975686835537626, -43.41525882609328 -22.97583226253167, -43.4151419077754 -22.97598990863396, -43.415041004471306 -22.97615825562635, -43.41495708793498 -22.97633568223527, -43.414890966328535 -22.976520479745492, -43.41484327643919 -22.976710868455967, -43.414814477546656 -22.97690501481934, -43.414804847 -22.9771010491))" +003594,Camorim,Barra da Tijuca,88a8a07519fffff,TRUE,257,-22.97710105,-43.41680485,PO,J,Lagoa de Jacarepagua,"POLYGON ((-43.414804847 -22.9771010491, -43.414814477546656 -22.97729708338066, -43.41484327643919 -22.977491229744032, -43.414890966328535 -22.977681618454508, -43.41495708793498 -22.97786641596473, -43.415041004471306 -22.97804384257365, -43.4151419077754 -22.97821218956604, -43.41525882609328 -22.978369835668328, -43.41539063343763 -22.978515262662373, -43.41553606043168 -22.978647070006726, -43.415693706533965 -22.978763988324605, -43.41586205352635 -22.978864891628696, -43.41603948013527 -22.978948808165022, -43.41622427764549 -22.979014929771463, -43.41641466635597 -22.979062619660805, -43.41660881271934 -22.979091418553345, -43.416804847 -22.9791010491, -43.417000881280664 -22.979091418553345, -43.417195027644034 -22.979062619660805, -43.41738541635451 -22.979014929771463, -43.417570213864735 -22.978948808165022, -43.41774764047366 -22.978864891628696, -43.41791598746604 -22.978763988324605, -43.418073633568326 -22.978647070006726, -43.41821906056237 -22.978515262662373, -43.418350867906724 -22.978369835668328, -43.4184677862246 -22.97821218956604, -43.4185686895287 -22.97804384257365, -43.418652606065024 -22.97786641596473, -43.41871872767147 -22.977681618454508, -43.41876641756081 -22.977491229744032, -43.41879521645335 -22.97729708338066, -43.418804847000004 -22.9771010491, -43.41879521645335 -22.97690501481934, -43.41876641756081 -22.976710868455967, -43.41871872767147 -22.976520479745492, -43.418652606065024 -22.97633568223527, -43.4185686895287 -22.97615825562635, -43.4184677862246 -22.97598990863396, -43.418350867906724 -22.97583226253167, -43.41821906056237 -22.975686835537626, -43.418073633568326 -22.975555028193273, -43.41791598746604 -22.975438109875395, -43.41774764047366 -22.975337206571304, -43.417570213864735 -22.975253290034978, -43.41738541635451 -22.975187168428537, -43.417195027644034 -22.975139478539194, -43.417000881280664 -22.975110679646654, -43.416804847 -22.9751010491, -43.41660881271934 -22.975110679646654, -43.41641466635597 -22.975139478539194, -43.41622427764549 -22.975187168428537, -43.41603948013527 -22.975253290034978, -43.41586205352635 -22.975337206571304, -43.415693706533965 -22.975438109875395, -43.41553606043168 -22.975555028193273, -43.41539063343763 -22.975686835537626, -43.41525882609328 -22.97583226253167, -43.4151419077754 -22.97598990863396, -43.415041004471306 -22.97615825562635, -43.41495708793498 -22.97633568223527, -43.414890966328535 -22.976520479745492, -43.41484327643919 -22.976710868455967, -43.414814477546656 -22.97690501481934, -43.414804847 -22.9771010491))" +003595,Irajá,Zona Norte,88a8a06e4dfffff,,,,,,,, +003596,Irajá,Zona Norte,88a8a06e4dfffff,,,,,,,, +003597,Irajá,Zona Norte,88a8a06e4dfffff,,,,,,,, +003598,Irajá,Zona Norte,88a8a06e4dfffff,,,,,,,, +003599,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +003600,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +003601,Vicente de Carvalho,Zona Norte,88a8a06e4dfffff,,,,,,,, +003602,Vicente de Carvalho,Zona Norte,88a8a0619bfffff,,,,,,,, +003603,Vicente de Carvalho,Zona Norte,88a8a0619bfffff,,,,,,,, +003604,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +003605,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +003611,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +003612,Freguesia (Jacarepaguá),Jacarepaguá,88a8a0605bfffff,,,,,,,, +003613,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,,,,,,,, +003616,Tomás Coelho,Zona Norte,88a8a06199fffff,TRUE,413,-22.86536591,-43.30794203,PO,G,,"POLYGON ((-43.3059420320869 -22.8653659053416, -43.305951662633554 -22.86556193962226, -43.30598046152609 -22.865756085985634, -43.30602815141543 -22.86594647469611, -43.30609427302188 -22.86613127220633, -43.3061781895582 -22.866308698815253, -43.3062790928623 -22.866477045807642, -43.306396011180176 -22.86663469190993, -43.30652781852453 -22.866780118903975, -43.306673245518574 -22.866911926248328, -43.30683089162086 -22.867028844566207, -43.306999238613244 -22.867129747870298, -43.307176665222165 -22.867213664406624, -43.30736146273239 -22.867279786013064, -43.30755185144287 -22.867327475902407, -43.30774599780624 -22.867356274794947, -43.3079420320869 -22.8673659053416, -43.30813806636756 -22.867356274794947, -43.30833221273093 -22.867327475902407, -43.30852260144141 -22.867279786013064, -43.30870739895163 -22.867213664406624, -43.308884825560554 -22.867129747870298, -43.309053172552936 -22.867028844566207, -43.309210818655224 -22.866911926248328, -43.30935624564927 -22.866780118903975, -43.30948805299362 -22.86663469190993, -43.3096049713115 -22.866477045807642, -43.309705874615595 -22.866308698815253, -43.30978979115192 -22.86613127220633, -43.309855912758366 -22.86594647469611, -43.30990360264771 -22.865756085985634, -43.309932401540244 -22.86556193962226, -43.3099420320869 -22.8653659053416, -43.309932401540244 -22.865169871060942, -43.30990360264771 -22.86497572469757, -43.309855912758366 -22.864785335987094, -43.30978979115192 -22.86460053847687, -43.309705874615595 -22.86442311186795, -43.3096049713115 -22.86425476487556, -43.30948805299362 -22.864097118773273, -43.30935624564927 -22.863951691779228, -43.309210818655224 -22.863819884434875, -43.309053172552936 -22.863702966116996, -43.308884825560554 -22.863602062812905, -43.30870739895163 -22.86351814627658, -43.30852260144141 -22.86345202467014, -43.30833221273093 -22.863404334780796, -43.30813806636756 -22.863375535888256, -43.3079420320869 -22.863365905341603, -43.30774599780624 -22.863375535888256, -43.30755185144287 -22.863404334780796, -43.30736146273239 -22.86345202467014, -43.307176665222165 -22.86351814627658, -43.306999238613244 -22.863602062812905, -43.30683089162086 -22.863702966116996, -43.306673245518574 -22.863819884434875, -43.30652781852453 -22.863951691779228, -43.306396011180176 -22.864097118773273, -43.3062790928623 -22.86425476487556, -43.3061781895582 -22.86442311186795, -43.30609427302188 -22.86460053847687, -43.30602815141543 -22.864785335987094, -43.30598046152609 -22.86497572469757, -43.305951662633554 -22.865169871060942, -43.3059420320869 -22.8653659053416))" +003617,Tomás Coelho,Zona Norte,88a8a06199fffff,TRUE,413,-22.86536591,-43.30794203,PO,G,,"POLYGON ((-43.3059420320869 -22.8653659053416, -43.305951662633554 -22.86556193962226, -43.30598046152609 -22.865756085985634, -43.30602815141543 -22.86594647469611, -43.30609427302188 -22.86613127220633, -43.3061781895582 -22.866308698815253, -43.3062790928623 -22.866477045807642, -43.306396011180176 -22.86663469190993, -43.30652781852453 -22.866780118903975, -43.306673245518574 -22.866911926248328, -43.30683089162086 -22.867028844566207, -43.306999238613244 -22.867129747870298, -43.307176665222165 -22.867213664406624, -43.30736146273239 -22.867279786013064, -43.30755185144287 -22.867327475902407, -43.30774599780624 -22.867356274794947, -43.3079420320869 -22.8673659053416, -43.30813806636756 -22.867356274794947, -43.30833221273093 -22.867327475902407, -43.30852260144141 -22.867279786013064, -43.30870739895163 -22.867213664406624, -43.308884825560554 -22.867129747870298, -43.309053172552936 -22.867028844566207, -43.309210818655224 -22.866911926248328, -43.30935624564927 -22.866780118903975, -43.30948805299362 -22.86663469190993, -43.3096049713115 -22.866477045807642, -43.309705874615595 -22.866308698815253, -43.30978979115192 -22.86613127220633, -43.309855912758366 -22.86594647469611, -43.30990360264771 -22.865756085985634, -43.309932401540244 -22.86556193962226, -43.3099420320869 -22.8653659053416, -43.309932401540244 -22.865169871060942, -43.30990360264771 -22.86497572469757, -43.309855912758366 -22.864785335987094, -43.30978979115192 -22.86460053847687, -43.309705874615595 -22.86442311186795, -43.3096049713115 -22.86425476487556, -43.30948805299362 -22.864097118773273, -43.30935624564927 -22.863951691779228, -43.309210818655224 -22.863819884434875, -43.309053172552936 -22.863702966116996, -43.308884825560554 -22.863602062812905, -43.30870739895163 -22.86351814627658, -43.30852260144141 -22.86345202467014, -43.30833221273093 -22.863404334780796, -43.30813806636756 -22.863375535888256, -43.3079420320869 -22.863365905341603, -43.30774599780624 -22.863375535888256, -43.30755185144287 -22.863404334780796, -43.30736146273239 -22.86345202467014, -43.307176665222165 -22.86351814627658, -43.306999238613244 -22.863602062812905, -43.30683089162086 -22.863702966116996, -43.306673245518574 -22.863819884434875, -43.30652781852453 -22.863951691779228, -43.306396011180176 -22.864097118773273, -43.3062790928623 -22.86425476487556, -43.3061781895582 -22.86442311186795, -43.30609427302188 -22.86460053847687, -43.30602815141543 -22.864785335987094, -43.30598046152609 -22.86497572469757, -43.305951662633554 -22.865169871060942, -43.3059420320869 -22.8653659053416))" +003618,Tomás Coelho,Zona Norte,88a8a06199fffff,,,,,,,, +003619,Tomás Coelho,Zona Norte,88a8a061d7fffff,,,,,,,, +003620,Tomás Coelho,Zona Norte,88a8a061d7fffff,,,,,,,, +003622,Engenho da Rainha,Zona Norte,88a8a061d7fffff,,,,,,,, +003627,Tomás Coelho,Zona Norte,88a8a06199fffff,,,,,,,, +003628,Tomás Coelho,Zona Norte,88a8a06199fffff,,,,,,,, +003631,Inhaúma,Zona Norte,88a8a06189fffff,,,,,,,, +003632,Inhaúma,Zona Norte,88a8a06189fffff,,,,,,,, +003633,Inhaúma,Zona Norte,88a8a06189fffff,,,,,,,, +003635,Inhaúma,Zona Norte,88a8a06189fffff,,,,,,,, +003636,Inhaúma,Zona Norte,88a8a06189fffff,,,,,,,, +003637,Engenho da Rainha,Zona Norte,88a8a061d7fffff,,,,,,,, +003638,Engenho da Rainha,Zona Norte,88a8a061d7fffff,,,,,,,, +003639,Engenho da Rainha,Zona Norte,88a8a061d7fffff,,,,,,,, +003640,Engenho da Rainha,Zona Norte,88a8a0618bfffff,,,,,,,, +003641,Inhaúma,Zona Norte,88a8a0618bfffff,,,,,,,, +003642,Inhaúma,Zona Norte,88a8a0618bfffff,,,,,,,, +003644,Inhaúma,Zona Norte,88a8a06189fffff,,,,,,,, +003645,Engenho da Rainha,Zona Norte,88a8a06199fffff,,,,,,,, +003646,Engenho da Rainha,Zona Norte,88a8a06199fffff,,,,,,,, +003647,Irajá,Zona Norte,88a8a06e41fffff,TRUE,272,-22.84735531,-43.32448787,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3224878658 -22.8473553146, -43.32249749634666 -22.84755134888066, -43.32252629523919 -22.847745495244034, -43.322573985128535 -22.84793588395451, -43.32264010673498 -22.84812068146473, -43.322724023271306 -22.848298108073653, -43.3228249265754 -22.848466455066042, -43.32294184489328 -22.84862410116833, -43.32307365223763 -22.848769528162375, -43.32321907923168 -22.848901335506728, -43.323376725333965 -22.849018253824607, -43.32354507232635 -22.849119157128698, -43.32372249893527 -22.849203073665024, -43.32390729644549 -22.849269195271464, -43.32409768515597 -22.849316885160807, -43.32429183151934 -22.849345684053347, -43.3244878658 -22.8493553146, -43.324683900080665 -22.849345684053347, -43.324878046444034 -22.849316885160807, -43.32506843515451 -22.849269195271464, -43.325253232664735 -22.849203073665024, -43.32543065927366 -22.849119157128698, -43.32559900626604 -22.849018253824607, -43.32575665236833 -22.848901335506728, -43.32590207936237 -22.848769528162375, -43.326033886706725 -22.84862410116833, -43.326150805024604 -22.848466455066042, -43.3262517083287 -22.848298108073653, -43.326335624865024 -22.84812068146473, -43.32640174647147 -22.84793588395451, -43.32644943636081 -22.847745495244034, -43.32647823525335 -22.84755134888066, -43.326487865800004 -22.8473553146, -43.32647823525335 -22.847159280319342, -43.32644943636081 -22.84696513395597, -43.32640174647147 -22.846774745245494, -43.326335624865024 -22.84658994773527, -43.3262517083287 -22.84641252112635, -43.326150805024604 -22.84624417413396, -43.326033886706725 -22.846086528031673, -43.32590207936237 -22.845941101037628, -43.32575665236833 -22.845809293693275, -43.32559900626604 -22.845692375375396, -43.32543065927366 -22.845591472071305, -43.325253232664735 -22.84550755553498, -43.32506843515451 -22.84544143392854, -43.324878046444034 -22.845393744039196, -43.324683900080665 -22.845364945146656, -43.3244878658 -22.845355314600003, -43.32429183151934 -22.845364945146656, -43.32409768515597 -22.845393744039196, -43.32390729644549 -22.84544143392854, -43.32372249893527 -22.84550755553498, -43.32354507232635 -22.845591472071305, -43.323376725333965 -22.845692375375396, -43.32321907923168 -22.845809293693275, -43.32307365223763 -22.845941101037628, -43.32294184489328 -22.846086528031673, -43.3228249265754 -22.84624417413396, -43.322724023271306 -22.84641252112635, -43.32264010673498 -22.84658994773527, -43.322573985128535 -22.846774745245494, -43.32252629523919 -22.84696513395597, -43.32249749634666 -22.847159280319342, -43.3224878658 -22.8473553146))" +003648,Irajá,Zona Norte,88a8a06e41fffff,TRUE,272,-22.84735531,-43.32448787,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3224878658 -22.8473553146, -43.32249749634666 -22.84755134888066, -43.32252629523919 -22.847745495244034, -43.322573985128535 -22.84793588395451, -43.32264010673498 -22.84812068146473, -43.322724023271306 -22.848298108073653, -43.3228249265754 -22.848466455066042, -43.32294184489328 -22.84862410116833, -43.32307365223763 -22.848769528162375, -43.32321907923168 -22.848901335506728, -43.323376725333965 -22.849018253824607, -43.32354507232635 -22.849119157128698, -43.32372249893527 -22.849203073665024, -43.32390729644549 -22.849269195271464, -43.32409768515597 -22.849316885160807, -43.32429183151934 -22.849345684053347, -43.3244878658 -22.8493553146, -43.324683900080665 -22.849345684053347, -43.324878046444034 -22.849316885160807, -43.32506843515451 -22.849269195271464, -43.325253232664735 -22.849203073665024, -43.32543065927366 -22.849119157128698, -43.32559900626604 -22.849018253824607, -43.32575665236833 -22.848901335506728, -43.32590207936237 -22.848769528162375, -43.326033886706725 -22.84862410116833, -43.326150805024604 -22.848466455066042, -43.3262517083287 -22.848298108073653, -43.326335624865024 -22.84812068146473, -43.32640174647147 -22.84793588395451, -43.32644943636081 -22.847745495244034, -43.32647823525335 -22.84755134888066, -43.326487865800004 -22.8473553146, -43.32647823525335 -22.847159280319342, -43.32644943636081 -22.84696513395597, -43.32640174647147 -22.846774745245494, -43.326335624865024 -22.84658994773527, -43.3262517083287 -22.84641252112635, -43.326150805024604 -22.84624417413396, -43.326033886706725 -22.846086528031673, -43.32590207936237 -22.845941101037628, -43.32575665236833 -22.845809293693275, -43.32559900626604 -22.845692375375396, -43.32543065927366 -22.845591472071305, -43.325253232664735 -22.84550755553498, -43.32506843515451 -22.84544143392854, -43.324878046444034 -22.845393744039196, -43.324683900080665 -22.845364945146656, -43.3244878658 -22.845355314600003, -43.32429183151934 -22.845364945146656, -43.32409768515597 -22.845393744039196, -43.32390729644549 -22.84544143392854, -43.32372249893527 -22.84550755553498, -43.32354507232635 -22.845591472071305, -43.323376725333965 -22.845692375375396, -43.32321907923168 -22.845809293693275, -43.32307365223763 -22.845941101037628, -43.32294184489328 -22.846086528031673, -43.3228249265754 -22.84624417413396, -43.322724023271306 -22.84641252112635, -43.32264010673498 -22.84658994773527, -43.322573985128535 -22.846774745245494, -43.32252629523919 -22.84696513395597, -43.32249749634666 -22.847159280319342, -43.3224878658 -22.8473553146))" +003649,Irajá,Zona Norte,88a8a06e41fffff,TRUE,272,-22.84735531,-43.32448787,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3224878658 -22.8473553146, -43.32249749634666 -22.84755134888066, -43.32252629523919 -22.847745495244034, -43.322573985128535 -22.84793588395451, -43.32264010673498 -22.84812068146473, -43.322724023271306 -22.848298108073653, -43.3228249265754 -22.848466455066042, -43.32294184489328 -22.84862410116833, -43.32307365223763 -22.848769528162375, -43.32321907923168 -22.848901335506728, -43.323376725333965 -22.849018253824607, -43.32354507232635 -22.849119157128698, -43.32372249893527 -22.849203073665024, -43.32390729644549 -22.849269195271464, -43.32409768515597 -22.849316885160807, -43.32429183151934 -22.849345684053347, -43.3244878658 -22.8493553146, -43.324683900080665 -22.849345684053347, -43.324878046444034 -22.849316885160807, -43.32506843515451 -22.849269195271464, -43.325253232664735 -22.849203073665024, -43.32543065927366 -22.849119157128698, -43.32559900626604 -22.849018253824607, -43.32575665236833 -22.848901335506728, -43.32590207936237 -22.848769528162375, -43.326033886706725 -22.84862410116833, -43.326150805024604 -22.848466455066042, -43.3262517083287 -22.848298108073653, -43.326335624865024 -22.84812068146473, -43.32640174647147 -22.84793588395451, -43.32644943636081 -22.847745495244034, -43.32647823525335 -22.84755134888066, -43.326487865800004 -22.8473553146, -43.32647823525335 -22.847159280319342, -43.32644943636081 -22.84696513395597, -43.32640174647147 -22.846774745245494, -43.326335624865024 -22.84658994773527, -43.3262517083287 -22.84641252112635, -43.326150805024604 -22.84624417413396, -43.326033886706725 -22.846086528031673, -43.32590207936237 -22.845941101037628, -43.32575665236833 -22.845809293693275, -43.32559900626604 -22.845692375375396, -43.32543065927366 -22.845591472071305, -43.325253232664735 -22.84550755553498, -43.32506843515451 -22.84544143392854, -43.324878046444034 -22.845393744039196, -43.324683900080665 -22.845364945146656, -43.3244878658 -22.845355314600003, -43.32429183151934 -22.845364945146656, -43.32409768515597 -22.845393744039196, -43.32390729644549 -22.84544143392854, -43.32372249893527 -22.84550755553498, -43.32354507232635 -22.845591472071305, -43.323376725333965 -22.845692375375396, -43.32321907923168 -22.845809293693275, -43.32307365223763 -22.845941101037628, -43.32294184489328 -22.846086528031673, -43.3228249265754 -22.84624417413396, -43.322724023271306 -22.84641252112635, -43.32264010673498 -22.84658994773527, -43.322573985128535 -22.846774745245494, -43.32252629523919 -22.84696513395597, -43.32249749634666 -22.847159280319342, -43.3224878658 -22.8473553146))" +003650,Irajá,Zona Norte,88a8a06e41fffff,TRUE,272,-22.84735531,-43.32448787,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3224878658 -22.8473553146, -43.32249749634666 -22.84755134888066, -43.32252629523919 -22.847745495244034, -43.322573985128535 -22.84793588395451, -43.32264010673498 -22.84812068146473, -43.322724023271306 -22.848298108073653, -43.3228249265754 -22.848466455066042, -43.32294184489328 -22.84862410116833, -43.32307365223763 -22.848769528162375, -43.32321907923168 -22.848901335506728, -43.323376725333965 -22.849018253824607, -43.32354507232635 -22.849119157128698, -43.32372249893527 -22.849203073665024, -43.32390729644549 -22.849269195271464, -43.32409768515597 -22.849316885160807, -43.32429183151934 -22.849345684053347, -43.3244878658 -22.8493553146, -43.324683900080665 -22.849345684053347, -43.324878046444034 -22.849316885160807, -43.32506843515451 -22.849269195271464, -43.325253232664735 -22.849203073665024, -43.32543065927366 -22.849119157128698, -43.32559900626604 -22.849018253824607, -43.32575665236833 -22.848901335506728, -43.32590207936237 -22.848769528162375, -43.326033886706725 -22.84862410116833, -43.326150805024604 -22.848466455066042, -43.3262517083287 -22.848298108073653, -43.326335624865024 -22.84812068146473, -43.32640174647147 -22.84793588395451, -43.32644943636081 -22.847745495244034, -43.32647823525335 -22.84755134888066, -43.326487865800004 -22.8473553146, -43.32647823525335 -22.847159280319342, -43.32644943636081 -22.84696513395597, -43.32640174647147 -22.846774745245494, -43.326335624865024 -22.84658994773527, -43.3262517083287 -22.84641252112635, -43.326150805024604 -22.84624417413396, -43.326033886706725 -22.846086528031673, -43.32590207936237 -22.845941101037628, -43.32575665236833 -22.845809293693275, -43.32559900626604 -22.845692375375396, -43.32543065927366 -22.845591472071305, -43.325253232664735 -22.84550755553498, -43.32506843515451 -22.84544143392854, -43.324878046444034 -22.845393744039196, -43.324683900080665 -22.845364945146656, -43.3244878658 -22.845355314600003, -43.32429183151934 -22.845364945146656, -43.32409768515597 -22.845393744039196, -43.32390729644549 -22.84544143392854, -43.32372249893527 -22.84550755553498, -43.32354507232635 -22.845591472071305, -43.323376725333965 -22.845692375375396, -43.32321907923168 -22.845809293693275, -43.32307365223763 -22.845941101037628, -43.32294184489328 -22.846086528031673, -43.3228249265754 -22.84624417413396, -43.322724023271306 -22.84641252112635, -43.32264010673498 -22.84658994773527, -43.322573985128535 -22.846774745245494, -43.32252629523919 -22.84696513395597, -43.32249749634666 -22.847159280319342, -43.3224878658 -22.8473553146))" +003652,Irajá,Zona Norte,88a8a06e41fffff,TRUE,272,-22.84735531,-43.32448787,PO,G,Rio Iraja/Canal da Penha,"POLYGON ((-43.3224878658 -22.8473553146, -43.32249749634666 -22.84755134888066, -43.32252629523919 -22.847745495244034, -43.322573985128535 -22.84793588395451, -43.32264010673498 -22.84812068146473, -43.322724023271306 -22.848298108073653, -43.3228249265754 -22.848466455066042, -43.32294184489328 -22.84862410116833, -43.32307365223763 -22.848769528162375, -43.32321907923168 -22.848901335506728, -43.323376725333965 -22.849018253824607, -43.32354507232635 -22.849119157128698, -43.32372249893527 -22.849203073665024, -43.32390729644549 -22.849269195271464, -43.32409768515597 -22.849316885160807, -43.32429183151934 -22.849345684053347, -43.3244878658 -22.8493553146, -43.324683900080665 -22.849345684053347, -43.324878046444034 -22.849316885160807, -43.32506843515451 -22.849269195271464, -43.325253232664735 -22.849203073665024, -43.32543065927366 -22.849119157128698, -43.32559900626604 -22.849018253824607, -43.32575665236833 -22.848901335506728, -43.32590207936237 -22.848769528162375, -43.326033886706725 -22.84862410116833, -43.326150805024604 -22.848466455066042, -43.3262517083287 -22.848298108073653, -43.326335624865024 -22.84812068146473, -43.32640174647147 -22.84793588395451, -43.32644943636081 -22.847745495244034, -43.32647823525335 -22.84755134888066, -43.326487865800004 -22.8473553146, -43.32647823525335 -22.847159280319342, -43.32644943636081 -22.84696513395597, -43.32640174647147 -22.846774745245494, -43.326335624865024 -22.84658994773527, -43.3262517083287 -22.84641252112635, -43.326150805024604 -22.84624417413396, -43.326033886706725 -22.846086528031673, -43.32590207936237 -22.845941101037628, -43.32575665236833 -22.845809293693275, -43.32559900626604 -22.845692375375396, -43.32543065927366 -22.845591472071305, -43.325253232664735 -22.84550755553498, -43.32506843515451 -22.84544143392854, -43.324878046444034 -22.845393744039196, -43.324683900080665 -22.845364945146656, -43.3244878658 -22.845355314600003, -43.32429183151934 -22.845364945146656, -43.32409768515597 -22.845393744039196, -43.32390729644549 -22.84544143392854, -43.32372249893527 -22.84550755553498, -43.32354507232635 -22.845591472071305, -43.323376725333965 -22.845692375375396, -43.32321907923168 -22.845809293693275, -43.32307365223763 -22.845941101037628, -43.32294184489328 -22.846086528031673, -43.3228249265754 -22.84624417413396, -43.322724023271306 -22.84641252112635, -43.32264010673498 -22.84658994773527, -43.322573985128535 -22.846774745245494, -43.32252629523919 -22.84696513395597, -43.32249749634666 -22.847159280319342, -43.3224878658 -22.8473553146))" +003653,Inhaúma,Zona Norte,88a8a06189fffff,,,,,,,, +003654,Inhaúma,Zona Norte,88a8a06189fffff,,,,,,,, +003655,Irajá,Zona Norte,88a8a06e41fffff,,,,,,,, +003657,Irajá,Zona Norte,88a8a06e4bfffff,,,,,,,, +003659,Freguesia (Jacarepaguá),Jacarepaguá,88a8a0605bfffff,TRUE,109,-22.93787222,-43.33288889,PC,J,Rio do Anil,"POLYGON ((-43.3308888888889 -22.9378722222222, -43.33089851943556 -22.93806825650286, -43.330927318328094 -22.938262402866233, -43.330975008217436 -22.938452791576708, -43.33104112982388 -22.93863758908693, -43.33112504636021 -22.93881501569585, -43.3312259496643 -22.93898336268824, -43.33134286798218 -22.93914100879053, -43.33147467532653 -22.939286435784574, -43.33162010232058 -22.939418243128927, -43.331777748422866 -22.939535161446805, -43.33194609541525 -22.939636064750896, -43.33212352202417 -22.939719981287222, -43.33230831953439 -22.939786102893663, -43.33249870824487 -22.939833792783006, -43.33269285460824 -22.939862591675546, -43.3328888888889 -22.9398722222222, -43.333084923169565 -22.939862591675546, -43.333279069532935 -22.939833792783006, -43.333469458243414 -22.939786102893663, -43.333654255753636 -22.939719981287222, -43.33383168236256 -22.939636064750896, -43.33400002935494 -22.939535161446805, -43.33415767545723 -22.939418243128927, -43.33430310245127 -22.939286435784574, -43.334434909795625 -22.93914100879053, -43.334551828113504 -22.93898336268824, -43.3346527314176 -22.93881501569585, -43.334736647953925 -22.93863758908693, -43.33480276956037 -22.938452791576708, -43.33485045944971 -22.938262402866233, -43.33487925834225 -22.93806825650286, -43.334888888888905 -22.9378722222222, -43.33487925834225 -22.93767618794154, -43.33485045944971 -22.937482041578168, -43.33480276956037 -22.937291652867692, -43.334736647953925 -22.93710685535747, -43.3346527314176 -22.93692942874855, -43.334551828113504 -22.93676108175616, -43.334434909795625 -22.936603435653872, -43.33430310245127 -22.936458008659827, -43.33415767545723 -22.936326201315474, -43.33400002935494 -22.936209282997595, -43.33383168236256 -22.936108379693504, -43.333654255753636 -22.936024463157178, -43.333469458243414 -22.935958341550737, -43.333279069532935 -22.935910651661395, -43.333084923169565 -22.935881852768855, -43.3328888888889 -22.9358722222222, -43.33269285460824 -22.935881852768855, -43.33249870824487 -22.935910651661395, -43.33230831953439 -22.935958341550737, -43.33212352202417 -22.936024463157178, -43.33194609541525 -22.936108379693504, -43.331777748422866 -22.936209282997595, -43.33162010232058 -22.936326201315474, -43.33147467532653 -22.936458008659827, -43.33134286798218 -22.936603435653872, -43.3312259496643 -22.93676108175616, -43.33112504636021 -22.93692942874855, -43.33104112982388 -22.93710685535747, -43.330975008217436 -22.937291652867692, -43.330927318328094 -22.937482041578168, -43.33089851943556 -22.93767618794154, -43.3308888888889 -22.9378722222222))" +003660,Engenho da Rainha,Zona Norte,88a8a06199fffff,,,,,,,, +003661,Colégio,Zona Norte,88a8a06e4bfffff,,,,,,,, +003662,Colégio,Zona Norte,88a8a06e5dfffff,TRUE,459,-22.84015,-43.338563,PO,G,,"POLYGON ((-43.336563 -22.84015, -43.336572630546655 -22.84034603428066, -43.33660142943919 -22.840540180644034, -43.336649119328534 -22.84073056935451, -43.33671524093498 -22.84091536686473, -43.336799157471305 -22.841092793473653, -43.3369000607754 -22.84126114046604, -43.33701697909328 -22.84141878656833, -43.33714878643763 -22.841564213562375, -43.337294213431676 -22.841696020906728, -43.337451859533964 -22.841812939224607, -43.337620206526346 -22.841913842528697, -43.33779763313527 -22.841997759065023, -43.33798243064549 -22.842063880671464, -43.33817281935597 -22.842111570560807, -43.33836696571934 -22.842140369453347, -43.338563 -22.84215, -43.33875903428066 -22.842140369453347, -43.33895318064403 -22.842111570560807, -43.33914356935451 -22.842063880671464, -43.339328366864734 -22.841997759065023, -43.339505793473656 -22.841913842528697, -43.33967414046604 -22.841812939224607, -43.339831786568325 -22.841696020906728, -43.33997721356237 -22.841564213562375, -43.34010902090672 -22.84141878656833, -43.3402259392246 -22.84126114046604, -43.3403268425287 -22.841092793473653, -43.34041075906502 -22.84091536686473, -43.34047688067147 -22.84073056935451, -43.34052457056081 -22.840540180644034, -43.340553369453346 -22.84034603428066, -43.340563 -22.84015, -43.340553369453346 -22.839953965719342, -43.34052457056081 -22.83975981935597, -43.34047688067147 -22.839569430645493, -43.34041075906502 -22.83938463313527, -43.3403268425287 -22.83920720652635, -43.3402259392246 -22.83903885953396, -43.34010902090672 -22.838881213431673, -43.33997721356237 -22.838735786437628, -43.339831786568325 -22.838603979093275, -43.33967414046604 -22.838487060775396, -43.339505793473656 -22.838386157471305, -43.339328366864734 -22.83830224093498, -43.33914356935451 -22.83823611932854, -43.33895318064403 -22.838188429439196, -43.33875903428066 -22.838159630546656, -43.338563 -22.838150000000002, -43.33836696571934 -22.838159630546656, -43.33817281935597 -22.838188429439196, -43.33798243064549 -22.83823611932854, -43.33779763313527 -22.83830224093498, -43.337620206526346 -22.838386157471305, -43.337451859533964 -22.838487060775396, -43.337294213431676 -22.838603979093275, -43.33714878643763 -22.838735786437628, -43.33701697909328 -22.838881213431673, -43.3369000607754 -22.83903885953396, -43.336799157471305 -22.83920720652635, -43.33671524093498 -22.83938463313527, -43.336649119328534 -22.839569430645493, -43.33660142943919 -22.83975981935597, -43.336572630546655 -22.839953965719342, -43.336563 -22.84015))" +003663,Colégio,Zona Norte,88a8a06e5dfffff,TRUE,459,-22.84015,-43.338563,PO,G,,"POLYGON ((-43.336563 -22.84015, -43.336572630546655 -22.84034603428066, -43.33660142943919 -22.840540180644034, -43.336649119328534 -22.84073056935451, -43.33671524093498 -22.84091536686473, -43.336799157471305 -22.841092793473653, -43.3369000607754 -22.84126114046604, -43.33701697909328 -22.84141878656833, -43.33714878643763 -22.841564213562375, -43.337294213431676 -22.841696020906728, -43.337451859533964 -22.841812939224607, -43.337620206526346 -22.841913842528697, -43.33779763313527 -22.841997759065023, -43.33798243064549 -22.842063880671464, -43.33817281935597 -22.842111570560807, -43.33836696571934 -22.842140369453347, -43.338563 -22.84215, -43.33875903428066 -22.842140369453347, -43.33895318064403 -22.842111570560807, -43.33914356935451 -22.842063880671464, -43.339328366864734 -22.841997759065023, -43.339505793473656 -22.841913842528697, -43.33967414046604 -22.841812939224607, -43.339831786568325 -22.841696020906728, -43.33997721356237 -22.841564213562375, -43.34010902090672 -22.84141878656833, -43.3402259392246 -22.84126114046604, -43.3403268425287 -22.841092793473653, -43.34041075906502 -22.84091536686473, -43.34047688067147 -22.84073056935451, -43.34052457056081 -22.840540180644034, -43.340553369453346 -22.84034603428066, -43.340563 -22.84015, -43.340553369453346 -22.839953965719342, -43.34052457056081 -22.83975981935597, -43.34047688067147 -22.839569430645493, -43.34041075906502 -22.83938463313527, -43.3403268425287 -22.83920720652635, -43.3402259392246 -22.83903885953396, -43.34010902090672 -22.838881213431673, -43.33997721356237 -22.838735786437628, -43.339831786568325 -22.838603979093275, -43.33967414046604 -22.838487060775396, -43.339505793473656 -22.838386157471305, -43.339328366864734 -22.83830224093498, -43.33914356935451 -22.83823611932854, -43.33895318064403 -22.838188429439196, -43.33875903428066 -22.838159630546656, -43.338563 -22.838150000000002, -43.33836696571934 -22.838159630546656, -43.33817281935597 -22.838188429439196, -43.33798243064549 -22.83823611932854, -43.33779763313527 -22.83830224093498, -43.337620206526346 -22.838386157471305, -43.337451859533964 -22.838487060775396, -43.337294213431676 -22.838603979093275, -43.33714878643763 -22.838735786437628, -43.33701697909328 -22.838881213431673, -43.3369000607754 -22.83903885953396, -43.336799157471305 -22.83920720652635, -43.33671524093498 -22.83938463313527, -43.336649119328534 -22.839569430645493, -43.33660142943919 -22.83975981935597, -43.336572630546655 -22.839953965719342, -43.336563 -22.84015))" +003664,Inhaúma,Zona Norte,88a8a06189fffff,TRUE,232,-22.87697308,-43.28050311,PM,G,Canal do Cunha,"POLYGON ((-43.2785031079 -22.8769730835, -43.27851273844666 -22.87716911778066, -43.278541537339194 -22.877363264144034, -43.27858922722854 -22.87755365285451, -43.27865534883498 -22.87773845036473, -43.27873926537131 -22.877915876973653, -43.2788401686754 -22.87808422396604, -43.27895708699328 -22.87824187006833, -43.27908889433763 -22.878387297062375, -43.27923432133168 -22.878519104406728, -43.279391967433966 -22.878636022724606, -43.27956031442635 -22.878736926028697, -43.27973774103527 -22.878820842565023, -43.27992253854549 -22.878886964171464, -43.28011292725597 -22.878934654060807, -43.28030707361934 -22.878963452953347, -43.2805031079 -22.8789730835, -43.280699142180666 -22.878963452953347, -43.280893288544036 -22.878934654060807, -43.281083677254514 -22.878886964171464, -43.28126847476474 -22.878820842565023, -43.28144590137366 -22.878736926028697, -43.28161424836604 -22.878636022724606, -43.28177189446833 -22.878519104406728, -43.28191732146237 -22.878387297062375, -43.282049128806726 -22.87824187006833, -43.282166047124605 -22.87808422396604, -43.2822669504287 -22.877915876973653, -43.282350866965025 -22.87773845036473, -43.28241698857147 -22.87755365285451, -43.28246467846081 -22.877363264144034, -43.28249347735335 -22.87716911778066, -43.282503107900006 -22.8769730835, -43.28249347735335 -22.876777049219342, -43.28246467846081 -22.87658290285597, -43.28241698857147 -22.876392514145493, -43.282350866965025 -22.87620771663527, -43.2822669504287 -22.87603029002635, -43.282166047124605 -22.87586194303396, -43.282049128806726 -22.875704296931673, -43.28191732146237 -22.875558869937628, -43.28177189446833 -22.875427062593275, -43.28161424836604 -22.875310144275396, -43.28144590137366 -22.875209240971305, -43.28126847476474 -22.87512532443498, -43.281083677254514 -22.875059202828538, -43.280893288544036 -22.875011512939196, -43.280699142180666 -22.874982714046656, -43.2805031079 -22.874973083500002, -43.28030707361934 -22.874982714046656, -43.28011292725597 -22.875011512939196, -43.27992253854549 -22.875059202828538, -43.27973774103527 -22.87512532443498, -43.27956031442635 -22.875209240971305, -43.279391967433966 -22.875310144275396, -43.27923432133168 -22.875427062593275, -43.27908889433763 -22.875558869937628, -43.27895708699328 -22.875704296931673, -43.2788401686754 -22.87586194303396, -43.27873926537131 -22.87603029002635, -43.27865534883498 -22.87620771663527, -43.27858922722854 -22.876392514145493, -43.278541537339194 -22.87658290285597, -43.27851273844666 -22.876777049219342, -43.2785031079 -22.8769730835))" +003665,Colégio,Zona Norte,88a8a06e5dfffff,,,,,,,, +003666,Colégio,Zona Norte,88a8a06e5dfffff,TRUE,460,-22.838015,-43.339348,PO,G,,"POLYGON ((-43.337348 -22.838015, -43.337357630546656 -22.838211034280658, -43.33738642943919 -22.83840518064403, -43.337434119328535 -22.838595569354506, -43.33750024093498 -22.83878036686473, -43.337584157471305 -22.83895779347365, -43.3376850607754 -22.83912614046604, -43.33780197909328 -22.839283786568327, -43.33793378643763 -22.839429213562372, -43.338079213431676 -22.839561020906725, -43.338236859533964 -22.839677939224604, -43.338405206526346 -22.839778842528695, -43.33858263313527 -22.83986275906502, -43.33876743064549 -22.83992888067146, -43.33895781935597 -22.839976570560804, -43.33915196571934 -22.840005369453344, -43.339348 -22.840014999999998, -43.339544034280664 -22.840005369453344, -43.339738180644034 -22.839976570560804, -43.33992856935451 -22.83992888067146, -43.340113366864735 -22.83986275906502, -43.340290793473656 -22.839778842528695, -43.34045914046604 -22.839677939224604, -43.340616786568326 -22.839561020906725, -43.34076221356237 -22.839429213562372, -43.340894020906724 -22.839283786568327, -43.3410109392246 -22.83912614046604, -43.3411118425287 -22.83895779347365, -43.34119575906502 -22.83878036686473, -43.34126188067147 -22.838595569354506, -43.34130957056081 -22.83840518064403, -43.34133836945335 -22.838211034280658, -43.341348 -22.838015, -43.34133836945335 -22.83781896571934, -43.34130957056081 -22.837624819355966, -43.34126188067147 -22.83743443064549, -43.34119575906502 -22.83724963313527, -43.3411118425287 -22.837072206526347, -43.3410109392246 -22.836903859533958, -43.340894020906724 -22.83674621343167, -43.34076221356237 -22.836600786437625, -43.340616786568326 -22.836468979093272, -43.34045914046604 -22.836352060775393, -43.340290793473656 -22.836251157471303, -43.340113366864735 -22.836167240934977, -43.33992856935451 -22.836101119328536, -43.339738180644034 -22.836053429439193, -43.339544034280664 -22.836024630546653, -43.339348 -22.836015, -43.33915196571934 -22.836024630546653, -43.33895781935597 -22.836053429439193, -43.33876743064549 -22.836101119328536, -43.33858263313527 -22.836167240934977, -43.338405206526346 -22.836251157471303, -43.338236859533964 -22.836352060775393, -43.338079213431676 -22.836468979093272, -43.33793378643763 -22.836600786437625, -43.33780197909328 -22.83674621343167, -43.3376850607754 -22.836903859533958, -43.337584157471305 -22.837072206526347, -43.33750024093498 -22.83724963313527, -43.337434119328535 -22.83743443064549, -43.33738642943919 -22.837624819355966, -43.337357630546656 -22.83781896571934, -43.337348 -22.838015))" +003667,Colégio,Zona Norte,88a8a06e51fffff,,,,,,,, +003668,Colégio,Zona Norte,88a8a06e51fffff,,,,,,,, +003669,Colégio,Zona Norte,88a8a06e4bfffff,,,,,,,, +003670,Colégio,Zona Norte,88a8a06e4bfffff,,,,,,,, +003672,Coelho Neto,Zona Norte,88a8a06e51fffff,,,,,,,, +003673,Acari,Zona Norte,88a8a06e51fffff,,,,,,,, +003674,Freguesia (Jacarepaguá),Jacarepaguá,88a8a06051fffff,,,,,,,, +003675,Inhaúma,Zona Norte,88a8a0618dfffff,,,,,,,, +003676,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003677,Tomás Coelho,Zona Norte,88a8a06199fffff,,,,,,,, +003678,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e1fffff,,,,,,,, +003679,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003680,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003681,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003682,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003683,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003684,Acari,Zona Norte,88a8a06e53fffff,,,,,,,, +003685,Acari,Zona Norte,88a8a06e53fffff,,,,,,,, +003686,Colégio,Zona Norte,88a8a06e4bfffff,,,,,,,, +003687,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003688,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003689,Inhaúma,Zona Norte,88a8a0618dfffff,,,,,,,, +003690,Del Castilho,Zona Norte,88a8a061ebfffff,,,,,,,, +003692,Acari,Zona Norte,88a8a06e53fffff,,,,,,,, +003693,Coelho Neto,Zona Norte,88a8a06e53fffff,,,,,,,, +003694,Freguesia (Jacarepaguá),Jacarepaguá,88a8a062e5fffff,TRUE,189,-22.93988094,-43.33986073,PM,J,Rio do Anil,"POLYGON ((-43.337860733199996 -22.9398809409, -43.33787036374665 -22.94007697518066, -43.33789916263919 -22.940271121544033, -43.33794685252853 -22.940461510254508, -43.338012974134976 -22.94064630776473, -43.3380968906713 -22.94082373437365, -43.3381977939754 -22.94099208136604, -43.338314712293275 -22.94114972746833, -43.33844651963763 -22.941295154462374, -43.338591946631674 -22.941426961806727, -43.33874959273396 -22.941543880124605, -43.33891793972634 -22.941644783428696, -43.339095366335265 -22.941728699965022, -43.33928016384549 -22.941794821571463, -43.339470552555966 -22.941842511460806, -43.339664698919336 -22.941871310353346, -43.3398607332 -22.9418809409, -43.34005676748066 -22.941871310353346, -43.34025091384403 -22.941842511460806, -43.34044130255451 -22.941794821571463, -43.34062610006473 -22.941728699965022, -43.34080352667365 -22.941644783428696, -43.340971873666035 -22.941543880124605, -43.34112951976832 -22.941426961806727, -43.34127494676237 -22.941295154462374, -43.34140675410672 -22.94114972746833, -43.3415236724246 -22.94099208136604, -43.341624575728694 -22.94082373437365, -43.34170849226502 -22.94064630776473, -43.341774613871465 -22.940461510254508, -43.34182230376081 -22.940271121544033, -43.341851102653344 -22.94007697518066, -43.3418607332 -22.9398809409, -43.341851102653344 -22.93968490661934, -43.34182230376081 -22.939490760255968, -43.341774613871465 -22.939300371545492, -43.34170849226502 -22.93911557403527, -43.341624575728694 -22.93893814742635, -43.3415236724246 -22.93876980043396, -43.34140675410672 -22.938612154331672, -43.34127494676237 -22.938466727337627, -43.34112951976832 -22.938334919993274, -43.340971873666035 -22.938218001675395, -43.34080352667365 -22.938117098371304, -43.34062610006473 -22.938033181834978, -43.34044130255451 -22.937967060228537, -43.34025091384403 -22.937919370339195, -43.34005676748066 -22.937890571446655, -43.3398607332 -22.9378809409, -43.339664698919336 -22.937890571446655, -43.339470552555966 -22.937919370339195, -43.33928016384549 -22.937967060228537, -43.339095366335265 -22.938033181834978, -43.33891793972634 -22.938117098371304, -43.33874959273396 -22.938218001675395, -43.338591946631674 -22.938334919993274, -43.33844651963763 -22.938466727337627, -43.338314712293275 -22.938612154331672, -43.3381977939754 -22.93876980043396, -43.3380968906713 -22.93893814742635, -43.338012974134976 -22.93911557403527, -43.33794685252853 -22.939300371545492, -43.33789916263919 -22.939490760255968, -43.33787036374665 -22.93968490661934, -43.337860733199996 -22.9398809409))" +003695,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +003696,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +003698,Galeão,Ilhas,88a8a06f61fffff,,,,,,,, +003699,Copacabana,Zona Sul,88a8a078ebfffff,,,,,,,, +003701,São Conrado,Zona Sul,88a8a071a7fffff,,,,,,,, +003702,Barra da Tijuca,Barra da Tijuca,88a8a0744dfffff,,,,,,,, +003703,Recreio dos Bandeirantes,Barra da Tijuca,88a8a07449fffff,,,,,,,, +003708,Madureira,Zona Norte,88a8a0608dfffff,,,,,,,, +003709,Madureira,Zona Norte,88a8a0608dfffff,,,,,,,, +003710,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +003711,Madureira,Zona Norte,88a8a06085fffff,,,,,,,, +003712,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +003713,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +003714,Madureira,Zona Norte,88a8a06081fffff,,,,,,,, +003715,Madureira,Zona Norte,88a8a06081fffff,,,,,,,, +003716,Madureira,Zona Norte,88a8a06089fffff,,,,,,,, +003717,Madureira,Zona Norte,88a8a06089fffff,,,,,,,, +003718,Vila Valqueire,Jacarepaguá,88a8a060d5fffff,,,,,,,, +003719,Osvaldo Cruz,Zona Norte,88a8a0608bfffff,,,,,,,, +003720,Osvaldo Cruz,Zona Norte,88a8a0608bfffff,,,,,,,, +003721,Osvaldo Cruz,Zona Norte,88a8a0608bfffff,,,,,,,, +003722,Osvaldo Cruz,Zona Norte,88a8a0608bfffff,,,,,,,, +003723,Osvaldo Cruz,Zona Norte,88a8a0608bfffff,,,,,,,, +003724,Osvaldo Cruz,Zona Norte,88a8a06089fffff,,,,,,,, +003725,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +003726,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +003727,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +003728,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +003729,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +003730,Cascadura,Zona Norte,88a8a0608dfffff,,,,,,,, +003731,Cascadura,Zona Norte,88a8a060e3fffff,TRUE,426,-22.88217089,-43.33335869,PO,G,,"POLYGON ((-43.3313586867533 -22.8821708890514, -43.331368317299955 -22.88236692333206, -43.33139711619249 -22.882561069695434, -43.331444806081834 -22.88275145840591, -43.33151092768828 -22.882936255916132, -43.331594844224604 -22.883113682525053, -43.3316957475287 -22.883282029517442, -43.33181266584658 -22.88343967561973, -43.33194447319093 -22.883585102613775, -43.332089900184975 -22.883716909958128, -43.33224754628726 -22.883833828276007, -43.332415893279645 -22.883934731580098, -43.332593319888566 -22.884018648116424, -43.33277811739879 -22.884084769722865, -43.33296850610927 -22.884132459612207, -43.33316265247264 -22.884161258504747, -43.3333586867533 -22.8841708890514, -43.33355472103396 -22.884161258504747, -43.33374886739733 -22.884132459612207, -43.33393925610781 -22.884084769722865, -43.334124053618034 -22.884018648116424, -43.334301480226955 -22.883934731580098, -43.33446982721934 -22.883833828276007, -43.334627473321625 -22.883716909958128, -43.33477290031567 -22.883585102613775, -43.33490470766002 -22.88343967561973, -43.3350216259779 -22.883282029517442, -43.335122529281996 -22.883113682525053, -43.33520644581832 -22.882936255916132, -43.33527256742477 -22.88275145840591, -43.33532025731411 -22.882561069695434, -43.335349056206645 -22.88236692333206, -43.3353586867533 -22.8821708890514, -43.335349056206645 -22.881974854770743, -43.33532025731411 -22.88178070840737, -43.33527256742477 -22.881590319696894, -43.33520644581832 -22.88140552218667, -43.335122529281996 -22.88122809557775, -43.3350216259779 -22.88105974858536, -43.33490470766002 -22.880902102483073, -43.33477290031567 -22.880756675489028, -43.334627473321625 -22.880624868144675, -43.33446982721934 -22.880507949826796, -43.334301480226955 -22.880407046522706, -43.334124053618034 -22.88032312998638, -43.33393925610781 -22.88025700837994, -43.33374886739733 -22.880209318490596, -43.33355472103396 -22.880180519598056, -43.3333586867533 -22.880170889051403, -43.33316265247264 -22.880180519598056, -43.33296850610927 -22.880209318490596, -43.33277811739879 -22.88025700837994, -43.332593319888566 -22.88032312998638, -43.332415893279645 -22.880407046522706, -43.33224754628726 -22.880507949826796, -43.332089900184975 -22.880624868144675, -43.33194447319093 -22.880756675489028, -43.33181266584658 -22.880902102483073, -43.3316957475287 -22.88105974858536, -43.331594844224604 -22.88122809557775, -43.33151092768828 -22.88140552218667, -43.331444806081834 -22.881590319696894, -43.33139711619249 -22.88178070840737, -43.331368317299955 -22.881974854770743, -43.3313586867533 -22.8821708890514))" +003732,Cascadura,Zona Norte,88a8a060e3fffff,TRUE,426,-22.88217089,-43.33335869,PO,G,,"POLYGON ((-43.3313586867533 -22.8821708890514, -43.331368317299955 -22.88236692333206, -43.33139711619249 -22.882561069695434, -43.331444806081834 -22.88275145840591, -43.33151092768828 -22.882936255916132, -43.331594844224604 -22.883113682525053, -43.3316957475287 -22.883282029517442, -43.33181266584658 -22.88343967561973, -43.33194447319093 -22.883585102613775, -43.332089900184975 -22.883716909958128, -43.33224754628726 -22.883833828276007, -43.332415893279645 -22.883934731580098, -43.332593319888566 -22.884018648116424, -43.33277811739879 -22.884084769722865, -43.33296850610927 -22.884132459612207, -43.33316265247264 -22.884161258504747, -43.3333586867533 -22.8841708890514, -43.33355472103396 -22.884161258504747, -43.33374886739733 -22.884132459612207, -43.33393925610781 -22.884084769722865, -43.334124053618034 -22.884018648116424, -43.334301480226955 -22.883934731580098, -43.33446982721934 -22.883833828276007, -43.334627473321625 -22.883716909958128, -43.33477290031567 -22.883585102613775, -43.33490470766002 -22.88343967561973, -43.3350216259779 -22.883282029517442, -43.335122529281996 -22.883113682525053, -43.33520644581832 -22.882936255916132, -43.33527256742477 -22.88275145840591, -43.33532025731411 -22.882561069695434, -43.335349056206645 -22.88236692333206, -43.3353586867533 -22.8821708890514, -43.335349056206645 -22.881974854770743, -43.33532025731411 -22.88178070840737, -43.33527256742477 -22.881590319696894, -43.33520644581832 -22.88140552218667, -43.335122529281996 -22.88122809557775, -43.3350216259779 -22.88105974858536, -43.33490470766002 -22.880902102483073, -43.33477290031567 -22.880756675489028, -43.334627473321625 -22.880624868144675, -43.33446982721934 -22.880507949826796, -43.334301480226955 -22.880407046522706, -43.334124053618034 -22.88032312998638, -43.33393925610781 -22.88025700837994, -43.33374886739733 -22.880209318490596, -43.33355472103396 -22.880180519598056, -43.3333586867533 -22.880170889051403, -43.33316265247264 -22.880180519598056, -43.33296850610927 -22.880209318490596, -43.33277811739879 -22.88025700837994, -43.332593319888566 -22.88032312998638, -43.332415893279645 -22.880407046522706, -43.33224754628726 -22.880507949826796, -43.332089900184975 -22.880624868144675, -43.33194447319093 -22.880756675489028, -43.33181266584658 -22.880902102483073, -43.3316957475287 -22.88105974858536, -43.331594844224604 -22.88122809557775, -43.33151092768828 -22.88140552218667, -43.331444806081834 -22.881590319696894, -43.33139711619249 -22.88178070840737, -43.331368317299955 -22.881974854770743, -43.3313586867533 -22.8821708890514))" +003733,Cascadura,Zona Norte,88a8a060e3fffff,TRUE,426,-22.88217089,-43.33335869,PO,G,,"POLYGON ((-43.3313586867533 -22.8821708890514, -43.331368317299955 -22.88236692333206, -43.33139711619249 -22.882561069695434, -43.331444806081834 -22.88275145840591, -43.33151092768828 -22.882936255916132, -43.331594844224604 -22.883113682525053, -43.3316957475287 -22.883282029517442, -43.33181266584658 -22.88343967561973, -43.33194447319093 -22.883585102613775, -43.332089900184975 -22.883716909958128, -43.33224754628726 -22.883833828276007, -43.332415893279645 -22.883934731580098, -43.332593319888566 -22.884018648116424, -43.33277811739879 -22.884084769722865, -43.33296850610927 -22.884132459612207, -43.33316265247264 -22.884161258504747, -43.3333586867533 -22.8841708890514, -43.33355472103396 -22.884161258504747, -43.33374886739733 -22.884132459612207, -43.33393925610781 -22.884084769722865, -43.334124053618034 -22.884018648116424, -43.334301480226955 -22.883934731580098, -43.33446982721934 -22.883833828276007, -43.334627473321625 -22.883716909958128, -43.33477290031567 -22.883585102613775, -43.33490470766002 -22.88343967561973, -43.3350216259779 -22.883282029517442, -43.335122529281996 -22.883113682525053, -43.33520644581832 -22.882936255916132, -43.33527256742477 -22.88275145840591, -43.33532025731411 -22.882561069695434, -43.335349056206645 -22.88236692333206, -43.3353586867533 -22.8821708890514, -43.335349056206645 -22.881974854770743, -43.33532025731411 -22.88178070840737, -43.33527256742477 -22.881590319696894, -43.33520644581832 -22.88140552218667, -43.335122529281996 -22.88122809557775, -43.3350216259779 -22.88105974858536, -43.33490470766002 -22.880902102483073, -43.33477290031567 -22.880756675489028, -43.334627473321625 -22.880624868144675, -43.33446982721934 -22.880507949826796, -43.334301480226955 -22.880407046522706, -43.334124053618034 -22.88032312998638, -43.33393925610781 -22.88025700837994, -43.33374886739733 -22.880209318490596, -43.33355472103396 -22.880180519598056, -43.3333586867533 -22.880170889051403, -43.33316265247264 -22.880180519598056, -43.33296850610927 -22.880209318490596, -43.33277811739879 -22.88025700837994, -43.332593319888566 -22.88032312998638, -43.332415893279645 -22.880407046522706, -43.33224754628726 -22.880507949826796, -43.332089900184975 -22.880624868144675, -43.33194447319093 -22.880756675489028, -43.33181266584658 -22.880902102483073, -43.3316957475287 -22.88105974858536, -43.331594844224604 -22.88122809557775, -43.33151092768828 -22.88140552218667, -43.331444806081834 -22.881590319696894, -43.33139711619249 -22.88178070840737, -43.331368317299955 -22.881974854770743, -43.3313586867533 -22.8821708890514))" +003734,Cascadura,Zona Norte,88a8a060e3fffff,TRUE,426,-22.88217089,-43.33335869,PO,G,,"POLYGON ((-43.3313586867533 -22.8821708890514, -43.331368317299955 -22.88236692333206, -43.33139711619249 -22.882561069695434, -43.331444806081834 -22.88275145840591, -43.33151092768828 -22.882936255916132, -43.331594844224604 -22.883113682525053, -43.3316957475287 -22.883282029517442, -43.33181266584658 -22.88343967561973, -43.33194447319093 -22.883585102613775, -43.332089900184975 -22.883716909958128, -43.33224754628726 -22.883833828276007, -43.332415893279645 -22.883934731580098, -43.332593319888566 -22.884018648116424, -43.33277811739879 -22.884084769722865, -43.33296850610927 -22.884132459612207, -43.33316265247264 -22.884161258504747, -43.3333586867533 -22.8841708890514, -43.33355472103396 -22.884161258504747, -43.33374886739733 -22.884132459612207, -43.33393925610781 -22.884084769722865, -43.334124053618034 -22.884018648116424, -43.334301480226955 -22.883934731580098, -43.33446982721934 -22.883833828276007, -43.334627473321625 -22.883716909958128, -43.33477290031567 -22.883585102613775, -43.33490470766002 -22.88343967561973, -43.3350216259779 -22.883282029517442, -43.335122529281996 -22.883113682525053, -43.33520644581832 -22.882936255916132, -43.33527256742477 -22.88275145840591, -43.33532025731411 -22.882561069695434, -43.335349056206645 -22.88236692333206, -43.3353586867533 -22.8821708890514, -43.335349056206645 -22.881974854770743, -43.33532025731411 -22.88178070840737, -43.33527256742477 -22.881590319696894, -43.33520644581832 -22.88140552218667, -43.335122529281996 -22.88122809557775, -43.3350216259779 -22.88105974858536, -43.33490470766002 -22.880902102483073, -43.33477290031567 -22.880756675489028, -43.334627473321625 -22.880624868144675, -43.33446982721934 -22.880507949826796, -43.334301480226955 -22.880407046522706, -43.334124053618034 -22.88032312998638, -43.33393925610781 -22.88025700837994, -43.33374886739733 -22.880209318490596, -43.33355472103396 -22.880180519598056, -43.3333586867533 -22.880170889051403, -43.33316265247264 -22.880180519598056, -43.33296850610927 -22.880209318490596, -43.33277811739879 -22.88025700837994, -43.332593319888566 -22.88032312998638, -43.332415893279645 -22.880407046522706, -43.33224754628726 -22.880507949826796, -43.332089900184975 -22.880624868144675, -43.33194447319093 -22.880756675489028, -43.33181266584658 -22.880902102483073, -43.3316957475287 -22.88105974858536, -43.331594844224604 -22.88122809557775, -43.33151092768828 -22.88140552218667, -43.331444806081834 -22.881590319696894, -43.33139711619249 -22.88178070840737, -43.331368317299955 -22.881974854770743, -43.3313586867533 -22.8821708890514))" +003735,Campinho,Zona Norte,88a8a0608dfffff,,,,,,,, +003736,Osvaldo Cruz,Zona Norte,88a8a06089fffff,,,,,,,, +003737,Campinho,Zona Norte,88a8a060c7fffff,,,,,,,, +003738,Ipanema,Zona Sul,88a8a078c9fffff,,,,,,,, +003742,Taquara,Jacarepaguá,88a8a06297fffff,,,,,,,, +003743,Taquara,Jacarepaguá,88a8a06297fffff,,,,,,,, +003744,Taquara,Jacarepaguá,88a8a06297fffff,,,,,,,, +003745,Taquara,Jacarepaguá,88a8a06297fffff,,,,,,,, +003746,Botafogo,Zona Sul,88a8a078a3fffff,,,,,,,, +003747,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +003748,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +003749,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +003750,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +003751,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +003752,Pilares,Zona Norte,88a8a061c3fffff,TRUE,31,-22.88115518,-43.28563827,PM,G,Canal do Cunha,"POLYGON ((-43.2836382678 -22.8811551815, -43.28364789834666 -22.881351215780658, -43.283676697239194 -22.88154536214403, -43.28372438712854 -22.881735750854507, -43.28379050873498 -22.88192054836473, -43.28387442527131 -22.88209797497365, -43.2839753285754 -22.88226632196604, -43.28409224689328 -22.882423968068327, -43.28422405423763 -22.882569395062372, -43.28436948123168 -22.882701202406725, -43.284527127333966 -22.882818120724604, -43.28469547432635 -22.882919024028695, -43.28487290093527 -22.88300294056502, -43.28505769844549 -22.88306906217146, -43.28524808715597 -22.883116752060804, -43.28544223351934 -22.883145550953344, -43.2856382678 -22.883155181499998, -43.285834302080666 -22.883145550953344, -43.286028448444036 -22.883116752060804, -43.286218837154514 -22.88306906217146, -43.28640363466474 -22.88300294056502, -43.28658106127366 -22.882919024028695, -43.28674940826604 -22.882818120724604, -43.28690705436833 -22.882701202406725, -43.28705248136237 -22.882569395062372, -43.287184288706726 -22.882423968068327, -43.287301207024605 -22.88226632196604, -43.2874021103287 -22.88209797497365, -43.287486026865025 -22.88192054836473, -43.28755214847147 -22.881735750854507, -43.28759983836081 -22.88154536214403, -43.28762863725335 -22.881351215780658, -43.287638267800006 -22.8811551815, -43.28762863725335 -22.88095914721934, -43.28759983836081 -22.880765000855966, -43.28755214847147 -22.88057461214549, -43.287486026865025 -22.88038981463527, -43.2874021103287 -22.880212388026347, -43.287301207024605 -22.88004404103396, -43.287184288706726 -22.87988639493167, -43.28705248136237 -22.879740967937625, -43.28690705436833 -22.879609160593272, -43.28674940826604 -22.879492242275393, -43.28658106127366 -22.879391338971303, -43.28640363466474 -22.879307422434977, -43.286218837154514 -22.879241300828536, -43.286028448444036 -22.879193610939193, -43.285834302080666 -22.879164812046653, -43.2856382678 -22.8791551815, -43.28544223351934 -22.879164812046653, -43.28524808715597 -22.879193610939193, -43.28505769844549 -22.879241300828536, -43.28487290093527 -22.879307422434977, -43.28469547432635 -22.879391338971303, -43.284527127333966 -22.879492242275393, -43.28436948123168 -22.879609160593272, -43.28422405423763 -22.879740967937625, -43.28409224689328 -22.87988639493167, -43.2839753285754 -22.88004404103396, -43.28387442527131 -22.880212388026347, -43.28379050873498 -22.88038981463527, -43.28372438712854 -22.88057461214549, -43.283676697239194 -22.880765000855966, -43.28364789834666 -22.88095914721934, -43.2836382678 -22.8811551815))" +003753,Pilares,Zona Norte,88a8a061c3fffff,TRUE,31,-22.88115518,-43.28563827,PM,G,Canal do Cunha,"POLYGON ((-43.2836382678 -22.8811551815, -43.28364789834666 -22.881351215780658, -43.283676697239194 -22.88154536214403, -43.28372438712854 -22.881735750854507, -43.28379050873498 -22.88192054836473, -43.28387442527131 -22.88209797497365, -43.2839753285754 -22.88226632196604, -43.28409224689328 -22.882423968068327, -43.28422405423763 -22.882569395062372, -43.28436948123168 -22.882701202406725, -43.284527127333966 -22.882818120724604, -43.28469547432635 -22.882919024028695, -43.28487290093527 -22.88300294056502, -43.28505769844549 -22.88306906217146, -43.28524808715597 -22.883116752060804, -43.28544223351934 -22.883145550953344, -43.2856382678 -22.883155181499998, -43.285834302080666 -22.883145550953344, -43.286028448444036 -22.883116752060804, -43.286218837154514 -22.88306906217146, -43.28640363466474 -22.88300294056502, -43.28658106127366 -22.882919024028695, -43.28674940826604 -22.882818120724604, -43.28690705436833 -22.882701202406725, -43.28705248136237 -22.882569395062372, -43.287184288706726 -22.882423968068327, -43.287301207024605 -22.88226632196604, -43.2874021103287 -22.88209797497365, -43.287486026865025 -22.88192054836473, -43.28755214847147 -22.881735750854507, -43.28759983836081 -22.88154536214403, -43.28762863725335 -22.881351215780658, -43.287638267800006 -22.8811551815, -43.28762863725335 -22.88095914721934, -43.28759983836081 -22.880765000855966, -43.28755214847147 -22.88057461214549, -43.287486026865025 -22.88038981463527, -43.2874021103287 -22.880212388026347, -43.287301207024605 -22.88004404103396, -43.287184288706726 -22.87988639493167, -43.28705248136237 -22.879740967937625, -43.28690705436833 -22.879609160593272, -43.28674940826604 -22.879492242275393, -43.28658106127366 -22.879391338971303, -43.28640363466474 -22.879307422434977, -43.286218837154514 -22.879241300828536, -43.286028448444036 -22.879193610939193, -43.285834302080666 -22.879164812046653, -43.2856382678 -22.8791551815, -43.28544223351934 -22.879164812046653, -43.28524808715597 -22.879193610939193, -43.28505769844549 -22.879241300828536, -43.28487290093527 -22.879307422434977, -43.28469547432635 -22.879391338971303, -43.284527127333966 -22.879492242275393, -43.28436948123168 -22.879609160593272, -43.28422405423763 -22.879740967937625, -43.28409224689328 -22.87988639493167, -43.2839753285754 -22.88004404103396, -43.28387442527131 -22.880212388026347, -43.28379050873498 -22.88038981463527, -43.28372438712854 -22.88057461214549, -43.283676697239194 -22.880765000855966, -43.28364789834666 -22.88095914721934, -43.2836382678 -22.8811551815))" +003754,Cachambi,Zona Norte,88a8a061c1fffff,,,,,,,, +003755,Cachambi,Zona Norte,88a8a061c1fffff,,,,,,,, +003756,Pilares,Zona Norte,88a8a061ddfffff,,,,,,,, +003757,Pilares,Zona Norte,88a8a061ddfffff,,,,,,,, +003758,Encantado,Zona Norte,88a8a06037fffff,TRUE,447,-22.895417,-43.302948,PO,G,,"POLYGON ((-43.300948 -22.895417, -43.300957630546655 -22.895613034280657, -43.30098642943919 -22.89580718064403, -43.301034119328534 -22.895997569354506, -43.30110024093498 -22.89618236686473, -43.301184157471305 -22.89635979347365, -43.3012850607754 -22.89652814046604, -43.30140197909328 -22.896685786568327, -43.30153378643763 -22.896831213562372, -43.301679213431676 -22.896963020906725, -43.301836859533964 -22.897079939224604, -43.302005206526346 -22.897180842528694, -43.30218263313527 -22.89726475906502, -43.30236743064549 -22.89733088067146, -43.30255781935597 -22.897378570560804, -43.30275196571934 -22.897407369453344, -43.302948 -22.897416999999997, -43.30314403428066 -22.897407369453344, -43.30333818064403 -22.897378570560804, -43.30352856935451 -22.89733088067146, -43.303713366864734 -22.89726475906502, -43.303890793473656 -22.897180842528694, -43.30405914046604 -22.897079939224604, -43.304216786568325 -22.896963020906725, -43.30436221356237 -22.896831213562372, -43.30449402090672 -22.896685786568327, -43.3046109392246 -22.89652814046604, -43.3047118425287 -22.89635979347365, -43.30479575906502 -22.89618236686473, -43.30486188067147 -22.895997569354506, -43.30490957056081 -22.89580718064403, -43.304938369453346 -22.895613034280657, -43.304948 -22.895417, -43.304938369453346 -22.89522096571934, -43.30490957056081 -22.895026819355966, -43.30486188067147 -22.89483643064549, -43.30479575906502 -22.89465163313527, -43.3047118425287 -22.894474206526347, -43.3046109392246 -22.894305859533958, -43.30449402090672 -22.89414821343167, -43.30436221356237 -22.894002786437625, -43.304216786568325 -22.893870979093272, -43.30405914046604 -22.893754060775393, -43.303890793473656 -22.893653157471302, -43.303713366864734 -22.893569240934976, -43.30352856935451 -22.893503119328535, -43.30333818064403 -22.893455429439193, -43.30314403428066 -22.893426630546653, -43.302948 -22.893417, -43.30275196571934 -22.893426630546653, -43.30255781935597 -22.893455429439193, -43.30236743064549 -22.893503119328535, -43.30218263313527 -22.893569240934976, -43.302005206526346 -22.893653157471302, -43.301836859533964 -22.893754060775393, -43.301679213431676 -22.893870979093272, -43.30153378643763 -22.894002786437625, -43.30140197909328 -22.89414821343167, -43.3012850607754 -22.894305859533958, -43.301184157471305 -22.894474206526347, -43.30110024093498 -22.89465163313527, -43.301034119328534 -22.89483643064549, -43.30098642943919 -22.895026819355966, -43.300957630546655 -22.89522096571934, -43.300948 -22.895417))" +003759,Engenho de Dentro,Zona Norte,88a8a06037fffff,,,,,,,, +003760,Encantado,Zona Norte,88a8a06037fffff,,,,,,,, +003761,Encantado,Zona Norte,88a8a06037fffff,,,,,,,, +003762,Encantado,Zona Norte,88a8a06037fffff,,,,,,,, +003763,Encantado,Zona Norte,88a8a06037fffff,,,,,,,, +003764,Piedade,Zona Norte,88a8a06033fffff,TRUE,410,-22.89213106,-43.30728996,PO,G,,"POLYGON ((-43.305289964127894 -22.892131061425, -43.30529959467455 -22.89232709570566, -43.30532839356709 -22.892521242069034, -43.30537608345643 -22.89271163077951, -43.305442205062874 -22.89289642828973, -43.3055261215992 -22.893073854898653, -43.305627024903295 -22.89324220189104, -43.305743943221174 -22.89339984799333, -43.30587575056553 -22.893545274987375, -43.30602117755957 -22.893677082331727, -43.30617882366186 -22.893794000649606, -43.30634717065424 -22.893894903953697, -43.30652459726316 -22.893978820490023, -43.306709394773385 -22.894044942096464, -43.306899783483864 -22.894092631985806, -43.307093929847234 -22.894121430878347, -43.3072899641279 -22.894131061425, -43.30748599840856 -22.894121430878347, -43.30768014477193 -22.894092631985806, -43.30787053348241 -22.894044942096464, -43.30805533099263 -22.893978820490023, -43.30823275760155 -22.893894903953697, -43.30840110459393 -22.893794000649606, -43.30855875069622 -22.893677082331727, -43.30870417769027 -22.893545274987375, -43.30883598503462 -22.89339984799333, -43.3089529033525 -22.89324220189104, -43.30905380665659 -22.893073854898653, -43.30913772319292 -22.89289642828973, -43.30920384479936 -22.89271163077951, -43.309251534688705 -22.892521242069034, -43.30928033358124 -22.89232709570566, -43.3092899641279 -22.892131061425, -43.30928033358124 -22.891935027144342, -43.309251534688705 -22.89174088078097, -43.30920384479936 -22.891550492070493, -43.30913772319292 -22.89136569456027, -43.30905380665659 -22.89118826795135, -43.3089529033525 -22.89101992095896, -43.30883598503462 -22.890862274856673, -43.30870417769027 -22.890716847862628, -43.30855875069622 -22.890585040518275, -43.30840110459393 -22.890468122200396, -43.30823275760155 -22.890367218896305, -43.30805533099263 -22.89028330235998, -43.30787053348241 -22.890217180753538, -43.30768014477193 -22.890169490864196, -43.30748599840856 -22.890140691971656, -43.3072899641279 -22.890131061425002, -43.307093929847234 -22.890140691971656, -43.306899783483864 -22.890169490864196, -43.306709394773385 -22.890217180753538, -43.30652459726316 -22.89028330235998, -43.30634717065424 -22.890367218896305, -43.30617882366186 -22.890468122200396, -43.30602117755957 -22.890585040518275, -43.30587575056553 -22.890716847862628, -43.305743943221174 -22.890862274856673, -43.305627024903295 -22.89101992095896, -43.3055261215992 -22.89118826795135, -43.305442205062874 -22.89136569456027, -43.30537608345643 -22.891550492070493, -43.30532839356709 -22.89174088078097, -43.30529959467455 -22.891935027144342, -43.305289964127894 -22.892131061425))" +003765,Encantado,Zona Norte,88a8a06033fffff,TRUE,410,-22.89213106,-43.30728996,PO,G,,"POLYGON ((-43.305289964127894 -22.892131061425, -43.30529959467455 -22.89232709570566, -43.30532839356709 -22.892521242069034, -43.30537608345643 -22.89271163077951, -43.305442205062874 -22.89289642828973, -43.3055261215992 -22.893073854898653, -43.305627024903295 -22.89324220189104, -43.305743943221174 -22.89339984799333, -43.30587575056553 -22.893545274987375, -43.30602117755957 -22.893677082331727, -43.30617882366186 -22.893794000649606, -43.30634717065424 -22.893894903953697, -43.30652459726316 -22.893978820490023, -43.306709394773385 -22.894044942096464, -43.306899783483864 -22.894092631985806, -43.307093929847234 -22.894121430878347, -43.3072899641279 -22.894131061425, -43.30748599840856 -22.894121430878347, -43.30768014477193 -22.894092631985806, -43.30787053348241 -22.894044942096464, -43.30805533099263 -22.893978820490023, -43.30823275760155 -22.893894903953697, -43.30840110459393 -22.893794000649606, -43.30855875069622 -22.893677082331727, -43.30870417769027 -22.893545274987375, -43.30883598503462 -22.89339984799333, -43.3089529033525 -22.89324220189104, -43.30905380665659 -22.893073854898653, -43.30913772319292 -22.89289642828973, -43.30920384479936 -22.89271163077951, -43.309251534688705 -22.892521242069034, -43.30928033358124 -22.89232709570566, -43.3092899641279 -22.892131061425, -43.30928033358124 -22.891935027144342, -43.309251534688705 -22.89174088078097, -43.30920384479936 -22.891550492070493, -43.30913772319292 -22.89136569456027, -43.30905380665659 -22.89118826795135, -43.3089529033525 -22.89101992095896, -43.30883598503462 -22.890862274856673, -43.30870417769027 -22.890716847862628, -43.30855875069622 -22.890585040518275, -43.30840110459393 -22.890468122200396, -43.30823275760155 -22.890367218896305, -43.30805533099263 -22.89028330235998, -43.30787053348241 -22.890217180753538, -43.30768014477193 -22.890169490864196, -43.30748599840856 -22.890140691971656, -43.3072899641279 -22.890131061425002, -43.307093929847234 -22.890140691971656, -43.306899783483864 -22.890169490864196, -43.306709394773385 -22.890217180753538, -43.30652459726316 -22.89028330235998, -43.30634717065424 -22.890367218896305, -43.30617882366186 -22.890468122200396, -43.30602117755957 -22.890585040518275, -43.30587575056553 -22.890716847862628, -43.305743943221174 -22.890862274856673, -43.305627024903295 -22.89101992095896, -43.3055261215992 -22.89118826795135, -43.305442205062874 -22.89136569456027, -43.30537608345643 -22.891550492070493, -43.30532839356709 -22.89174088078097, -43.30529959467455 -22.891935027144342, -43.305289964127894 -22.892131061425))" +003766,Abolição,Zona Norte,88a8a061d9fffff,,,,,,,, +003767,Piedade,Zona Norte,88a8a061d9fffff,,,,,,,, +003768,Leblon,Zona Sul,88a8a07ab1fffff,,,,,,,, +003769,Leblon,Zona Sul,88a8a07ab1fffff,,,,,,,, +003774,Engenho de Dentro,Zona Norte,88a8a061cbfffff,,,,,,,, +003775,Engenho de Dentro,Zona Norte,88a8a061cbfffff,,,,,,,, +003776,Engenho de Dentro,Zona Norte,88a8a061cbfffff,,,,,,,, +003777,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,152,-22.89504469,-43.29443455,PM,G,Canal do Cunha,"POLYGON ((-43.2924345485 -22.8950446886, -43.292444179046655 -22.895240722880658, -43.29247297793919 -22.89543486924403, -43.29252066782853 -22.895625257954507, -43.29258678943498 -22.89581005546473, -43.292670705971304 -22.89598748207365, -43.2927716092754 -22.89615582906604, -43.29288852759328 -22.896313475168327, -43.29302033493763 -22.896458902162372, -43.293165761931675 -22.896590709506725, -43.29332340803396 -22.896707627824604, -43.293491755026345 -22.896808531128695, -43.293669181635266 -22.89689244766502, -43.29385397914549 -22.89695856927146, -43.29404436785597 -22.897006259160804, -43.29423851421934 -22.897035058053344, -43.2944345485 -22.897044688599998, -43.29463058278066 -22.897035058053344, -43.29482472914403 -22.897006259160804, -43.29501511785451 -22.89695856927146, -43.295199915364734 -22.89689244766502, -43.295377341973655 -22.896808531128695, -43.29554568896604 -22.896707627824604, -43.295703335068325 -22.896590709506725, -43.29584876206237 -22.896458902162372, -43.29598056940672 -22.896313475168327, -43.2960974877246 -22.89615582906604, -43.296198391028696 -22.89598748207365, -43.29628230756502 -22.89581005546473, -43.296348429171466 -22.895625257954507, -43.29639611906081 -22.89543486924403, -43.296424917953345 -22.895240722880658, -43.2964345485 -22.8950446886, -43.296424917953345 -22.89484865431934, -43.29639611906081 -22.894654507955966, -43.296348429171466 -22.89446411924549, -43.29628230756502 -22.89427932173527, -43.296198391028696 -22.894101895126347, -43.2960974877246 -22.89393354813396, -43.29598056940672 -22.89377590203167, -43.29584876206237 -22.893630475037625, -43.295703335068325 -22.893498667693272, -43.29554568896604 -22.893381749375393, -43.295377341973655 -22.893280846071303, -43.295199915364734 -22.893196929534977, -43.29501511785451 -22.893130807928536, -43.29482472914403 -22.893083118039193, -43.29463058278066 -22.893054319146653, -43.2944345485 -22.8930446886, -43.29423851421934 -22.893054319146653, -43.29404436785597 -22.893083118039193, -43.29385397914549 -22.893130807928536, -43.293669181635266 -22.893196929534977, -43.293491755026345 -22.893280846071303, -43.29332340803396 -22.893381749375393, -43.293165761931675 -22.893498667693272, -43.29302033493763 -22.893630475037625, -43.29288852759328 -22.89377590203167, -43.2927716092754 -22.89393354813396, -43.292670705971304 -22.894101895126347, -43.29258678943498 -22.89427932173527, -43.29252066782853 -22.89446411924549, -43.29247297793919 -22.894654507955966, -43.292444179046655 -22.89484865431934, -43.2924345485 -22.8950446886))" +003778,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,152,-22.89504469,-43.29443455,PM,G,Canal do Cunha,"POLYGON ((-43.2924345485 -22.8950446886, -43.292444179046655 -22.895240722880658, -43.29247297793919 -22.89543486924403, -43.29252066782853 -22.895625257954507, -43.29258678943498 -22.89581005546473, -43.292670705971304 -22.89598748207365, -43.2927716092754 -22.89615582906604, -43.29288852759328 -22.896313475168327, -43.29302033493763 -22.896458902162372, -43.293165761931675 -22.896590709506725, -43.29332340803396 -22.896707627824604, -43.293491755026345 -22.896808531128695, -43.293669181635266 -22.89689244766502, -43.29385397914549 -22.89695856927146, -43.29404436785597 -22.897006259160804, -43.29423851421934 -22.897035058053344, -43.2944345485 -22.897044688599998, -43.29463058278066 -22.897035058053344, -43.29482472914403 -22.897006259160804, -43.29501511785451 -22.89695856927146, -43.295199915364734 -22.89689244766502, -43.295377341973655 -22.896808531128695, -43.29554568896604 -22.896707627824604, -43.295703335068325 -22.896590709506725, -43.29584876206237 -22.896458902162372, -43.29598056940672 -22.896313475168327, -43.2960974877246 -22.89615582906604, -43.296198391028696 -22.89598748207365, -43.29628230756502 -22.89581005546473, -43.296348429171466 -22.895625257954507, -43.29639611906081 -22.89543486924403, -43.296424917953345 -22.895240722880658, -43.2964345485 -22.8950446886, -43.296424917953345 -22.89484865431934, -43.29639611906081 -22.894654507955966, -43.296348429171466 -22.89446411924549, -43.29628230756502 -22.89427932173527, -43.296198391028696 -22.894101895126347, -43.2960974877246 -22.89393354813396, -43.29598056940672 -22.89377590203167, -43.29584876206237 -22.893630475037625, -43.295703335068325 -22.893498667693272, -43.29554568896604 -22.893381749375393, -43.295377341973655 -22.893280846071303, -43.295199915364734 -22.893196929534977, -43.29501511785451 -22.893130807928536, -43.29482472914403 -22.893083118039193, -43.29463058278066 -22.893054319146653, -43.2944345485 -22.8930446886, -43.29423851421934 -22.893054319146653, -43.29404436785597 -22.893083118039193, -43.29385397914549 -22.893130807928536, -43.293669181635266 -22.893196929534977, -43.293491755026345 -22.893280846071303, -43.29332340803396 -22.893381749375393, -43.293165761931675 -22.893498667693272, -43.29302033493763 -22.893630475037625, -43.29288852759328 -22.89377590203167, -43.2927716092754 -22.89393354813396, -43.292670705971304 -22.894101895126347, -43.29258678943498 -22.89427932173527, -43.29252066782853 -22.89446411924549, -43.29247297793919 -22.894654507955966, -43.292444179046655 -22.89484865431934, -43.2924345485 -22.8950446886))" +003779,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,152,-22.89504469,-43.29443455,PM,G,Canal do Cunha,"POLYGON ((-43.2924345485 -22.8950446886, -43.292444179046655 -22.895240722880658, -43.29247297793919 -22.89543486924403, -43.29252066782853 -22.895625257954507, -43.29258678943498 -22.89581005546473, -43.292670705971304 -22.89598748207365, -43.2927716092754 -22.89615582906604, -43.29288852759328 -22.896313475168327, -43.29302033493763 -22.896458902162372, -43.293165761931675 -22.896590709506725, -43.29332340803396 -22.896707627824604, -43.293491755026345 -22.896808531128695, -43.293669181635266 -22.89689244766502, -43.29385397914549 -22.89695856927146, -43.29404436785597 -22.897006259160804, -43.29423851421934 -22.897035058053344, -43.2944345485 -22.897044688599998, -43.29463058278066 -22.897035058053344, -43.29482472914403 -22.897006259160804, -43.29501511785451 -22.89695856927146, -43.295199915364734 -22.89689244766502, -43.295377341973655 -22.896808531128695, -43.29554568896604 -22.896707627824604, -43.295703335068325 -22.896590709506725, -43.29584876206237 -22.896458902162372, -43.29598056940672 -22.896313475168327, -43.2960974877246 -22.89615582906604, -43.296198391028696 -22.89598748207365, -43.29628230756502 -22.89581005546473, -43.296348429171466 -22.895625257954507, -43.29639611906081 -22.89543486924403, -43.296424917953345 -22.895240722880658, -43.2964345485 -22.8950446886, -43.296424917953345 -22.89484865431934, -43.29639611906081 -22.894654507955966, -43.296348429171466 -22.89446411924549, -43.29628230756502 -22.89427932173527, -43.296198391028696 -22.894101895126347, -43.2960974877246 -22.89393354813396, -43.29598056940672 -22.89377590203167, -43.29584876206237 -22.893630475037625, -43.295703335068325 -22.893498667693272, -43.29554568896604 -22.893381749375393, -43.295377341973655 -22.893280846071303, -43.295199915364734 -22.893196929534977, -43.29501511785451 -22.893130807928536, -43.29482472914403 -22.893083118039193, -43.29463058278066 -22.893054319146653, -43.2944345485 -22.8930446886, -43.29423851421934 -22.893054319146653, -43.29404436785597 -22.893083118039193, -43.29385397914549 -22.893130807928536, -43.293669181635266 -22.893196929534977, -43.293491755026345 -22.893280846071303, -43.29332340803396 -22.893381749375393, -43.293165761931675 -22.893498667693272, -43.29302033493763 -22.893630475037625, -43.29288852759328 -22.89377590203167, -43.2927716092754 -22.89393354813396, -43.292670705971304 -22.894101895126347, -43.29258678943498 -22.89427932173527, -43.29252066782853 -22.89446411924549, -43.29247297793919 -22.894654507955966, -43.292444179046655 -22.89484865431934, -43.2924345485 -22.8950446886))" +003780,Engenho de Dentro,Zona Norte,88a8a06035fffff,TRUE,152,-22.89504469,-43.29443455,PM,G,Canal do Cunha,"POLYGON ((-43.2924345485 -22.8950446886, -43.292444179046655 -22.895240722880658, -43.29247297793919 -22.89543486924403, -43.29252066782853 -22.895625257954507, -43.29258678943498 -22.89581005546473, -43.292670705971304 -22.89598748207365, -43.2927716092754 -22.89615582906604, -43.29288852759328 -22.896313475168327, -43.29302033493763 -22.896458902162372, -43.293165761931675 -22.896590709506725, -43.29332340803396 -22.896707627824604, -43.293491755026345 -22.896808531128695, -43.293669181635266 -22.89689244766502, -43.29385397914549 -22.89695856927146, -43.29404436785597 -22.897006259160804, -43.29423851421934 -22.897035058053344, -43.2944345485 -22.897044688599998, -43.29463058278066 -22.897035058053344, -43.29482472914403 -22.897006259160804, -43.29501511785451 -22.89695856927146, -43.295199915364734 -22.89689244766502, -43.295377341973655 -22.896808531128695, -43.29554568896604 -22.896707627824604, -43.295703335068325 -22.896590709506725, -43.29584876206237 -22.896458902162372, -43.29598056940672 -22.896313475168327, -43.2960974877246 -22.89615582906604, -43.296198391028696 -22.89598748207365, -43.29628230756502 -22.89581005546473, -43.296348429171466 -22.895625257954507, -43.29639611906081 -22.89543486924403, -43.296424917953345 -22.895240722880658, -43.2964345485 -22.8950446886, -43.296424917953345 -22.89484865431934, -43.29639611906081 -22.894654507955966, -43.296348429171466 -22.89446411924549, -43.29628230756502 -22.89427932173527, -43.296198391028696 -22.894101895126347, -43.2960974877246 -22.89393354813396, -43.29598056940672 -22.89377590203167, -43.29584876206237 -22.893630475037625, -43.295703335068325 -22.893498667693272, -43.29554568896604 -22.893381749375393, -43.295377341973655 -22.893280846071303, -43.295199915364734 -22.893196929534977, -43.29501511785451 -22.893130807928536, -43.29482472914403 -22.893083118039193, -43.29463058278066 -22.893054319146653, -43.2944345485 -22.8930446886, -43.29423851421934 -22.893054319146653, -43.29404436785597 -22.893083118039193, -43.29385397914549 -22.893130807928536, -43.293669181635266 -22.893196929534977, -43.293491755026345 -22.893280846071303, -43.29332340803396 -22.893381749375393, -43.293165761931675 -22.893498667693272, -43.29302033493763 -22.893630475037625, -43.29288852759328 -22.89377590203167, -43.2927716092754 -22.89393354813396, -43.292670705971304 -22.894101895126347, -43.29258678943498 -22.89427932173527, -43.29252066782853 -22.89446411924549, -43.29247297793919 -22.894654507955966, -43.292444179046655 -22.89484865431934, -43.2924345485 -22.8950446886))" +003781,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +003782,Engenho de Dentro,Zona Norte,88a8a061cbfffff,,,,,,,, +003783,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +003784,Santíssimo,Zona Oeste,88a8a066cbfffff,TRUE,279,-22.87566807,-43.52584214,PO,S,Rio da Prata do Mendanha,"POLYGON ((-43.523842135799995 -22.8756680729, -43.52385176634665 -22.87586410718066, -43.52388056523919 -22.876058253544034, -43.52392825512853 -22.87624864225451, -43.523994376734976 -22.87643343976473, -43.5240782932713 -22.876610866373653, -43.524179196575396 -22.876779213366042, -43.524296114893275 -22.87693685946833, -43.52442792223763 -22.877082286462375, -43.52457334923167 -22.877214093806728, -43.52473099533396 -22.877331012124607, -43.52489934232634 -22.877431915428698, -43.525076768935264 -22.877515831965024, -43.52526156644549 -22.877581953571465, -43.525451955155965 -22.877629643460807, -43.525646101519335 -22.877658442353347, -43.5258421358 -22.8776680729, -43.52603817008066 -22.877658442353347, -43.52623231644403 -22.877629643460807, -43.52642270515451 -22.877581953571465, -43.52660750266473 -22.877515831965024, -43.52678492927365 -22.877431915428698, -43.526953276266035 -22.877331012124607, -43.52711092236832 -22.877214093806728, -43.52725634936237 -22.877082286462375, -43.52738815670672 -22.87693685946833, -43.5275050750246 -22.876779213366042, -43.527605978328694 -22.876610866373653, -43.52768989486502 -22.87643343976473, -43.527756016471464 -22.87624864225451, -43.52780370636081 -22.876058253544034, -43.52783250525334 -22.87586410718066, -43.5278421358 -22.8756680729, -43.52783250525334 -22.875472038619343, -43.52780370636081 -22.87527789225597, -43.527756016471464 -22.875087503545494, -43.52768989486502 -22.87490270603527, -43.527605978328694 -22.87472527942635, -43.5275050750246 -22.87455693243396, -43.52738815670672 -22.874399286331673, -43.52725634936237 -22.874253859337628, -43.52711092236832 -22.874122051993275, -43.526953276266035 -22.874005133675396, -43.52678492927365 -22.873904230371306, -43.52660750266473 -22.87382031383498, -43.52642270515451 -22.87375419222854, -43.52623231644403 -22.873706502339196, -43.52603817008066 -22.873677703446656, -43.5258421358 -22.873668072900003, -43.525646101519335 -22.873677703446656, -43.525451955155965 -22.873706502339196, -43.52526156644549 -22.87375419222854, -43.525076768935264 -22.87382031383498, -43.52489934232634 -22.873904230371306, -43.52473099533396 -22.874005133675396, -43.52457334923167 -22.874122051993275, -43.52442792223763 -22.874253859337628, -43.524296114893275 -22.874399286331673, -43.524179196575396 -22.87455693243396, -43.5240782932713 -22.87472527942635, -43.523994376734976 -22.87490270603527, -43.52392825512853 -22.875087503545494, -43.52388056523919 -22.87527789225597, -43.52385176634665 -22.875472038619343, -43.523842135799995 -22.8756680729))" +003785,Barra da Tijuca,Barra da Tijuca,88a8a070bbfffff,,,,,,,, +003786,Santa Cruz,Zona Oeste,88a8a02ac7fffff,,,,,,,, +003788,Leblon,Zona Sul,88a8a07ab1fffff,,,,,,,, +003791,Engenho da Rainha,Zona Norte,88a8a06199fffff,,,,,,,, +003792,Engenho da Rainha,Zona Norte,88a8a06199fffff,,,,,,,, +003793,Engenho da Rainha,Zona Norte,88a8a06199fffff,,,,,,,, +003794,Maracanã,Grande Tijuca,88a8a06105fffff,,,,,,,, +003795,Gávea,Zona Sul,88a8a07ab3fffff,TRUE,294,-22.97878473,-43.22864049,PO,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.226640489999994 -22.9787847288, -43.22665012054665 -22.97898076308066, -43.22667891943919 -22.979174909444033, -43.22672660932853 -22.97936529815451, -43.226792730934974 -22.97955009566473, -43.2268766474713 -22.979727522273652, -43.226977550775395 -22.97989586926604, -43.227094469093274 -22.98005351536833, -43.22722627643763 -22.980198942362374, -43.22737170343167 -22.980330749706727, -43.22752934953396 -22.980447668024606, -43.22769769652634 -22.980548571328697, -43.22787512313526 -22.980632487865023, -43.228059920645485 -22.980698609471464, -43.228250309355964 -22.980746299360806, -43.228444455719334 -22.980775098253346, -43.22864049 -22.9807847288, -43.22883652428066 -22.980775098253346, -43.22903067064403 -22.980746299360806, -43.22922105935451 -22.980698609471464, -43.22940585686473 -22.980632487865023, -43.22958328347365 -22.980548571328697, -43.22975163046603 -22.980447668024606, -43.22990927656832 -22.980330749706727, -43.23005470356237 -22.980198942362374, -43.23018651090672 -22.98005351536833, -43.2303034292246 -22.97989586926604, -43.23040433252869 -22.979727522273652, -43.23048824906502 -22.97955009566473, -43.23055437067146 -22.97936529815451, -43.230602060560805 -22.979174909444033, -43.23063085945334 -22.97898076308066, -43.23064049 -22.9787847288, -43.23063085945334 -22.978588694519342, -43.230602060560805 -22.97839454815597, -43.23055437067146 -22.978204159445493, -43.23048824906502 -22.97801936193527, -43.23040433252869 -22.97784193532635, -43.2303034292246 -22.97767358833396, -43.23018651090672 -22.977515942231673, -43.23005470356237 -22.977370515237627, -43.22990927656832 -22.977238707893274, -43.22975163046603 -22.977121789575396, -43.22958328347365 -22.977020886271305, -43.22940585686473 -22.97693696973498, -43.22922105935451 -22.976870848128538, -43.22903067064403 -22.976823158239196, -43.22883652428066 -22.976794359346655, -43.22864049 -22.976784728800002, -43.228444455719334 -22.976794359346655, -43.228250309355964 -22.976823158239196, -43.228059920645485 -22.976870848128538, -43.22787512313526 -22.97693696973498, -43.22769769652634 -22.977020886271305, -43.22752934953396 -22.977121789575396, -43.22737170343167 -22.977238707893274, -43.22722627643763 -22.977370515237627, -43.227094469093274 -22.977515942231673, -43.226977550775395 -22.97767358833396, -43.2268766474713 -22.97784193532635, -43.226792730934974 -22.97801936193527, -43.22672660932853 -22.978204159445493, -43.22667891943919 -22.97839454815597, -43.22665012054665 -22.978588694519342, -43.226640489999994 -22.9787847288))" +003796,Leblon,Zona Sul,88a8a07ab3fffff,,,,,,,, +003797,Tijuca,Grande Tijuca,88a8a0614bfffff,,,,,,,, +003798,Tijuca,Grande Tijuca,88a8a0614bfffff,,,,,,,, +003799,Centro,Centro,88a8a06a0bfffff,,,,,,,, +003800,Centro,Centro,88a8a06a0bfffff,,,,,,,, +003801,Centro,Centro,88a8a06a0bfffff,,,,,,,, +003802,Méier,Zona Norte,88a8a061cdfffff,TRUE,425,-22.89850335,-43.27755419,PO,G,,"POLYGON ((-43.2755541852019 -22.8985033473414, -43.275563815748555 -22.89869938162206, -43.27559261464109 -22.898893527985432, -43.275640304530434 -22.899083916695908, -43.27570642613688 -22.89926871420613, -43.275790342673204 -22.89944614081505, -43.2758912459773 -22.89961448780744, -43.27600816429518 -22.899772133909728, -43.27613997163953 -22.899917560903774, -43.276285398633576 -22.900049368248126, -43.27644304473586 -22.900166286566005, -43.276611391728245 -22.900267189870096, -43.27678881833717 -22.900351106406422, -43.27697361584739 -22.900417228012863, -43.27716400455787 -22.900464917902205, -43.27735815092124 -22.900493716794745, -43.2775541852019 -22.9005033473414, -43.27775021948256 -22.900493716794745, -43.27794436584593 -22.900464917902205, -43.27813475455641 -22.900417228012863, -43.278319552066634 -22.900351106406422, -43.278496978675555 -22.900267189870096, -43.27866532566794 -22.900166286566005, -43.278822971770225 -22.900049368248126, -43.27896839876427 -22.899917560903774, -43.27910020610862 -22.899772133909728, -43.2792171244265 -22.89961448780744, -43.279318027730596 -22.89944614081505, -43.27940194426692 -22.89926871420613, -43.27946806587337 -22.899083916695908, -43.27951575576271 -22.898893527985432, -43.279544554655246 -22.89869938162206, -43.2795541852019 -22.8985033473414, -43.279544554655246 -22.89830731306074, -43.27951575576271 -22.898113166697367, -43.27946806587337 -22.897922777986892, -43.27940194426692 -22.89773798047667, -43.279318027730596 -22.89756055386775, -43.2792171244265 -22.89739220687536, -43.27910020610862 -22.89723456077307, -43.27896839876427 -22.897089133779026, -43.278822971770225 -22.896957326434674, -43.27866532566794 -22.896840408116795, -43.278496978675555 -22.896739504812704, -43.278319552066634 -22.896655588276378, -43.27813475455641 -22.896589466669937, -43.27794436584593 -22.896541776780595, -43.27775021948256 -22.896512977888055, -43.2775541852019 -22.8965033473414, -43.27735815092124 -22.896512977888055, -43.27716400455787 -22.896541776780595, -43.27697361584739 -22.896589466669937, -43.27678881833717 -22.896655588276378, -43.276611391728245 -22.896739504812704, -43.27644304473586 -22.896840408116795, -43.276285398633576 -22.896957326434674, -43.27613997163953 -22.897089133779026, -43.27600816429518 -22.89723456077307, -43.2758912459773 -22.89739220687536, -43.275790342673204 -22.89756055386775, -43.27570642613688 -22.89773798047667, -43.275640304530434 -22.897922777986892, -43.27559261464109 -22.898113166697367, -43.275563815748555 -22.89830731306074, -43.2755541852019 -22.8985033473414))" +003803,Méier,Zona Norte,88a8a061cdfffff,TRUE,425,-22.89850335,-43.27755419,PO,G,,"POLYGON ((-43.2755541852019 -22.8985033473414, -43.275563815748555 -22.89869938162206, -43.27559261464109 -22.898893527985432, -43.275640304530434 -22.899083916695908, -43.27570642613688 -22.89926871420613, -43.275790342673204 -22.89944614081505, -43.2758912459773 -22.89961448780744, -43.27600816429518 -22.899772133909728, -43.27613997163953 -22.899917560903774, -43.276285398633576 -22.900049368248126, -43.27644304473586 -22.900166286566005, -43.276611391728245 -22.900267189870096, -43.27678881833717 -22.900351106406422, -43.27697361584739 -22.900417228012863, -43.27716400455787 -22.900464917902205, -43.27735815092124 -22.900493716794745, -43.2775541852019 -22.9005033473414, -43.27775021948256 -22.900493716794745, -43.27794436584593 -22.900464917902205, -43.27813475455641 -22.900417228012863, -43.278319552066634 -22.900351106406422, -43.278496978675555 -22.900267189870096, -43.27866532566794 -22.900166286566005, -43.278822971770225 -22.900049368248126, -43.27896839876427 -22.899917560903774, -43.27910020610862 -22.899772133909728, -43.2792171244265 -22.89961448780744, -43.279318027730596 -22.89944614081505, -43.27940194426692 -22.89926871420613, -43.27946806587337 -22.899083916695908, -43.27951575576271 -22.898893527985432, -43.279544554655246 -22.89869938162206, -43.2795541852019 -22.8985033473414, -43.279544554655246 -22.89830731306074, -43.27951575576271 -22.898113166697367, -43.27946806587337 -22.897922777986892, -43.27940194426692 -22.89773798047667, -43.279318027730596 -22.89756055386775, -43.2792171244265 -22.89739220687536, -43.27910020610862 -22.89723456077307, -43.27896839876427 -22.897089133779026, -43.278822971770225 -22.896957326434674, -43.27866532566794 -22.896840408116795, -43.278496978675555 -22.896739504812704, -43.278319552066634 -22.896655588276378, -43.27813475455641 -22.896589466669937, -43.27794436584593 -22.896541776780595, -43.27775021948256 -22.896512977888055, -43.2775541852019 -22.8965033473414, -43.27735815092124 -22.896512977888055, -43.27716400455787 -22.896541776780595, -43.27697361584739 -22.896589466669937, -43.27678881833717 -22.896655588276378, -43.276611391728245 -22.896739504812704, -43.27644304473586 -22.896840408116795, -43.276285398633576 -22.896957326434674, -43.27613997163953 -22.897089133779026, -43.27600816429518 -22.89723456077307, -43.2758912459773 -22.89739220687536, -43.275790342673204 -22.89756055386775, -43.27570642613688 -22.89773798047667, -43.275640304530434 -22.897922777986892, -43.27559261464109 -22.898113166697367, -43.275563815748555 -22.89830731306074, -43.2755541852019 -22.8985033473414))" +003804,Taquara,Jacarepaguá,88a8a0628bfffff,,,,,,,, +003805,Taquara,Jacarepaguá,88a8a0628bfffff,,,,,,,, +003806,Parada de Lucas,Zona Norte,88a8a06e21fffff,TRUE,82,-22.81509895,-43.30063464,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.2986346374 -22.8150989539, -43.298644267946656 -22.81529498818066, -43.29867306683919 -22.815489134544034, -43.298720756728535 -22.81567952325451, -43.29878687833498 -22.81586432076473, -43.298870794871306 -22.816041747373653, -43.2989716981754 -22.816210094366042, -43.29908861649328 -22.81636774046833, -43.29922042383763 -22.816513167462375, -43.29936585083168 -22.816644974806728, -43.299523496933965 -22.816761893124607, -43.29969184392635 -22.816862796428698, -43.29986927053527 -22.816946712965024, -43.30005406804549 -22.817012834571464, -43.30024445675597 -22.817060524460807, -43.30043860311934 -22.817089323353347, -43.3006346374 -22.8170989539, -43.300830671680664 -22.817089323353347, -43.301024818044034 -22.817060524460807, -43.30121520675451 -22.817012834571464, -43.301400004264735 -22.816946712965024, -43.30157743087366 -22.816862796428698, -43.30174577786604 -22.816761893124607, -43.30190342396833 -22.816644974806728, -43.30204885096237 -22.816513167462375, -43.302180658306725 -22.81636774046833, -43.3022975766246 -22.816210094366042, -43.3023984799287 -22.816041747373653, -43.302482396465024 -22.81586432076473, -43.30254851807147 -22.81567952325451, -43.30259620796081 -22.815489134544034, -43.30262500685335 -22.81529498818066, -43.302634637400004 -22.8150989539, -43.30262500685335 -22.814902919619342, -43.30259620796081 -22.81470877325597, -43.30254851807147 -22.814518384545494, -43.302482396465024 -22.81433358703527, -43.3023984799287 -22.81415616042635, -43.3022975766246 -22.81398781343396, -43.302180658306725 -22.813830167331673, -43.30204885096237 -22.813684740337628, -43.30190342396833 -22.813552932993275, -43.30174577786604 -22.813436014675396, -43.30157743087366 -22.813335111371305, -43.301400004264735 -22.81325119483498, -43.30121520675451 -22.81318507322854, -43.301024818044034 -22.813137383339196, -43.300830671680664 -22.813108584446656, -43.3006346374 -22.813098953900003, -43.30043860311934 -22.813108584446656, -43.30024445675597 -22.813137383339196, -43.30005406804549 -22.81318507322854, -43.29986927053527 -22.81325119483498, -43.29969184392635 -22.813335111371305, -43.299523496933965 -22.813436014675396, -43.29936585083168 -22.813552932993275, -43.29922042383763 -22.813684740337628, -43.29908861649328 -22.813830167331673, -43.2989716981754 -22.81398781343396, -43.298870794871306 -22.81415616042635, -43.29878687833498 -22.81433358703527, -43.298720756728535 -22.814518384545494, -43.29867306683919 -22.81470877325597, -43.298644267946656 -22.814902919619342, -43.2986346374 -22.8150989539))" +003807,Parada de Lucas,Zona Norte,88a8a06e21fffff,TRUE,82,-22.81509895,-43.30063464,PC,G,Rios Acari/Pavuna/Meriti,"POLYGON ((-43.2986346374 -22.8150989539, -43.298644267946656 -22.81529498818066, -43.29867306683919 -22.815489134544034, -43.298720756728535 -22.81567952325451, -43.29878687833498 -22.81586432076473, -43.298870794871306 -22.816041747373653, -43.2989716981754 -22.816210094366042, -43.29908861649328 -22.81636774046833, -43.29922042383763 -22.816513167462375, -43.29936585083168 -22.816644974806728, -43.299523496933965 -22.816761893124607, -43.29969184392635 -22.816862796428698, -43.29986927053527 -22.816946712965024, -43.30005406804549 -22.817012834571464, -43.30024445675597 -22.817060524460807, -43.30043860311934 -22.817089323353347, -43.3006346374 -22.8170989539, -43.300830671680664 -22.817089323353347, -43.301024818044034 -22.817060524460807, -43.30121520675451 -22.817012834571464, -43.301400004264735 -22.816946712965024, -43.30157743087366 -22.816862796428698, -43.30174577786604 -22.816761893124607, -43.30190342396833 -22.816644974806728, -43.30204885096237 -22.816513167462375, -43.302180658306725 -22.81636774046833, -43.3022975766246 -22.816210094366042, -43.3023984799287 -22.816041747373653, -43.302482396465024 -22.81586432076473, -43.30254851807147 -22.81567952325451, -43.30259620796081 -22.815489134544034, -43.30262500685335 -22.81529498818066, -43.302634637400004 -22.8150989539, -43.30262500685335 -22.814902919619342, -43.30259620796081 -22.81470877325597, -43.30254851807147 -22.814518384545494, -43.302482396465024 -22.81433358703527, -43.3023984799287 -22.81415616042635, -43.3022975766246 -22.81398781343396, -43.302180658306725 -22.813830167331673, -43.30204885096237 -22.813684740337628, -43.30190342396833 -22.813552932993275, -43.30174577786604 -22.813436014675396, -43.30157743087366 -22.813335111371305, -43.301400004264735 -22.81325119483498, -43.30121520675451 -22.81318507322854, -43.301024818044034 -22.813137383339196, -43.300830671680664 -22.813108584446656, -43.3006346374 -22.813098953900003, -43.30043860311934 -22.813108584446656, -43.30024445675597 -22.813137383339196, -43.30005406804549 -22.81318507322854, -43.29986927053527 -22.81325119483498, -43.29969184392635 -22.813335111371305, -43.299523496933965 -22.813436014675396, -43.29936585083168 -22.813552932993275, -43.29922042383763 -22.813684740337628, -43.29908861649328 -22.813830167331673, -43.2989716981754 -22.81398781343396, -43.298870794871306 -22.81415616042635, -43.29878687833498 -22.81433358703527, -43.298720756728535 -22.814518384545494, -43.29867306683919 -22.81470877325597, -43.298644267946656 -22.814902919619342, -43.2986346374 -22.8150989539))" +003808,Centro,Centro,88a8a06a01fffff,,,,,,,, +003809,Campo Grande,Zona Oeste,88a8a02903fffff,,,,,,,, +003810,Campo Grande,Zona Oeste,88a8a02903fffff,,,,,,,, +003811,Senador Vasconcelos,Zona Oeste,88a8a02903fffff,,,,,,,, +003812,Senador Vasconcelos,Zona Oeste,88a8a02939fffff,,,,,,,, +003813,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,,,,,,,, +003814,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,,,,,,,, +003815,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,,,,,,,, +003816,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,,,,,,,, +003817,Senador Vasconcelos,Zona Oeste,88a8a0293dfffff,,,,,,,, +003818,Campo Grande,Zona Oeste,88a8a02953fffff,TRUE,269,-22.90742019,-43.56541524,PO,S,Rio Campinho,"POLYGON ((-43.5634152384 -22.9074201946, -43.563424868946655 -22.90761622888066, -43.56345366783919 -22.907810375244033, -43.56350135772853 -22.908000763954508, -43.56356747933498 -22.90818556146473, -43.563651395871304 -22.90836298807365, -43.5637522991754 -22.90853133506604, -43.56386921749328 -22.90868898116833, -43.56400102483763 -22.908834408162374, -43.564146451831675 -22.908966215506727, -43.56430409793396 -22.909083133824605, -43.564472444926345 -22.909184037128696, -43.564649871535266 -22.909267953665022, -43.56483466904549 -22.909334075271463, -43.56502505775597 -22.909381765160806, -43.56521920411934 -22.909410564053346, -43.5654152384 -22.9094201946, -43.56561127268066 -22.909410564053346, -43.56580541904403 -22.909381765160806, -43.56599580775451 -22.909334075271463, -43.566180605264734 -22.909267953665022, -43.566358031873655 -22.909184037128696, -43.56652637886604 -22.909083133824605, -43.566684024968325 -22.908966215506727, -43.56682945196237 -22.908834408162374, -43.56696125930672 -22.90868898116833, -43.5670781776246 -22.90853133506604, -43.567179080928696 -22.90836298807365, -43.56726299746502 -22.90818556146473, -43.567329119071466 -22.908000763954508, -43.56737680896081 -22.907810375244033, -43.567405607853345 -22.90761622888066, -43.5674152384 -22.9074201946, -43.567405607853345 -22.90722416031934, -43.56737680896081 -22.907030013955968, -43.567329119071466 -22.906839625245492, -43.56726299746502 -22.90665482773527, -43.567179080928696 -22.90647740112635, -43.5670781776246 -22.90630905413396, -43.56696125930672 -22.906151408031672, -43.56682945196237 -22.906005981037627, -43.566684024968325 -22.905874173693274, -43.56652637886604 -22.905757255375395, -43.566358031873655 -22.905656352071304, -43.566180605264734 -22.905572435534978, -43.56599580775451 -22.905506313928537, -43.56580541904403 -22.905458624039195, -43.56561127268066 -22.905429825146655, -43.5654152384 -22.9054201946, -43.56521920411934 -22.905429825146655, -43.56502505775597 -22.905458624039195, -43.56483466904549 -22.905506313928537, -43.564649871535266 -22.905572435534978, -43.564472444926345 -22.905656352071304, -43.56430409793396 -22.905757255375395, -43.564146451831675 -22.905874173693274, -43.56400102483763 -22.906005981037627, -43.56386921749328 -22.906151408031672, -43.5637522991754 -22.90630905413396, -43.563651395871304 -22.90647740112635, -43.56356747933498 -22.90665482773527, -43.56350135772853 -22.906839625245492, -43.56345366783919 -22.907030013955968, -43.563424868946655 -22.90722416031934, -43.5634152384 -22.9074201946))" +003819,Campo Grande,Zona Oeste,88a8a02953fffff,,,,,,,, +003820,Senador Vasconcelos,Zona Oeste,88a8a0293dfffff,,,,,,,, +003821,Senador Vasconcelos,Zona Oeste,88a8a0293dfffff,,,,,,,, +003822,Senador Vasconcelos,Zona Oeste,88a8a0293dfffff,,,,,,,, +003823,Senador Vasconcelos,Zona Oeste,88a8a0292bfffff,,,,,,,, +003824,Senador Vasconcelos,Zona Oeste,88a8a0292bfffff,,,,,,,, +003826,Lapa,Centro,88a8a06a43fffff,,,,,,,, +003827,Lapa,Centro,88a8a06a43fffff,,,,,,,, +003828,Lapa,Centro,88a8a06a43fffff,,,,,,,, +003829,Lapa,Centro,88a8a06a09fffff,TRUE,64,-22.91322776,-43.17818889,PC,G,Marina da Glória,"POLYGON ((-43.1761888887 -22.9132277623, -43.176198519246654 -22.91342379658066, -43.17622731813919 -22.913617942944033, -43.17627500802853 -22.913808331654508, -43.17634112963498 -22.91399312916473, -43.1764250461713 -22.91417055577365, -43.1765259494754 -22.91433890276604, -43.17664286779328 -22.91449654886833, -43.17677467513763 -22.914641975862374, -43.176920102131675 -22.914773783206726, -43.17707774823396 -22.914890701524605, -43.177246095226344 -22.914991604828696, -43.177423521835266 -22.915075521365022, -43.17760831934549 -22.915141642971463, -43.17779870805597 -22.915189332860805, -43.17799285441934 -22.915218131753345, -43.1781888887 -22.9152277623, -43.17838492298066 -22.915218131753345, -43.17857906934403 -22.915189332860805, -43.17876945805451 -22.915141642971463, -43.17895425556473 -22.915075521365022, -43.179131682173654 -22.914991604828696, -43.179300029166036 -22.914890701524605, -43.179457675268324 -22.914773783206726, -43.17960310226237 -22.914641975862374, -43.17973490960672 -22.91449654886833, -43.1798518279246 -22.91433890276604, -43.179952731228695 -22.91417055577365, -43.18003664776502 -22.91399312916473, -43.180102769371466 -22.913808331654508, -43.18015045926081 -22.913617942944033, -43.180179258153345 -22.91342379658066, -43.1801888887 -22.9132277623, -43.180179258153345 -22.91303172801934, -43.18015045926081 -22.912837581655968, -43.180102769371466 -22.912647192945492, -43.18003664776502 -22.91246239543527, -43.179952731228695 -22.91228496882635, -43.1798518279246 -22.91211662183396, -43.17973490960672 -22.91195897573167, -43.17960310226237 -22.911813548737626, -43.179457675268324 -22.911681741393274, -43.179300029166036 -22.911564823075395, -43.179131682173654 -22.911463919771304, -43.17895425556473 -22.911380003234978, -43.17876945805451 -22.911313881628537, -43.17857906934403 -22.911266191739195, -43.17838492298066 -22.911237392846655, -43.1781888887 -22.9112277623, -43.17799285441934 -22.911237392846655, -43.17779870805597 -22.911266191739195, -43.17760831934549 -22.911313881628537, -43.177423521835266 -22.911380003234978, -43.177246095226344 -22.911463919771304, -43.17707774823396 -22.911564823075395, -43.176920102131675 -22.911681741393274, -43.17677467513763 -22.911813548737626, -43.17664286779328 -22.91195897573167, -43.1765259494754 -22.91211662183396, -43.1764250461713 -22.91228496882635, -43.17634112963498 -22.91246239543527, -43.17627500802853 -22.912647192945492, -43.17622731813919 -22.912837581655968, -43.176198519246654 -22.91303172801934, -43.1761888887 -22.9132277623))" +003830,Urca,Zona Sul,88a8a078adfffff,,,,,,,, +003831,Urca,Zona Sul,88a8a078adfffff,,,,,,,, +003832,Urca,Zona Sul,88a8a078adfffff,,,,,,,, +003833,Urca,Zona Sul,88a8a078adfffff,,,,,,,, +003834,Urca,Zona Sul,88a8a078adfffff,,,,,,,, +003835,Urca,Zona Sul,88a8a078adfffff,,,,,,,, +003836,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003837,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,,,,,,,, +003838,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003839,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003840,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003841,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003842,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003843,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003844,Engenho de Dentro,Zona Norte,88a8a06035fffff,,,,,,,, +003845,Engenho de Dentro,Zona Norte,88a8a06035fffff,,,,,,,, +003846,Engenho de Dentro,Zona Norte,88a8a06035fffff,,,,,,,, +003847,Engenho de Dentro,Zona Norte,88a8a0603dfffff,,,,,,,, +003848,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003849,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003850,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003851,Vargem Grande,Barra da Tijuca,88a8a074c9fffff,,,,,,,, +003938,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003939,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,TRUE,436,-22.976334,-43.49426,PO,J,,"POLYGON ((-43.492259999999995 -22.976334, -43.49226963054665 -22.97653003428066, -43.49229842943919 -22.976724180644034, -43.49234611932853 -22.97691456935451, -43.492412240934975 -22.97709936686473, -43.4924961574713 -22.977276793473653, -43.492597060775395 -22.977445140466042, -43.492713979093274 -22.97760278656833, -43.49284578643763 -22.977748213562375, -43.49299121343167 -22.977880020906728, -43.49314885953396 -22.977996939224607, -43.49331720652634 -22.978097842528697, -43.49349463313526 -22.978181759065023, -43.493679430645486 -22.978247880671464, -43.493869819355965 -22.978295570560807, -43.494063965719334 -22.978324369453347, -43.49426 -22.978334, -43.49445603428066 -22.978324369453347, -43.49465018064403 -22.978295570560807, -43.49484056935451 -22.978247880671464, -43.49502536686473 -22.978181759065023, -43.49520279347365 -22.978097842528697, -43.495371140466034 -22.977996939224607, -43.49552878656832 -22.977880020906728, -43.49567421356237 -22.977748213562375, -43.49580602090672 -22.97760278656833, -43.4959229392246 -22.977445140466042, -43.49602384252869 -22.977276793473653, -43.49610775906502 -22.97709936686473, -43.49617388067146 -22.97691456935451, -43.496221570560806 -22.976724180644034, -43.49625036945334 -22.97653003428066, -43.49626 -22.976334, -43.49625036945334 -22.976137965719342, -43.496221570560806 -22.97594381935597, -43.49617388067146 -22.975753430645494, -43.49610775906502 -22.97556863313527, -43.49602384252869 -22.97539120652635, -43.4959229392246 -22.97522285953396, -43.49580602090672 -22.975065213431673, -43.49567421356237 -22.974919786437628, -43.49552878656832 -22.974787979093275, -43.495371140466034 -22.974671060775396, -43.49520279347365 -22.974570157471305, -43.49502536686473 -22.97448624093498, -43.49484056935451 -22.97442011932854, -43.49465018064403 -22.974372429439196, -43.49445603428066 -22.974343630546656, -43.49426 -22.974334000000002, -43.494063965719334 -22.974343630546656, -43.493869819355965 -22.974372429439196, -43.493679430645486 -22.97442011932854, -43.49349463313526 -22.97448624093498, -43.49331720652634 -22.974570157471305, -43.49314885953396 -22.974671060775396, -43.49299121343167 -22.974787979093275, -43.49284578643763 -22.974919786437628, -43.492713979093274 -22.975065213431673, -43.492597060775395 -22.97522285953396, -43.4924961574713 -22.97539120652635, -43.492412240934975 -22.97556863313527, -43.49234611932853 -22.975753430645494, -43.49229842943919 -22.97594381935597, -43.49226963054665 -22.976137965719342, -43.492259999999995 -22.976334))" +003977,Tijuca,Grande Tijuca,88a8a06335fffff,,,,,,,, +003978,Tijuca,Grande Tijuca,88a8a0633dfffff,,,,,,,, +003979,Tijuca,Grande Tijuca,88a8a0633dfffff,,,,,,,, +003980,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +003981,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +003982,Tijuca,Grande Tijuca,88a8a06335fffff,,,,,,,, +003983,Tijuca,Grande Tijuca,88a8a06335fffff,,,,,,,, +003984,Tijuca,Grande Tijuca,88a8a06335fffff,,,,,,,, +003985,Tijuca,Grande Tijuca,88a8a06335fffff,,,,,,,, +003986,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,,,,,,,, +003987,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,,,,,,,, +003988,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,,,,,,,, +003989,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,,,,,,,, +003990,Vargem Grande,Barra da Tijuca,88a8a074cdfffff,,,,,,,, +003991,Vargem Grande,Barra da Tijuca,88a8a0741bfffff,,,,,,,, +003992,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +003993,Vargem Grande,Barra da Tijuca,88a8a0741bfffff,,,,,,,, +003994,Vargem Grande,Barra da Tijuca,88a8a0741bfffff,,,,,,,, +003995,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +003996,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +003997,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +003998,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +003999,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +004000,Vargem Grande,Barra da Tijuca,88a8a076a1fffff,,,,,,,, +004001,Vargem Grande,Barra da Tijuca,88a8a076a1fffff,,,,,,,, +004002,Vargem Grande,Barra da Tijuca,88a8a0741bfffff,,,,,,,, +004003,Vargem Grande,Barra da Tijuca,88a8a0741bfffff,,,,,,,, +004004,Tijuca,Grande Tijuca,88a8a06141fffff,,,,,,,, +004005,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +004006,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +004007,Tijuca,Grande Tijuca,88a8a06147fffff,,,,,,,, +004008,Tijuca,Grande Tijuca,88a8a0616bfffff,,,,,,,, +004009,Vargem Grande,Barra da Tijuca,88a8a076abfffff,,,,,,,, +004010,Vargem Grande,Barra da Tijuca,88a8a076abfffff,,,,,,,, +004011,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +004012,Vargem Grande,Barra da Tijuca,88a8a076a3fffff,,,,,,,, +004013,Vargem Grande,Barra da Tijuca,88a8a076abfffff,,,,,,,, +004014,Vargem Grande,Barra da Tijuca,88a8a076abfffff,,,,,,,, +004015,Taquara,Jacarepaguá,88a8a0628bfffff,,,,,,,, +004016,Taquara,Jacarepaguá,88a8a0628bfffff,,,,,,,, +004017,Taquara,Jacarepaguá,88a8a0628bfffff,,,,,,,, +004018,Taquara,Jacarepaguá,88a8a0628bfffff,,,,,,,, +004019,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +004020,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +004021,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +004022,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +004023,São Cristóvão,Centro,88a8a06ac9fffff,,,,,,,, +004024,São Cristóvão,Centro,88a8a06ac9fffff,,,,,,,, +004025,São Cristóvão,Centro,88a8a06ac9fffff,,,,,,,, +004026,Taquara,Jacarepaguá,88a8a062c3fffff,,,,,,,, +004027,Taquara,Jacarepaguá,88a8a062c3fffff,,,,,,,, +004028,Taquara,Jacarepaguá,88a8a062c3fffff,,,,,,,, +004029,Taquara,Jacarepaguá,88a8a062c3fffff,,,,,,,, +004030,Senador Vasconcelos,Zona Oeste,88a8a0292bfffff,,,,,,,, +004031,Senador Vasconcelos,Zona Oeste,88a8a0292bfffff,,,,,,,, +004032,Jacarepaguá,Jacarepaguá,88a8a062c3fffff,,,,,,,, +004033,Jacarepaguá,Jacarepaguá,88a8a062c3fffff,,,,,,,, +004034,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,TRUE,282,-22.89399496,-43.53377861,PO,S,Rio Cabucu Piraque,"POLYGON ((-43.5317786066 -22.8939949575, -43.53178823714666 -22.894190991780658, -43.53181703603919 -22.89438513814403, -43.531864725928536 -22.894575526854506, -43.53193084753498 -22.89476032436473, -43.532014764071306 -22.89493775097365, -43.5321156673754 -22.89510609796604, -43.53223258569328 -22.895263744068327, -43.53236439303763 -22.895409171062372, -43.53250982003168 -22.895540978406725, -43.532667466133965 -22.895657896724604, -43.53283581312635 -22.895758800028695, -43.53301323973527 -22.89584271656502, -43.53319803724549 -22.89590883817146, -43.53338842595597 -22.895956528060804, -43.53358257231934 -22.895985326953344, -43.5337786066 -22.895994957499997, -43.533974640880665 -22.895985326953344, -43.534168787244035 -22.895956528060804, -43.53435917595451 -22.89590883817146, -43.534543973464736 -22.89584271656502, -43.53472140007366 -22.895758800028695, -43.53488974706604 -22.895657896724604, -43.53504739316833 -22.895540978406725, -43.53519282016237 -22.895409171062372, -43.535324627506725 -22.895263744068327, -43.535441545824604 -22.89510609796604, -43.5355424491287 -22.89493775097365, -43.535626365665024 -22.89476032436473, -43.53569248727147 -22.894575526854506, -43.53574017716081 -22.89438513814403, -43.53576897605335 -22.894190991780658, -43.535778606600005 -22.8939949575, -43.53576897605335 -22.89379892321934, -43.53574017716081 -22.893604776855966, -43.53569248727147 -22.89341438814549, -43.535626365665024 -22.89322959063527, -43.5355424491287 -22.893052164026347, -43.535441545824604 -22.892883817033958, -43.535324627506725 -22.89272617093167, -43.53519282016237 -22.892580743937625, -43.53504739316833 -22.892448936593272, -43.53488974706604 -22.892332018275393, -43.53472140007366 -22.892231114971302, -43.534543973464736 -22.892147198434976, -43.53435917595451 -22.892081076828536, -43.534168787244035 -22.892033386939193, -43.533974640880665 -22.892004588046653, -43.5337786066 -22.8919949575, -43.53358257231934 -22.892004588046653, -43.53338842595597 -22.892033386939193, -43.53319803724549 -22.892081076828536, -43.53301323973527 -22.892147198434976, -43.53283581312635 -22.892231114971302, -43.532667466133965 -22.892332018275393, -43.53250982003168 -22.892448936593272, -43.53236439303763 -22.892580743937625, -43.53223258569328 -22.89272617093167, -43.5321156673754 -22.892883817033958, -43.532014764071306 -22.893052164026347, -43.53193084753498 -22.89322959063527, -43.531864725928536 -22.89341438814549, -43.53181703603919 -22.893604776855966, -43.53178823714666 -22.89379892321934, -43.5317786066 -22.8939949575))" +004035,Jacarepaguá,Jacarepaguá,88a8a062c3fffff,,,,,,,, +004036,Jacarepaguá,Jacarepaguá,88a8a062c3fffff,,,,,,,, +004037,Jacarepaguá,Jacarepaguá,88a8a062c1fffff,,,,,,,, +004038,Jacarepaguá,Jacarepaguá,88a8a062c1fffff,,,,,,,, +004039,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,TRUE,282,-22.89399496,-43.53377861,PO,S,Rio Cabucu Piraque,"POLYGON ((-43.5317786066 -22.8939949575, -43.53178823714666 -22.894190991780658, -43.53181703603919 -22.89438513814403, -43.531864725928536 -22.894575526854506, -43.53193084753498 -22.89476032436473, -43.532014764071306 -22.89493775097365, -43.5321156673754 -22.89510609796604, -43.53223258569328 -22.895263744068327, -43.53236439303763 -22.895409171062372, -43.53250982003168 -22.895540978406725, -43.532667466133965 -22.895657896724604, -43.53283581312635 -22.895758800028695, -43.53301323973527 -22.89584271656502, -43.53319803724549 -22.89590883817146, -43.53338842595597 -22.895956528060804, -43.53358257231934 -22.895985326953344, -43.5337786066 -22.895994957499997, -43.533974640880665 -22.895985326953344, -43.534168787244035 -22.895956528060804, -43.53435917595451 -22.89590883817146, -43.534543973464736 -22.89584271656502, -43.53472140007366 -22.895758800028695, -43.53488974706604 -22.895657896724604, -43.53504739316833 -22.895540978406725, -43.53519282016237 -22.895409171062372, -43.535324627506725 -22.895263744068327, -43.535441545824604 -22.89510609796604, -43.5355424491287 -22.89493775097365, -43.535626365665024 -22.89476032436473, -43.53569248727147 -22.894575526854506, -43.53574017716081 -22.89438513814403, -43.53576897605335 -22.894190991780658, -43.535778606600005 -22.8939949575, -43.53576897605335 -22.89379892321934, -43.53574017716081 -22.893604776855966, -43.53569248727147 -22.89341438814549, -43.535626365665024 -22.89322959063527, -43.5355424491287 -22.893052164026347, -43.535441545824604 -22.892883817033958, -43.535324627506725 -22.89272617093167, -43.53519282016237 -22.892580743937625, -43.53504739316833 -22.892448936593272, -43.53488974706604 -22.892332018275393, -43.53472140007366 -22.892231114971302, -43.534543973464736 -22.892147198434976, -43.53435917595451 -22.892081076828536, -43.534168787244035 -22.892033386939193, -43.533974640880665 -22.892004588046653, -43.5337786066 -22.8919949575, -43.53358257231934 -22.892004588046653, -43.53338842595597 -22.892033386939193, -43.53319803724549 -22.892081076828536, -43.53301323973527 -22.892147198434976, -43.53283581312635 -22.892231114971302, -43.532667466133965 -22.892332018275393, -43.53250982003168 -22.892448936593272, -43.53236439303763 -22.892580743937625, -43.53223258569328 -22.89272617093167, -43.5321156673754 -22.892883817033958, -43.532014764071306 -22.893052164026347, -43.53193084753498 -22.89322959063527, -43.531864725928536 -22.89341438814549, -43.53181703603919 -22.893604776855966, -43.53178823714666 -22.89379892321934, -43.5317786066 -22.8939949575))" +004040,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,TRUE,282,-22.89399496,-43.53377861,PO,S,Rio Cabucu Piraque,"POLYGON ((-43.5317786066 -22.8939949575, -43.53178823714666 -22.894190991780658, -43.53181703603919 -22.89438513814403, -43.531864725928536 -22.894575526854506, -43.53193084753498 -22.89476032436473, -43.532014764071306 -22.89493775097365, -43.5321156673754 -22.89510609796604, -43.53223258569328 -22.895263744068327, -43.53236439303763 -22.895409171062372, -43.53250982003168 -22.895540978406725, -43.532667466133965 -22.895657896724604, -43.53283581312635 -22.895758800028695, -43.53301323973527 -22.89584271656502, -43.53319803724549 -22.89590883817146, -43.53338842595597 -22.895956528060804, -43.53358257231934 -22.895985326953344, -43.5337786066 -22.895994957499997, -43.533974640880665 -22.895985326953344, -43.534168787244035 -22.895956528060804, -43.53435917595451 -22.89590883817146, -43.534543973464736 -22.89584271656502, -43.53472140007366 -22.895758800028695, -43.53488974706604 -22.895657896724604, -43.53504739316833 -22.895540978406725, -43.53519282016237 -22.895409171062372, -43.535324627506725 -22.895263744068327, -43.535441545824604 -22.89510609796604, -43.5355424491287 -22.89493775097365, -43.535626365665024 -22.89476032436473, -43.53569248727147 -22.894575526854506, -43.53574017716081 -22.89438513814403, -43.53576897605335 -22.894190991780658, -43.535778606600005 -22.8939949575, -43.53576897605335 -22.89379892321934, -43.53574017716081 -22.893604776855966, -43.53569248727147 -22.89341438814549, -43.535626365665024 -22.89322959063527, -43.5355424491287 -22.893052164026347, -43.535441545824604 -22.892883817033958, -43.535324627506725 -22.89272617093167, -43.53519282016237 -22.892580743937625, -43.53504739316833 -22.892448936593272, -43.53488974706604 -22.892332018275393, -43.53472140007366 -22.892231114971302, -43.534543973464736 -22.892147198434976, -43.53435917595451 -22.892081076828536, -43.534168787244035 -22.892033386939193, -43.533974640880665 -22.892004588046653, -43.5337786066 -22.8919949575, -43.53358257231934 -22.892004588046653, -43.53338842595597 -22.892033386939193, -43.53319803724549 -22.892081076828536, -43.53301323973527 -22.892147198434976, -43.53283581312635 -22.892231114971302, -43.532667466133965 -22.892332018275393, -43.53250982003168 -22.892448936593272, -43.53236439303763 -22.892580743937625, -43.53223258569328 -22.89272617093167, -43.5321156673754 -22.892883817033958, -43.532014764071306 -22.893052164026347, -43.53193084753498 -22.89322959063527, -43.531864725928536 -22.89341438814549, -43.53181703603919 -22.893604776855966, -43.53178823714666 -22.89379892321934, -43.5317786066 -22.8939949575))" +004041,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,,,,,,,, +004042,Senador Vasconcelos,Zona Oeste,88a8a02907fffff,,,,,,,, +004043,Jacarepaguá,Jacarepaguá,88a8a062c1fffff,,,,,,,, +004044,Jacarepaguá,Jacarepaguá,88a8a062c1fffff,,,,,,,, +004045,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004046,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004047,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004048,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004049,Campo Grande,Zona Oeste,88a8a02959fffff,,,,,,,, +004050,Campo Grande,Zona Oeste,88a8a02959fffff,,,,,,,, +004051,Campo Grande,Zona Oeste,88a8a02959fffff,,,,,,,, +004052,Campo Grande,Zona Oeste,88a8a02865fffff,TRUE,381,-22.92690643,-43.57019168,PO,S,Rio Cabucu Piraque,"POLYGON ((-43.56819167658906 -22.92690642550666, -43.568201307135716 -22.92710245978732, -43.56823010602825 -22.927296606150694, -43.568277795917595 -22.92748699486117, -43.56834391752404 -22.92767179237139, -43.568427834060365 -22.927849218980313, -43.56852873736446 -22.928017565972702, -43.56864565568234 -22.92817521207499, -43.56877746302669 -22.928320639069035, -43.56892289002074 -22.928452446413388, -43.569080536123025 -22.928569364731267, -43.56924888311541 -22.928670268035358, -43.56942630972433 -22.928754184571684, -43.56961110723455 -22.928820306178125, -43.56980149594503 -22.928867996067467, -43.5699956423084 -22.928896794960007, -43.57019167658906 -22.92890642550666, -43.570387710869724 -22.928896794960007, -43.570581857233094 -22.928867996067467, -43.57077224594357 -22.928820306178125, -43.570957043453795 -22.928754184571684, -43.57113447006272 -22.928670268035358, -43.5713028170551 -22.928569364731267, -43.571460463157386 -22.928452446413388, -43.57160589015143 -22.928320639069035, -43.571737697495784 -22.92817521207499, -43.57185461581366 -22.928017565972702, -43.57195551911776 -22.927849218980313, -43.572039435654084 -22.92767179237139, -43.57210555726053 -22.92748699486117, -43.57215324714987 -22.927296606150694, -43.57218204604241 -22.92710245978732, -43.572191676589064 -22.92690642550666, -43.57218204604241 -22.926710391226003, -43.57215324714987 -22.92651624486263, -43.57210555726053 -22.926325856152154, -43.572039435654084 -22.92614105864193, -43.57195551911776 -22.92596363203301, -43.57185461581366 -22.92579528504062, -43.571737697495784 -22.925637638938333, -43.57160589015143 -22.925492211944288, -43.571460463157386 -22.925360404599935, -43.5713028170551 -22.925243486282056, -43.57113447006272 -22.925142582977966, -43.570957043453795 -22.92505866644164, -43.57077224594357 -22.9249925448352, -43.570581857233094 -22.924944854945856, -43.570387710869724 -22.924916056053316, -43.57019167658906 -22.924906425506663, -43.5699956423084 -22.924916056053316, -43.56980149594503 -22.924944854945856, -43.56961110723455 -22.9249925448352, -43.56942630972433 -22.92505866644164, -43.56924888311541 -22.925142582977966, -43.569080536123025 -22.925243486282056, -43.56892289002074 -22.925360404599935, -43.56877746302669 -22.925492211944288, -43.56864565568234 -22.925637638938333, -43.56852873736446 -22.92579528504062, -43.568427834060365 -22.92596363203301, -43.56834391752404 -22.92614105864193, -43.568277795917595 -22.926325856152154, -43.56823010602825 -22.92651624486263, -43.568201307135716 -22.926710391226003, -43.56819167658906 -22.92690642550666))" +004053,Campo Grande,Zona Oeste,88a8a02865fffff,TRUE,381,-22.92690643,-43.57019168,PO,S,Rio Cabucu Piraque,"POLYGON ((-43.56819167658906 -22.92690642550666, -43.568201307135716 -22.92710245978732, -43.56823010602825 -22.927296606150694, -43.568277795917595 -22.92748699486117, -43.56834391752404 -22.92767179237139, -43.568427834060365 -22.927849218980313, -43.56852873736446 -22.928017565972702, -43.56864565568234 -22.92817521207499, -43.56877746302669 -22.928320639069035, -43.56892289002074 -22.928452446413388, -43.569080536123025 -22.928569364731267, -43.56924888311541 -22.928670268035358, -43.56942630972433 -22.928754184571684, -43.56961110723455 -22.928820306178125, -43.56980149594503 -22.928867996067467, -43.5699956423084 -22.928896794960007, -43.57019167658906 -22.92890642550666, -43.570387710869724 -22.928896794960007, -43.570581857233094 -22.928867996067467, -43.57077224594357 -22.928820306178125, -43.570957043453795 -22.928754184571684, -43.57113447006272 -22.928670268035358, -43.5713028170551 -22.928569364731267, -43.571460463157386 -22.928452446413388, -43.57160589015143 -22.928320639069035, -43.571737697495784 -22.92817521207499, -43.57185461581366 -22.928017565972702, -43.57195551911776 -22.927849218980313, -43.572039435654084 -22.92767179237139, -43.57210555726053 -22.92748699486117, -43.57215324714987 -22.927296606150694, -43.57218204604241 -22.92710245978732, -43.572191676589064 -22.92690642550666, -43.57218204604241 -22.926710391226003, -43.57215324714987 -22.92651624486263, -43.57210555726053 -22.926325856152154, -43.572039435654084 -22.92614105864193, -43.57195551911776 -22.92596363203301, -43.57185461581366 -22.92579528504062, -43.571737697495784 -22.925637638938333, -43.57160589015143 -22.925492211944288, -43.571460463157386 -22.925360404599935, -43.5713028170551 -22.925243486282056, -43.57113447006272 -22.925142582977966, -43.570957043453795 -22.92505866644164, -43.57077224594357 -22.9249925448352, -43.570581857233094 -22.924944854945856, -43.570387710869724 -22.924916056053316, -43.57019167658906 -22.924906425506663, -43.5699956423084 -22.924916056053316, -43.56980149594503 -22.924944854945856, -43.56961110723455 -22.9249925448352, -43.56942630972433 -22.92505866644164, -43.56924888311541 -22.925142582977966, -43.569080536123025 -22.925243486282056, -43.56892289002074 -22.925360404599935, -43.56877746302669 -22.925492211944288, -43.56864565568234 -22.925637638938333, -43.56852873736446 -22.92579528504062, -43.568427834060365 -22.92596363203301, -43.56834391752404 -22.92614105864193, -43.568277795917595 -22.926325856152154, -43.56823010602825 -22.92651624486263, -43.568201307135716 -22.926710391226003, -43.56819167658906 -22.92690642550666))" +004054,Campo Grande,Zona Oeste,88a8a02b33fffff,,,,,,,, +004055,Campo Grande,Zona Oeste,88a8a0286dfffff,,,,,,,, +004056,Campo Grande,Zona Oeste,88a8a0286dfffff,,,,,,,, +004057,Campo Grande,Zona Oeste,88a8a0286dfffff,,,,,,,, +004058,Campo Grande,Zona Oeste,88a8a02b33fffff,,,,,,,, +004059,Campo Grande,Zona Oeste,88a8a02959fffff,,,,,,,, +004060,Campo Grande,Zona Oeste,88a8a02959fffff,,,,,,,, +004061,Campo Grande,Zona Oeste,88a8a02951fffff,TRUE,281,-22.91641916,-43.5631478,PC,S,Rio Cabucu Piraque,"POLYGON ((-43.561147799 -22.9164191597, -43.561157429546654 -22.916615193980657, -43.56118622843919 -22.91680934034403, -43.56123391832853 -22.916999729054506, -43.56130003993498 -22.91718452656473, -43.5613839564713 -22.91736195317365, -43.5614848597754 -22.91753030016604, -43.56160177809328 -22.917687946268327, -43.56173358543763 -22.917833373262372, -43.561879012431675 -22.917965180606725, -43.56203665853396 -22.918082098924604, -43.562205005526344 -22.918183002228695, -43.562382432135266 -22.91826691876502, -43.56256722964549 -22.91833304037146, -43.56275761835597 -22.918380730260804, -43.56295176471934 -22.918409529153344, -43.563147799 -22.918419159699997, -43.56334383328066 -22.918409529153344, -43.56353797964403 -22.918380730260804, -43.56372836835451 -22.91833304037146, -43.56391316586473 -22.91826691876502, -43.564090592473654 -22.918183002228695, -43.564258939466036 -22.918082098924604, -43.564416585568324 -22.917965180606725, -43.56456201256237 -22.917833373262372, -43.56469381990672 -22.917687946268327, -43.5648107382246 -22.91753030016604, -43.564911641528695 -22.91736195317365, -43.56499555806502 -22.91718452656473, -43.565061679671466 -22.916999729054506, -43.56510936956081 -22.91680934034403, -43.565138168453345 -22.916615193980657, -43.565147799 -22.9164191597, -43.565138168453345 -22.91622312541934, -43.56510936956081 -22.916028979055966, -43.565061679671466 -22.91583859034549, -43.56499555806502 -22.91565379283527, -43.564911641528695 -22.915476366226347, -43.5648107382246 -22.915308019233958, -43.56469381990672 -22.91515037313167, -43.56456201256237 -22.915004946137625, -43.564416585568324 -22.914873138793272, -43.564258939466036 -22.914756220475393, -43.564090592473654 -22.914655317171302, -43.56391316586473 -22.914571400634976, -43.56372836835451 -22.914505279028536, -43.56353797964403 -22.914457589139193, -43.56334383328066 -22.914428790246653, -43.563147799 -22.9144191597, -43.56295176471934 -22.914428790246653, -43.56275761835597 -22.914457589139193, -43.56256722964549 -22.914505279028536, -43.562382432135266 -22.914571400634976, -43.562205005526344 -22.914655317171302, -43.56203665853396 -22.914756220475393, -43.561879012431675 -22.914873138793272, -43.56173358543763 -22.915004946137625, -43.56160177809328 -22.91515037313167, -43.5614848597754 -22.915308019233958, -43.5613839564713 -22.915476366226347, -43.56130003993498 -22.91565379283527, -43.56123391832853 -22.91583859034549, -43.56118622843919 -22.916028979055966, -43.561157429546654 -22.91622312541934, -43.561147799 -22.9164191597))" +004062,Campo Grande,Zona Oeste,88a8a02951fffff,,,,,,,, +004063,Campo Grande,Zona Oeste,88a8a02951fffff,,,,,,,, +004064,São Cristóvão,Centro,88a8a06127fffff,,,,,,,, +004065,São Cristóvão,Centro,88a8a06127fffff,,,,,,,, +004066,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004067,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004068,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004069,Jacarepaguá,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004070,Curicica,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004071,Curicica,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004072,Curicica,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004073,Curicica,Jacarepaguá,88a8a062cbfffff,,,,,,,, +004074,Curicica,Jacarepaguá,88a8a07535fffff,,,,,,,, +004075,Curicica,Jacarepaguá,88a8a07535fffff,,,,,,,, +004076,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +004077,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +004078,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +004079,Curicica,Jacarepaguá,88a8a07531fffff,,,,,,,, +004080,Taquara,Jacarepaguá,88a8a06289fffff,,,,,,,, +004081,Taquara,Jacarepaguá,88a8a06289fffff,TRUE,238,-22.93897358,-43.37165192,PC,J,Rio Guerengue,"POLYGON ((-43.3696519238 -22.9389735773, -43.369661554346656 -22.93916961158066, -43.36969035323919 -22.939363757944033, -43.369738043128535 -22.93955414665451, -43.36980416473498 -22.93973894416473, -43.369888081271306 -22.939916370773652, -43.3699889845754 -22.94008471776604, -43.37010590289328 -22.94024236386833, -43.37023771023763 -22.940387790862374, -43.37038313723168 -22.940519598206727, -43.370540783333965 -22.940636516524606, -43.37070913032635 -22.940737419828697, -43.37088655693527 -22.940821336365023, -43.37107135444549 -22.940887457971463, -43.37126174315597 -22.940935147860806, -43.37145588951934 -22.940963946753346, -43.3716519238 -22.9409735773, -43.371847958080664 -22.940963946753346, -43.372042104444034 -22.940935147860806, -43.37223249315451 -22.940887457971463, -43.372417290664735 -22.940821336365023, -43.37259471727366 -22.940737419828697, -43.37276306426604 -22.940636516524606, -43.37292071036833 -22.940519598206727, -43.37306613736237 -22.940387790862374, -43.373197944706725 -22.94024236386833, -43.3733148630246 -22.94008471776604, -43.3734157663287 -22.939916370773652, -43.373499682865024 -22.93973894416473, -43.37356580447147 -22.93955414665451, -43.37361349436081 -22.939363757944033, -43.37364229325335 -22.93916961158066, -43.373651923800004 -22.9389735773, -43.37364229325335 -22.93877754301934, -43.37361349436081 -22.938583396655968, -43.37356580447147 -22.938393007945493, -43.373499682865024 -22.93820821043527, -43.3734157663287 -22.93803078382635, -43.3733148630246 -22.93786243683396, -43.373197944706725 -22.937704790731672, -43.37306613736237 -22.937559363737627, -43.37292071036833 -22.937427556393274, -43.37276306426604 -22.937310638075395, -43.37259471727366 -22.937209734771304, -43.372417290664735 -22.93712581823498, -43.37223249315451 -22.937059696628538, -43.372042104444034 -22.937012006739195, -43.371847958080664 -22.936983207846655, -43.3716519238 -22.9369735773, -43.37145588951934 -22.936983207846655, -43.37126174315597 -22.937012006739195, -43.37107135444549 -22.937059696628538, -43.37088655693527 -22.93712581823498, -43.37070913032635 -22.937209734771304, -43.370540783333965 -22.937310638075395, -43.37038313723168 -22.937427556393274, -43.37023771023763 -22.937559363737627, -43.37010590289328 -22.937704790731672, -43.3699889845754 -22.93786243683396, -43.369888081271306 -22.93803078382635, -43.36980416473498 -22.93820821043527, -43.369738043128535 -22.938393007945493, -43.36969035323919 -22.938583396655968, -43.369661554346656 -22.93877754301934, -43.3696519238 -22.9389735773))" +004082,Taquara,Jacarepaguá,88a8a06289fffff,TRUE,238,-22.93897358,-43.37165192,PC,J,Rio Guerengue,"POLYGON ((-43.3696519238 -22.9389735773, -43.369661554346656 -22.93916961158066, -43.36969035323919 -22.939363757944033, -43.369738043128535 -22.93955414665451, -43.36980416473498 -22.93973894416473, -43.369888081271306 -22.939916370773652, -43.3699889845754 -22.94008471776604, -43.37010590289328 -22.94024236386833, -43.37023771023763 -22.940387790862374, -43.37038313723168 -22.940519598206727, -43.370540783333965 -22.940636516524606, -43.37070913032635 -22.940737419828697, -43.37088655693527 -22.940821336365023, -43.37107135444549 -22.940887457971463, -43.37126174315597 -22.940935147860806, -43.37145588951934 -22.940963946753346, -43.3716519238 -22.9409735773, -43.371847958080664 -22.940963946753346, -43.372042104444034 -22.940935147860806, -43.37223249315451 -22.940887457971463, -43.372417290664735 -22.940821336365023, -43.37259471727366 -22.940737419828697, -43.37276306426604 -22.940636516524606, -43.37292071036833 -22.940519598206727, -43.37306613736237 -22.940387790862374, -43.373197944706725 -22.94024236386833, -43.3733148630246 -22.94008471776604, -43.3734157663287 -22.939916370773652, -43.373499682865024 -22.93973894416473, -43.37356580447147 -22.93955414665451, -43.37361349436081 -22.939363757944033, -43.37364229325335 -22.93916961158066, -43.373651923800004 -22.9389735773, -43.37364229325335 -22.93877754301934, -43.37361349436081 -22.938583396655968, -43.37356580447147 -22.938393007945493, -43.373499682865024 -22.93820821043527, -43.3734157663287 -22.93803078382635, -43.3733148630246 -22.93786243683396, -43.373197944706725 -22.937704790731672, -43.37306613736237 -22.937559363737627, -43.37292071036833 -22.937427556393274, -43.37276306426604 -22.937310638075395, -43.37259471727366 -22.937209734771304, -43.372417290664735 -22.93712581823498, -43.37223249315451 -22.937059696628538, -43.372042104444034 -22.937012006739195, -43.371847958080664 -22.936983207846655, -43.3716519238 -22.9369735773, -43.37145588951934 -22.936983207846655, -43.37126174315597 -22.937012006739195, -43.37107135444549 -22.937059696628538, -43.37088655693527 -22.93712581823498, -43.37070913032635 -22.937209734771304, -43.370540783333965 -22.937310638075395, -43.37038313723168 -22.937427556393274, -43.37023771023763 -22.937559363737627, -43.37010590289328 -22.937704790731672, -43.3699889845754 -22.93786243683396, -43.369888081271306 -22.93803078382635, -43.36980416473498 -22.93820821043527, -43.369738043128535 -22.938393007945493, -43.36969035323919 -22.938583396655968, -43.369661554346656 -22.93877754301934, -43.3696519238 -22.9389735773))" +004083,Taquara,Jacarepaguá,88a8a06289fffff,TRUE,238,-22.93897358,-43.37165192,PC,J,Rio Guerengue,"POLYGON ((-43.3696519238 -22.9389735773, -43.369661554346656 -22.93916961158066, -43.36969035323919 -22.939363757944033, -43.369738043128535 -22.93955414665451, -43.36980416473498 -22.93973894416473, -43.369888081271306 -22.939916370773652, -43.3699889845754 -22.94008471776604, -43.37010590289328 -22.94024236386833, -43.37023771023763 -22.940387790862374, -43.37038313723168 -22.940519598206727, -43.370540783333965 -22.940636516524606, -43.37070913032635 -22.940737419828697, -43.37088655693527 -22.940821336365023, -43.37107135444549 -22.940887457971463, -43.37126174315597 -22.940935147860806, -43.37145588951934 -22.940963946753346, -43.3716519238 -22.9409735773, -43.371847958080664 -22.940963946753346, -43.372042104444034 -22.940935147860806, -43.37223249315451 -22.940887457971463, -43.372417290664735 -22.940821336365023, -43.37259471727366 -22.940737419828697, -43.37276306426604 -22.940636516524606, -43.37292071036833 -22.940519598206727, -43.37306613736237 -22.940387790862374, -43.373197944706725 -22.94024236386833, -43.3733148630246 -22.94008471776604, -43.3734157663287 -22.939916370773652, -43.373499682865024 -22.93973894416473, -43.37356580447147 -22.93955414665451, -43.37361349436081 -22.939363757944033, -43.37364229325335 -22.93916961158066, -43.373651923800004 -22.9389735773, -43.37364229325335 -22.93877754301934, -43.37361349436081 -22.938583396655968, -43.37356580447147 -22.938393007945493, -43.373499682865024 -22.93820821043527, -43.3734157663287 -22.93803078382635, -43.3733148630246 -22.93786243683396, -43.373197944706725 -22.937704790731672, -43.37306613736237 -22.937559363737627, -43.37292071036833 -22.937427556393274, -43.37276306426604 -22.937310638075395, -43.37259471727366 -22.937209734771304, -43.372417290664735 -22.93712581823498, -43.37223249315451 -22.937059696628538, -43.372042104444034 -22.937012006739195, -43.371847958080664 -22.936983207846655, -43.3716519238 -22.9369735773, -43.37145588951934 -22.936983207846655, -43.37126174315597 -22.937012006739195, -43.37107135444549 -22.937059696628538, -43.37088655693527 -22.93712581823498, -43.37070913032635 -22.937209734771304, -43.370540783333965 -22.937310638075395, -43.37038313723168 -22.937427556393274, -43.37023771023763 -22.937559363737627, -43.37010590289328 -22.937704790731672, -43.3699889845754 -22.93786243683396, -43.369888081271306 -22.93803078382635, -43.36980416473498 -22.93820821043527, -43.369738043128535 -22.938393007945493, -43.36969035323919 -22.938583396655968, -43.369661554346656 -22.93877754301934, -43.3696519238 -22.9389735773))" +004084,Taquara,Jacarepaguá,88a8a06289fffff,TRUE,238,-22.93897358,-43.37165192,PC,J,Rio Guerengue,"POLYGON ((-43.3696519238 -22.9389735773, -43.369661554346656 -22.93916961158066, -43.36969035323919 -22.939363757944033, -43.369738043128535 -22.93955414665451, -43.36980416473498 -22.93973894416473, -43.369888081271306 -22.939916370773652, -43.3699889845754 -22.94008471776604, -43.37010590289328 -22.94024236386833, -43.37023771023763 -22.940387790862374, -43.37038313723168 -22.940519598206727, -43.370540783333965 -22.940636516524606, -43.37070913032635 -22.940737419828697, -43.37088655693527 -22.940821336365023, -43.37107135444549 -22.940887457971463, -43.37126174315597 -22.940935147860806, -43.37145588951934 -22.940963946753346, -43.3716519238 -22.9409735773, -43.371847958080664 -22.940963946753346, -43.372042104444034 -22.940935147860806, -43.37223249315451 -22.940887457971463, -43.372417290664735 -22.940821336365023, -43.37259471727366 -22.940737419828697, -43.37276306426604 -22.940636516524606, -43.37292071036833 -22.940519598206727, -43.37306613736237 -22.940387790862374, -43.373197944706725 -22.94024236386833, -43.3733148630246 -22.94008471776604, -43.3734157663287 -22.939916370773652, -43.373499682865024 -22.93973894416473, -43.37356580447147 -22.93955414665451, -43.37361349436081 -22.939363757944033, -43.37364229325335 -22.93916961158066, -43.373651923800004 -22.9389735773, -43.37364229325335 -22.93877754301934, -43.37361349436081 -22.938583396655968, -43.37356580447147 -22.938393007945493, -43.373499682865024 -22.93820821043527, -43.3734157663287 -22.93803078382635, -43.3733148630246 -22.93786243683396, -43.373197944706725 -22.937704790731672, -43.37306613736237 -22.937559363737627, -43.37292071036833 -22.937427556393274, -43.37276306426604 -22.937310638075395, -43.37259471727366 -22.937209734771304, -43.372417290664735 -22.93712581823498, -43.37223249315451 -22.937059696628538, -43.372042104444034 -22.937012006739195, -43.371847958080664 -22.936983207846655, -43.3716519238 -22.9369735773, -43.37145588951934 -22.936983207846655, -43.37126174315597 -22.937012006739195, -43.37107135444549 -22.937059696628538, -43.37088655693527 -22.93712581823498, -43.37070913032635 -22.937209734771304, -43.370540783333965 -22.937310638075395, -43.37038313723168 -22.937427556393274, -43.37023771023763 -22.937559363737627, -43.37010590289328 -22.937704790731672, -43.3699889845754 -22.93786243683396, -43.369888081271306 -22.93803078382635, -43.36980416473498 -22.93820821043527, -43.369738043128535 -22.938393007945493, -43.36969035323919 -22.938583396655968, -43.369661554346656 -22.93877754301934, -43.3696519238 -22.9389735773))" +004085,Taquara,Jacarepaguá,88a8a06289fffff,TRUE,238,-22.93897358,-43.37165192,PC,J,Rio Guerengue,"POLYGON ((-43.3696519238 -22.9389735773, -43.369661554346656 -22.93916961158066, -43.36969035323919 -22.939363757944033, -43.369738043128535 -22.93955414665451, -43.36980416473498 -22.93973894416473, -43.369888081271306 -22.939916370773652, -43.3699889845754 -22.94008471776604, -43.37010590289328 -22.94024236386833, -43.37023771023763 -22.940387790862374, -43.37038313723168 -22.940519598206727, -43.370540783333965 -22.940636516524606, -43.37070913032635 -22.940737419828697, -43.37088655693527 -22.940821336365023, -43.37107135444549 -22.940887457971463, -43.37126174315597 -22.940935147860806, -43.37145588951934 -22.940963946753346, -43.3716519238 -22.9409735773, -43.371847958080664 -22.940963946753346, -43.372042104444034 -22.940935147860806, -43.37223249315451 -22.940887457971463, -43.372417290664735 -22.940821336365023, -43.37259471727366 -22.940737419828697, -43.37276306426604 -22.940636516524606, -43.37292071036833 -22.940519598206727, -43.37306613736237 -22.940387790862374, -43.373197944706725 -22.94024236386833, -43.3733148630246 -22.94008471776604, -43.3734157663287 -22.939916370773652, -43.373499682865024 -22.93973894416473, -43.37356580447147 -22.93955414665451, -43.37361349436081 -22.939363757944033, -43.37364229325335 -22.93916961158066, -43.373651923800004 -22.9389735773, -43.37364229325335 -22.93877754301934, -43.37361349436081 -22.938583396655968, -43.37356580447147 -22.938393007945493, -43.373499682865024 -22.93820821043527, -43.3734157663287 -22.93803078382635, -43.3733148630246 -22.93786243683396, -43.373197944706725 -22.937704790731672, -43.37306613736237 -22.937559363737627, -43.37292071036833 -22.937427556393274, -43.37276306426604 -22.937310638075395, -43.37259471727366 -22.937209734771304, -43.372417290664735 -22.93712581823498, -43.37223249315451 -22.937059696628538, -43.372042104444034 -22.937012006739195, -43.371847958080664 -22.936983207846655, -43.3716519238 -22.9369735773, -43.37145588951934 -22.936983207846655, -43.37126174315597 -22.937012006739195, -43.37107135444549 -22.937059696628538, -43.37088655693527 -22.93712581823498, -43.37070913032635 -22.937209734771304, -43.370540783333965 -22.937310638075395, -43.37038313723168 -22.937427556393274, -43.37023771023763 -22.937559363737627, -43.37010590289328 -22.937704790731672, -43.3699889845754 -22.93786243683396, -43.369888081271306 -22.93803078382635, -43.36980416473498 -22.93820821043527, -43.369738043128535 -22.938393007945493, -43.36969035323919 -22.938583396655968, -43.369661554346656 -22.93877754301934, -43.3696519238 -22.9389735773))" +004086,Curicica,Jacarepaguá,88a8a07535fffff,,,,,,,, +004087,Curicica,Jacarepaguá,88a8a07535fffff,,,,,,,, +004088,Curicica,Jacarepaguá,88a8a07535fffff,,,,,,,, +004089,Campo Grande,Zona Oeste,88a8a02951fffff,,,,,,,, +004090,Campo Grande,Zona Oeste,88a8a02953fffff,,,,,,,, +004092,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +004093,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +004098,Maracanã,Grande Tijuca,88a8a06163fffff,,,,,,,, +004099,Jacarepaguá,Jacarepaguá,88a8a0621bfffff,TRUE,274,-22.96040461,-43.35682019,PO,J,Arroio Fundo,"POLYGON ((-43.3548201928 -22.9604046113, -43.354829823346655 -22.96060064558066, -43.35485862223919 -22.960794791944032, -43.354906312128534 -22.960985180654507, -43.35497243373498 -22.96116997816473, -43.355056350271305 -22.96134740477365, -43.3551572535754 -22.96151575176604, -43.35527417189328 -22.961673397868328, -43.35540597923763 -22.961818824862373, -43.355551406231676 -22.961950632206726, -43.355709052333964 -22.962067550524605, -43.355877399326346 -22.962168453828696, -43.35605482593527 -22.96225237036502, -43.35623962344549 -22.962318491971462, -43.35643001215597 -22.962366181860805, -43.35662415851934 -22.962394980753345, -43.3568201928 -22.9624046113, -43.35701622708066 -22.962394980753345, -43.35721037344403 -22.962366181860805, -43.35740076215451 -22.962318491971462, -43.357585559664734 -22.96225237036502, -43.357762986273656 -22.962168453828696, -43.35793133326604 -22.962067550524605, -43.358088979368326 -22.961950632206726, -43.35823440636237 -22.961818824862373, -43.358366213706724 -22.961673397868328, -43.3584831320246 -22.96151575176604, -43.3585840353287 -22.96134740477365, -43.35866795186502 -22.96116997816473, -43.35873407347147 -22.960985180654507, -43.35878176336081 -22.960794791944032, -43.358810562253346 -22.96060064558066, -43.3588201928 -22.9604046113, -43.358810562253346 -22.96020857701934, -43.35878176336081 -22.960014430655967, -43.35873407347147 -22.95982404194549, -43.35866795186502 -22.95963924443527, -43.3585840353287 -22.959461817826348, -43.3584831320246 -22.95929347083396, -43.358366213706724 -22.95913582473167, -43.35823440636237 -22.958990397737626, -43.358088979368326 -22.958858590393273, -43.35793133326604 -22.958741672075394, -43.357762986273656 -22.958640768771303, -43.357585559664734 -22.958556852234977, -43.35740076215451 -22.958490730628537, -43.35721037344403 -22.958443040739194, -43.35701622708066 -22.958414241846654, -43.3568201928 -22.9584046113, -43.35662415851934 -22.958414241846654, -43.35643001215597 -22.958443040739194, -43.35623962344549 -22.958490730628537, -43.35605482593527 -22.958556852234977, -43.355877399326346 -22.958640768771303, -43.355709052333964 -22.958741672075394, -43.355551406231676 -22.958858590393273, -43.35540597923763 -22.958990397737626, -43.35527417189328 -22.95913582473167, -43.3551572535754 -22.95929347083396, -43.355056350271305 -22.959461817826348, -43.35497243373498 -22.95963924443527, -43.354906312128534 -22.95982404194549, -43.35485862223919 -22.960014430655967, -43.354829823346655 -22.96020857701934, -43.3548201928 -22.9604046113))" +004100,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +004101,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +004102,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +004103,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +004104,Copacabana,Zona Sul,88a8a078e1fffff,,,,,,,, +004105,Copacabana,Zona Sul,88a8a078e3fffff,,,,,,,, +004106,Copacabana,Zona Sul,88a8a078e3fffff,,,,,,,, +004107,Copacabana,Zona Sul,88a8a078e3fffff,,,,,,,, +004108,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +004109,Vargem Pequena,Barra da Tijuca,88a8a07419fffff,,,,,,,, +004110,Campo Grande,Zona Oeste,88a8a02825fffff,TRUE,138,-22.90422112,-43.57125428,PC,S,Rio Campinho,"POLYGON ((-43.5692542846 -22.9042211237, -43.56926391514666 -22.90441715798066, -43.56929271403919 -22.904611304344034, -43.569340403928535 -22.90480169305451, -43.56940652553498 -22.90498649056473, -43.569490442071306 -22.905163917173653, -43.5695913453754 -22.90533226416604, -43.56970826369328 -22.90548991026833, -43.56984007103763 -22.905635337262375, -43.56998549803168 -22.905767144606727, -43.570143144133965 -22.905884062924606, -43.57031149112635 -22.905984966228697, -43.57048891773527 -22.906068882765023, -43.57067371524549 -22.906135004371464, -43.57086410395597 -22.906182694260806, -43.57105825031934 -22.906211493153346, -43.5712542846 -22.9062211237, -43.571450318880665 -22.906211493153346, -43.571644465244034 -22.906182694260806, -43.57183485395451 -22.906135004371464, -43.572019651464736 -22.906068882765023, -43.57219707807366 -22.905984966228697, -43.57236542506604 -22.905884062924606, -43.57252307116833 -22.905767144606727, -43.57266849816237 -22.905635337262375, -43.572800305506725 -22.90548991026833, -43.572917223824604 -22.90533226416604, -43.5730181271287 -22.905163917173653, -43.573102043665024 -22.90498649056473, -43.57316816527147 -22.90480169305451, -43.57321585516081 -22.904611304344034, -43.57324465405335 -22.90441715798066, -43.573254284600004 -22.9042211237, -43.57324465405335 -22.904025089419342, -43.57321585516081 -22.90383094305597, -43.57316816527147 -22.903640554345493, -43.573102043665024 -22.90345575683527, -43.5730181271287 -22.90327833022635, -43.572917223824604 -22.90310998323396, -43.572800305506725 -22.902952337131673, -43.57266849816237 -22.902806910137627, -43.57252307116833 -22.902675102793275, -43.57236542506604 -22.902558184475396, -43.57219707807366 -22.902457281171305, -43.572019651464736 -22.90237336463498, -43.57183485395451 -22.902307243028538, -43.571644465244034 -22.902259553139196, -43.571450318880665 -22.902230754246656, -43.5712542846 -22.902221123700002, -43.57105825031934 -22.902230754246656, -43.57086410395597 -22.902259553139196, -43.57067371524549 -22.902307243028538, -43.57048891773527 -22.90237336463498, -43.57031149112635 -22.902457281171305, -43.570143144133965 -22.902558184475396, -43.56998549803168 -22.902675102793275, -43.56984007103763 -22.902806910137627, -43.56970826369328 -22.902952337131673, -43.5695913453754 -22.90310998323396, -43.569490442071306 -22.90327833022635, -43.56940652553498 -22.90345575683527, -43.569340403928535 -22.903640554345493, -43.56929271403919 -22.90383094305597, -43.56926391514666 -22.904025089419342, -43.5692542846 -22.9042211237))" +004111,Campo Grande,Zona Oeste,88a8a02825fffff,TRUE,138,-22.90422112,-43.57125428,PC,S,Rio Campinho,"POLYGON ((-43.5692542846 -22.9042211237, -43.56926391514666 -22.90441715798066, -43.56929271403919 -22.904611304344034, -43.569340403928535 -22.90480169305451, -43.56940652553498 -22.90498649056473, -43.569490442071306 -22.905163917173653, -43.5695913453754 -22.90533226416604, -43.56970826369328 -22.90548991026833, -43.56984007103763 -22.905635337262375, -43.56998549803168 -22.905767144606727, -43.570143144133965 -22.905884062924606, -43.57031149112635 -22.905984966228697, -43.57048891773527 -22.906068882765023, -43.57067371524549 -22.906135004371464, -43.57086410395597 -22.906182694260806, -43.57105825031934 -22.906211493153346, -43.5712542846 -22.9062211237, -43.571450318880665 -22.906211493153346, -43.571644465244034 -22.906182694260806, -43.57183485395451 -22.906135004371464, -43.572019651464736 -22.906068882765023, -43.57219707807366 -22.905984966228697, -43.57236542506604 -22.905884062924606, -43.57252307116833 -22.905767144606727, -43.57266849816237 -22.905635337262375, -43.572800305506725 -22.90548991026833, -43.572917223824604 -22.90533226416604, -43.5730181271287 -22.905163917173653, -43.573102043665024 -22.90498649056473, -43.57316816527147 -22.90480169305451, -43.57321585516081 -22.904611304344034, -43.57324465405335 -22.90441715798066, -43.573254284600004 -22.9042211237, -43.57324465405335 -22.904025089419342, -43.57321585516081 -22.90383094305597, -43.57316816527147 -22.903640554345493, -43.573102043665024 -22.90345575683527, -43.5730181271287 -22.90327833022635, -43.572917223824604 -22.90310998323396, -43.572800305506725 -22.902952337131673, -43.57266849816237 -22.902806910137627, -43.57252307116833 -22.902675102793275, -43.57236542506604 -22.902558184475396, -43.57219707807366 -22.902457281171305, -43.572019651464736 -22.90237336463498, -43.57183485395451 -22.902307243028538, -43.571644465244034 -22.902259553139196, -43.571450318880665 -22.902230754246656, -43.5712542846 -22.902221123700002, -43.57105825031934 -22.902230754246656, -43.57086410395597 -22.902259553139196, -43.57067371524549 -22.902307243028538, -43.57048891773527 -22.90237336463498, -43.57031149112635 -22.902457281171305, -43.570143144133965 -22.902558184475396, -43.56998549803168 -22.902675102793275, -43.56984007103763 -22.902806910137627, -43.56970826369328 -22.902952337131673, -43.5695913453754 -22.90310998323396, -43.569490442071306 -22.90327833022635, -43.56940652553498 -22.90345575683527, -43.569340403928535 -22.903640554345493, -43.56929271403919 -22.90383094305597, -43.56926391514666 -22.904025089419342, -43.5692542846 -22.9042211237))" +004112,Campo Grande,Zona Oeste,88a8a02825fffff,TRUE,138,-22.90422112,-43.57125428,PC,S,Rio Campinho,"POLYGON ((-43.5692542846 -22.9042211237, -43.56926391514666 -22.90441715798066, -43.56929271403919 -22.904611304344034, -43.569340403928535 -22.90480169305451, -43.56940652553498 -22.90498649056473, -43.569490442071306 -22.905163917173653, -43.5695913453754 -22.90533226416604, -43.56970826369328 -22.90548991026833, -43.56984007103763 -22.905635337262375, -43.56998549803168 -22.905767144606727, -43.570143144133965 -22.905884062924606, -43.57031149112635 -22.905984966228697, -43.57048891773527 -22.906068882765023, -43.57067371524549 -22.906135004371464, -43.57086410395597 -22.906182694260806, -43.57105825031934 -22.906211493153346, -43.5712542846 -22.9062211237, -43.571450318880665 -22.906211493153346, -43.571644465244034 -22.906182694260806, -43.57183485395451 -22.906135004371464, -43.572019651464736 -22.906068882765023, -43.57219707807366 -22.905984966228697, -43.57236542506604 -22.905884062924606, -43.57252307116833 -22.905767144606727, -43.57266849816237 -22.905635337262375, -43.572800305506725 -22.90548991026833, -43.572917223824604 -22.90533226416604, -43.5730181271287 -22.905163917173653, -43.573102043665024 -22.90498649056473, -43.57316816527147 -22.90480169305451, -43.57321585516081 -22.904611304344034, -43.57324465405335 -22.90441715798066, -43.573254284600004 -22.9042211237, -43.57324465405335 -22.904025089419342, -43.57321585516081 -22.90383094305597, -43.57316816527147 -22.903640554345493, -43.573102043665024 -22.90345575683527, -43.5730181271287 -22.90327833022635, -43.572917223824604 -22.90310998323396, -43.572800305506725 -22.902952337131673, -43.57266849816237 -22.902806910137627, -43.57252307116833 -22.902675102793275, -43.57236542506604 -22.902558184475396, -43.57219707807366 -22.902457281171305, -43.572019651464736 -22.90237336463498, -43.57183485395451 -22.902307243028538, -43.571644465244034 -22.902259553139196, -43.571450318880665 -22.902230754246656, -43.5712542846 -22.902221123700002, -43.57105825031934 -22.902230754246656, -43.57086410395597 -22.902259553139196, -43.57067371524549 -22.902307243028538, -43.57048891773527 -22.90237336463498, -43.57031149112635 -22.902457281171305, -43.570143144133965 -22.902558184475396, -43.56998549803168 -22.902675102793275, -43.56984007103763 -22.902806910137627, -43.56970826369328 -22.902952337131673, -43.5695913453754 -22.90310998323396, -43.569490442071306 -22.90327833022635, -43.56940652553498 -22.90345575683527, -43.569340403928535 -22.903640554345493, -43.56929271403919 -22.90383094305597, -43.56926391514666 -22.904025089419342, -43.5692542846 -22.9042211237))" +004113,Campo Grande,Zona Oeste,88a8a02825fffff,,,,,,,, +004114,Campo Grande,Zona Oeste,88a8a02825fffff,,,,,,,, +004115,Campo Grande,Zona Oeste,88a8a02825fffff,,,,,,,, +004116,Campo Grande,Zona Oeste,88a8a029e5fffff,,,,,,,, +004118,Vidigal,Zona Sul,88a8a07a9bfffff,,,,,,,, +004119,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +004120,Centro,Centro,88a8a06a55fffff,,,,,,,, +004121,Vidigal,Zona Sul,88a8a07abbfffff,,,,,,,, +004122,Botafogo,Zona Sul,88a8a07887fffff,,,,,,,, +004123,Vidigal,Zona Sul,88a8a07a97fffff,,,,,,,, +004124,Vasco da Gama,Centro,88a8a06135fffff,,,,,,,, +004125,Vasco da Gama,Centro,88a8a06135fffff,,,,,,,, +004126,São Cristóvão,Centro,88a8a06135fffff,,,,,,,, +004127,Vasco da Gama,Centro,88a8a06123fffff,,,,,,,, +004128,Vasco da Gama,Centro,88a8a06135fffff,,,,,,,, +004129,Vasco da Gama,Centro,88a8a06135fffff,,,,,,,, +004130,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004131,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004132,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004133,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004134,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004135,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004136,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004137,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004138,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004139,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004140,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004141,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004151,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004152,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004153,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004154,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004155,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004156,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004157,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004158,Deodoro,Grande Bangu,88a8a06541fffff,,,,,,,, +004159,Deodoro,Grande Bangu,88a8a06545fffff,,,,,,,, +004160,Deodoro,Grande Bangu,88a8a06545fffff,,,,,,,, +004163,Jardim Carioca,Ilhas,88a8a0688bfffff,TRUE,323,-22.8061356,-43.19773688,PO,G,Rio Jequia,"POLYGON ((-43.1957368847 -22.8061356034, -43.195746515246654 -22.80633163768066, -43.19577531413919 -22.806525784044034, -43.19582300402853 -22.80671617275451, -43.19588912563498 -22.80690097026473, -43.1959730421713 -22.807078396873653, -43.1960739454754 -22.807246743866042, -43.19619086379328 -22.80740438996833, -43.19632267113763 -22.807549816962375, -43.196468098131675 -22.807681624306728, -43.19662574423396 -22.807798542624607, -43.196794091226344 -22.807899445928697, -43.196971517835266 -22.807983362465023, -43.19715631534549 -22.808049484071464, -43.19734670405597 -22.808097173960807, -43.19754085041934 -22.808125972853347, -43.1977368847 -22.8081356034, -43.19793291898066 -22.808125972853347, -43.19812706534403 -22.808097173960807, -43.19831745405451 -22.808049484071464, -43.19850225156473 -22.807983362465023, -43.198679678173654 -22.807899445928697, -43.198848025166036 -22.807798542624607, -43.199005671268324 -22.807681624306728, -43.19915109826237 -22.807549816962375, -43.19928290560672 -22.80740438996833, -43.1993998239246 -22.807246743866042, -43.199500727228695 -22.807078396873653, -43.19958464376502 -22.80690097026473, -43.199650765371466 -22.80671617275451, -43.19969845526081 -22.806525784044034, -43.199727254153345 -22.80633163768066, -43.1997368847 -22.8061356034, -43.199727254153345 -22.805939569119342, -43.19969845526081 -22.80574542275597, -43.199650765371466 -22.805555034045494, -43.19958464376502 -22.80537023653527, -43.199500727228695 -22.80519280992635, -43.1993998239246 -22.80502446293396, -43.19928290560672 -22.804866816831673, -43.19915109826237 -22.804721389837628, -43.199005671268324 -22.804589582493275, -43.198848025166036 -22.804472664175396, -43.198679678173654 -22.804371760871305, -43.19850225156473 -22.80428784433498, -43.19831745405451 -22.80422172272854, -43.19812706534403 -22.804174032839196, -43.19793291898066 -22.804145233946656, -43.1977368847 -22.804135603400002, -43.19754085041934 -22.804145233946656, -43.19734670405597 -22.804174032839196, -43.19715631534549 -22.80422172272854, -43.196971517835266 -22.80428784433498, -43.196794091226344 -22.804371760871305, -43.19662574423396 -22.804472664175396, -43.196468098131675 -22.804589582493275, -43.19632267113763 -22.804721389837628, -43.19619086379328 -22.804866816831673, -43.1960739454754 -22.80502446293396, -43.1959730421713 -22.80519280992635, -43.19588912563498 -22.80537023653527, -43.19582300402853 -22.805555034045494, -43.19577531413919 -22.80574542275597, -43.195746515246654 -22.805939569119342, -43.1957368847 -22.8061356034))" +004164,Jardim Carioca,Ilhas,88a8a0688bfffff,,,,,,,, +004165,Jardim Carioca,Ilhas,88a8a0688bfffff,,,,,,,, +004166,Portuguesa,Ilhas,88a8a06883fffff,,,,,,,, +004167,Zumbi,Ilhas,88a8a068e9fffff,,,,,,,, +004168,Portuguesa,Ilhas,88a8a0689dfffff,,,,,,,, +004169,Portuguesa,Ilhas,88a8a0689dfffff,,,,,,,, +004170,Portuguesa,Ilhas,88a8a0689dfffff,,,,,,,, +004171,Portuguesa,Ilhas,88a8a0689dfffff,,,,,,,, +004172,Ribeira,Ilhas,88a8a068edfffff,,,,,,,, +004173,Ribeira,Ilhas,88a8a068edfffff,,,,,,,, +004174,Ribeira,Ilhas,88a8a068edfffff,,,,,,,, +004175,Galeão,Ilhas,88a8a06f65fffff,TRUE,318,-22.81994455,-43.22676948,PO,G,Praia de Sao Bento,"POLYGON ((-43.2247694753 -22.819944552, -43.22477910584666 -22.820140586280658, -43.224807904739194 -22.82033473264403, -43.224855594628536 -22.820525121354507, -43.22492171623498 -22.82070991886473, -43.22500563277131 -22.82088734547365, -43.2251065360754 -22.82105569246604, -43.22522345439328 -22.821213338568327, -43.22535526173763 -22.821358765562373, -43.22550068873168 -22.821490572906725, -43.225658334833966 -22.821607491224604, -43.22582668182635 -22.821708394528695, -43.22600410843527 -22.82179231106502, -43.22618890594549 -22.821858432671462, -43.22637929465597 -22.821906122560804, -43.22657344101934 -22.821934921453344, -43.2267694753 -22.821944551999998, -43.226965509580666 -22.821934921453344, -43.227159655944035 -22.821906122560804, -43.227350044654514 -22.821858432671462, -43.22753484216474 -22.82179231106502, -43.22771226877366 -22.821708394528695, -43.22788061576604 -22.821607491224604, -43.22803826186833 -22.821490572906725, -43.22818368886237 -22.821358765562373, -43.228315496206726 -22.821213338568327, -43.228432414524605 -22.82105569246604, -43.2285333178287 -22.82088734547365, -43.228617234365025 -22.82070991886473, -43.22868335597147 -22.820525121354507, -43.22873104586081 -22.82033473264403, -43.22875984475335 -22.820140586280658, -43.228769475300005 -22.819944552, -43.22875984475335 -22.81974851771934, -43.22873104586081 -22.819554371355967, -43.22868335597147 -22.81936398264549, -43.228617234365025 -22.81917918513527, -43.2285333178287 -22.819001758526348, -43.228432414524605 -22.81883341153396, -43.228315496206726 -22.81867576543167, -43.22818368886237 -22.818530338437625, -43.22803826186833 -22.818398531093273, -43.22788061576604 -22.818281612775394, -43.22771226877366 -22.818180709471303, -43.22753484216474 -22.818096792934977, -43.227350044654514 -22.818030671328536, -43.227159655944035 -22.817982981439194, -43.226965509580666 -22.817954182546654, -43.2267694753 -22.817944552, -43.22657344101934 -22.817954182546654, -43.22637929465597 -22.817982981439194, -43.22618890594549 -22.818030671328536, -43.22600410843527 -22.818096792934977, -43.22582668182635 -22.818180709471303, -43.225658334833966 -22.818281612775394, -43.22550068873168 -22.818398531093273, -43.22535526173763 -22.818530338437625, -43.22522345439328 -22.81867576543167, -43.2251065360754 -22.81883341153396, -43.22500563277131 -22.819001758526348, -43.22492171623498 -22.81917918513527, -43.224855594628536 -22.81936398264549, -43.224807904739194 -22.819554371355967, -43.22477910584666 -22.81974851771934, -43.2247694753 -22.819944552))" +004176,Cacuia,Ilhas,88a8a068c7fffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +004177,Cacuia,Ilhas,88a8a068c7fffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +004178,Cacuia,Ilhas,88a8a068c7fffff,TRUE,74,-22.81596069,-43.18665622,PC,G,Rio Jequia,"POLYGON ((-43.1846562183 -22.8159606868, -43.184665848846656 -22.81615672108066, -43.18469464773919 -22.816350867444033, -43.184742337628535 -22.81654125615451, -43.18480845923498 -22.81672605366473, -43.184892375771305 -22.816903480273652, -43.1849932790754 -22.81707182726604, -43.18511019739328 -22.81722947336833, -43.18524200473763 -22.817374900362374, -43.18538743173168 -22.817506707706727, -43.185545077833964 -22.817623626024606, -43.185713424826346 -22.817724529328697, -43.18589085143527 -22.817808445865023, -43.18607564894549 -22.817874567471463, -43.18626603765597 -22.817922257360806, -43.18646018401934 -22.817951056253346, -43.1866562183 -22.8179606868, -43.186852252580664 -22.817951056253346, -43.187046398944034 -22.817922257360806, -43.18723678765451 -22.817874567471463, -43.187421585164735 -22.817808445865023, -43.187599011773656 -22.817724529328697, -43.18776735876604 -22.817623626024606, -43.187925004868326 -22.817506707706727, -43.18807043186237 -22.817374900362374, -43.188202239206724 -22.81722947336833, -43.1883191575246 -22.81707182726604, -43.1884200608287 -22.816903480273652, -43.18850397736502 -22.81672605366473, -43.18857009897147 -22.81654125615451, -43.18861778886081 -22.816350867444033, -43.18864658775335 -22.81615672108066, -43.188656218300004 -22.8159606868, -43.18864658775335 -22.81576465251934, -43.18861778886081 -22.815570506155968, -43.18857009897147 -22.815380117445493, -43.18850397736502 -22.81519531993527, -43.1884200608287 -22.81501789332635, -43.1883191575246 -22.81484954633396, -43.188202239206724 -22.814691900231672, -43.18807043186237 -22.814546473237627, -43.187925004868326 -22.814414665893274, -43.18776735876604 -22.814297747575395, -43.187599011773656 -22.814196844271304, -43.187421585164735 -22.81411292773498, -43.18723678765451 -22.814046806128538, -43.187046398944034 -22.813999116239195, -43.186852252580664 -22.813970317346655, -43.1866562183 -22.8139606868, -43.18646018401934 -22.813970317346655, -43.18626603765597 -22.813999116239195, -43.18607564894549 -22.814046806128538, -43.18589085143527 -22.81411292773498, -43.185713424826346 -22.814196844271304, -43.185545077833964 -22.814297747575395, -43.18538743173168 -22.814414665893274, -43.18524200473763 -22.814546473237627, -43.18511019739328 -22.814691900231672, -43.1849932790754 -22.81484954633396, -43.184892375771305 -22.81501789332635, -43.18480845923498 -22.81519531993527, -43.184742337628535 -22.815380117445493, -43.18469464773919 -22.815570506155968, -43.184665848846656 -22.81576465251934, -43.1846562183 -22.8159606868))" +004179,Cacuia,Ilhas,88a8a068c7fffff,,,,,,,, +004180,Cacuia,Ilhas,88a8a068c7fffff,,,,,,,, +004181,Tauá,Ilhas,88a8a068abfffff,,,,,,,, +004182,Tauá,Ilhas,88a8a068abfffff,,,,,,,, +004183,Tauá,Ilhas,88a8a068abfffff,TRUE,28,-22.79292596,-43.18392301,PC,G,Canal dos Bancarios,"POLYGON ((-43.1819230083 -22.7929259551, -43.181932638846654 -22.79312198938066, -43.18196143773919 -22.793316135744032, -43.18200912762853 -22.793506524454507, -43.18207524923498 -22.79369132196473, -43.1821591657713 -22.79386874857365, -43.1822600690754 -22.79403709556604, -43.182376987393276 -22.794194741668328, -43.18250879473763 -22.794340168662373, -43.182654221731674 -22.794471976006726, -43.18281186783396 -22.794588894324605, -43.182980214826344 -22.794689797628696, -43.183157641435265 -22.79477371416502, -43.18334243894549 -22.794839835771462, -43.18353282765597 -22.794887525660805, -43.183726974019336 -22.794916324553345, -43.1839230083 -22.7949259551, -43.18411904258066 -22.794916324553345, -43.18431318894403 -22.794887525660805, -43.18450357765451 -22.794839835771462, -43.18468837516473 -22.79477371416502, -43.184865801773654 -22.794689797628696, -43.185034148766036 -22.794588894324605, -43.185191794868324 -22.794471976006726, -43.18533722186237 -22.794340168662373, -43.18546902920672 -22.794194741668328, -43.1855859475246 -22.79403709556604, -43.185686850828695 -22.79386874857365, -43.18577076736502 -22.79369132196473, -43.185836888971465 -22.793506524454507, -43.18588457886081 -22.793316135744032, -43.185913377753344 -22.79312198938066, -43.1859230083 -22.7929259551, -43.185913377753344 -22.79272992081934, -43.18588457886081 -22.792535774455967, -43.185836888971465 -22.79234538574549, -43.18577076736502 -22.79216058823527, -43.185686850828695 -22.791983161626348, -43.1855859475246 -22.79181481463396, -43.18546902920672 -22.79165716853167, -43.18533722186237 -22.791511741537626, -43.185191794868324 -22.791379934193273, -43.185034148766036 -22.791263015875394, -43.184865801773654 -22.791162112571303, -43.18468837516473 -22.791078196034977, -43.18450357765451 -22.791012074428536, -43.18431318894403 -22.790964384539194, -43.18411904258066 -22.790935585646654, -43.1839230083 -22.7909259551, -43.183726974019336 -22.790935585646654, -43.18353282765597 -22.790964384539194, -43.18334243894549 -22.791012074428536, -43.183157641435265 -22.791078196034977, -43.182980214826344 -22.791162112571303, -43.18281186783396 -22.791263015875394, -43.182654221731674 -22.791379934193273, -43.18250879473763 -22.791511741537626, -43.182376987393276 -22.79165716853167, -43.1822600690754 -22.79181481463396, -43.1821591657713 -22.791983161626348, -43.18207524923498 -22.79216058823527, -43.18200912762853 -22.79234538574549, -43.18196143773919 -22.792535774455967, -43.181932638846654 -22.79272992081934, -43.1819230083 -22.7929259551))" +004184,Tauá,Ilhas,88a8a068abfffff,TRUE,28,-22.79292596,-43.18392301,PC,G,Canal dos Bancarios,"POLYGON ((-43.1819230083 -22.7929259551, -43.181932638846654 -22.79312198938066, -43.18196143773919 -22.793316135744032, -43.18200912762853 -22.793506524454507, -43.18207524923498 -22.79369132196473, -43.1821591657713 -22.79386874857365, -43.1822600690754 -22.79403709556604, -43.182376987393276 -22.794194741668328, -43.18250879473763 -22.794340168662373, -43.182654221731674 -22.794471976006726, -43.18281186783396 -22.794588894324605, -43.182980214826344 -22.794689797628696, -43.183157641435265 -22.79477371416502, -43.18334243894549 -22.794839835771462, -43.18353282765597 -22.794887525660805, -43.183726974019336 -22.794916324553345, -43.1839230083 -22.7949259551, -43.18411904258066 -22.794916324553345, -43.18431318894403 -22.794887525660805, -43.18450357765451 -22.794839835771462, -43.18468837516473 -22.79477371416502, -43.184865801773654 -22.794689797628696, -43.185034148766036 -22.794588894324605, -43.185191794868324 -22.794471976006726, -43.18533722186237 -22.794340168662373, -43.18546902920672 -22.794194741668328, -43.1855859475246 -22.79403709556604, -43.185686850828695 -22.79386874857365, -43.18577076736502 -22.79369132196473, -43.185836888971465 -22.793506524454507, -43.18588457886081 -22.793316135744032, -43.185913377753344 -22.79312198938066, -43.1859230083 -22.7929259551, -43.185913377753344 -22.79272992081934, -43.18588457886081 -22.792535774455967, -43.185836888971465 -22.79234538574549, -43.18577076736502 -22.79216058823527, -43.185686850828695 -22.791983161626348, -43.1855859475246 -22.79181481463396, -43.18546902920672 -22.79165716853167, -43.18533722186237 -22.791511741537626, -43.185191794868324 -22.791379934193273, -43.185034148766036 -22.791263015875394, -43.184865801773654 -22.791162112571303, -43.18468837516473 -22.791078196034977, -43.18450357765451 -22.791012074428536, -43.18431318894403 -22.790964384539194, -43.18411904258066 -22.790935585646654, -43.1839230083 -22.7909259551, -43.183726974019336 -22.790935585646654, -43.18353282765597 -22.790964384539194, -43.18334243894549 -22.791012074428536, -43.183157641435265 -22.791078196034977, -43.182980214826344 -22.791162112571303, -43.18281186783396 -22.791263015875394, -43.182654221731674 -22.791379934193273, -43.18250879473763 -22.791511741537626, -43.182376987393276 -22.79165716853167, -43.1822600690754 -22.79181481463396, -43.1821591657713 -22.791983161626348, -43.18207524923498 -22.79216058823527, -43.18200912762853 -22.79234538574549, -43.18196143773919 -22.792535774455967, -43.181932638846654 -22.79272992081934, -43.1819230083 -22.7929259551))" +004185,Tauá,Ilhas,88a8a068abfffff,TRUE,28,-22.79292596,-43.18392301,PC,G,Canal dos Bancarios,"POLYGON ((-43.1819230083 -22.7929259551, -43.181932638846654 -22.79312198938066, -43.18196143773919 -22.793316135744032, -43.18200912762853 -22.793506524454507, -43.18207524923498 -22.79369132196473, -43.1821591657713 -22.79386874857365, -43.1822600690754 -22.79403709556604, -43.182376987393276 -22.794194741668328, -43.18250879473763 -22.794340168662373, -43.182654221731674 -22.794471976006726, -43.18281186783396 -22.794588894324605, -43.182980214826344 -22.794689797628696, -43.183157641435265 -22.79477371416502, -43.18334243894549 -22.794839835771462, -43.18353282765597 -22.794887525660805, -43.183726974019336 -22.794916324553345, -43.1839230083 -22.7949259551, -43.18411904258066 -22.794916324553345, -43.18431318894403 -22.794887525660805, -43.18450357765451 -22.794839835771462, -43.18468837516473 -22.79477371416502, -43.184865801773654 -22.794689797628696, -43.185034148766036 -22.794588894324605, -43.185191794868324 -22.794471976006726, -43.18533722186237 -22.794340168662373, -43.18546902920672 -22.794194741668328, -43.1855859475246 -22.79403709556604, -43.185686850828695 -22.79386874857365, -43.18577076736502 -22.79369132196473, -43.185836888971465 -22.793506524454507, -43.18588457886081 -22.793316135744032, -43.185913377753344 -22.79312198938066, -43.1859230083 -22.7929259551, -43.185913377753344 -22.79272992081934, -43.18588457886081 -22.792535774455967, -43.185836888971465 -22.79234538574549, -43.18577076736502 -22.79216058823527, -43.185686850828695 -22.791983161626348, -43.1855859475246 -22.79181481463396, -43.18546902920672 -22.79165716853167, -43.18533722186237 -22.791511741537626, -43.185191794868324 -22.791379934193273, -43.185034148766036 -22.791263015875394, -43.184865801773654 -22.791162112571303, -43.18468837516473 -22.791078196034977, -43.18450357765451 -22.791012074428536, -43.18431318894403 -22.790964384539194, -43.18411904258066 -22.790935585646654, -43.1839230083 -22.7909259551, -43.183726974019336 -22.790935585646654, -43.18353282765597 -22.790964384539194, -43.18334243894549 -22.791012074428536, -43.183157641435265 -22.791078196034977, -43.182980214826344 -22.791162112571303, -43.18281186783396 -22.791263015875394, -43.182654221731674 -22.791379934193273, -43.18250879473763 -22.791511741537626, -43.182376987393276 -22.79165716853167, -43.1822600690754 -22.79181481463396, -43.1821591657713 -22.791983161626348, -43.18207524923498 -22.79216058823527, -43.18200912762853 -22.79234538574549, -43.18196143773919 -22.792535774455967, -43.181932638846654 -22.79272992081934, -43.1819230083 -22.7929259551))" +004186,Freguesia (Ilha),Ilhas,88a8a068a1fffff,,,,,,,, +004187,Freguesia (Ilha),Ilhas,88a8a068a1fffff,,,,,,,, +004188,Freguesia (Ilha),Ilhas,88a8a068a1fffff,,,,,,,, +004189,Freguesia (Ilha),Ilhas,88a8a068a1fffff,TRUE,80,-22.79239606,-43.17393575,PC,G,Praia da Guanabara,"POLYGON ((-43.1719357466 -22.7923960613, -43.171945377146656 -22.79259209558066, -43.17197417603919 -22.792786241944032, -43.172021865928535 -22.792976630654508, -43.17208798753498 -22.79316142816473, -43.172171904071305 -22.79333885477365, -43.1722728073754 -22.79350720176604, -43.17238972569328 -22.793664847868328, -43.17252153303763 -22.793810274862373, -43.17266696003168 -22.793942082206726, -43.172824606133965 -22.794059000524605, -43.17299295312635 -22.794159903828696, -43.17317037973527 -22.794243820365022, -43.17335517724549 -22.794309941971463, -43.17354556595597 -22.794357631860805, -43.17373971231934 -22.794386430753345, -43.1739357466 -22.7943960613, -43.174131780880664 -22.794386430753345, -43.174325927244034 -22.794357631860805, -43.17451631595451 -22.794309941971463, -43.174701113464735 -22.794243820365022, -43.17487854007366 -22.794159903828696, -43.17504688706604 -22.794059000524605, -43.175204533168326 -22.793942082206726, -43.17534996016237 -22.793810274862373, -43.175481767506724 -22.793664847868328, -43.1755986858246 -22.79350720176604, -43.1756995891287 -22.79333885477365, -43.175783505665024 -22.79316142816473, -43.17584962727147 -22.792976630654508, -43.17589731716081 -22.792786241944032, -43.17592611605335 -22.79259209558066, -43.175935746600004 -22.7923960613, -43.17592611605335 -22.79220002701934, -43.17589731716081 -22.792005880655967, -43.17584962727147 -22.791815491945492, -43.175783505665024 -22.79163069443527, -43.1756995891287 -22.79145326782635, -43.1755986858246 -22.79128492083396, -43.175481767506724 -22.79112727473167, -43.17534996016237 -22.790981847737626, -43.175204533168326 -22.790850040393273, -43.17504688706604 -22.790733122075395, -43.17487854007366 -22.790632218771304, -43.174701113464735 -22.790548302234978, -43.17451631595451 -22.790482180628537, -43.174325927244034 -22.790434490739194, -43.174131780880664 -22.790405691846654, -43.1739357466 -22.7903960613, -43.17373971231934 -22.790405691846654, -43.17354556595597 -22.790434490739194, -43.17335517724549 -22.790482180628537, -43.17317037973527 -22.790548302234978, -43.17299295312635 -22.790632218771304, -43.172824606133965 -22.790733122075395, -43.17266696003168 -22.790850040393273, -43.17252153303763 -22.790981847737626, -43.17238972569328 -22.79112727473167, -43.1722728073754 -22.79128492083396, -43.172171904071305 -22.79145326782635, -43.17208798753498 -22.79163069443527, -43.172021865928535 -22.791815491945492, -43.17197417603919 -22.792005880655967, -43.171945377146656 -22.79220002701934, -43.1719357466 -22.7923960613))" +004193,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004194,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004195,Cidade Nova,Centro,88a8a06a5bfffff,,,,,,,, +004196,Cidade Nova,Centro,88a8a06a5bfffff,,,,,,,, +004197,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +004198,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +004199,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004200,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004201,Cidade Nova,Centro,88a8a06a5bfffff,,,,,,,, +004202,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +004203,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +004204,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +004205,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +004206,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +004207,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +004208,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +004209,Cascadura,Zona Norte,88a8a060e7fffff,TRUE,408,-22.8838102,-43.32601123,PO,G,,"POLYGON ((-43.3240112282967 -22.8838102014032, -43.324020858843355 -22.88400623568386, -43.32404965773589 -22.884200382047233, -43.324097347625234 -22.884390770757708, -43.32416346923168 -22.88457556826793, -43.324247385768004 -22.88475299487685, -43.3243482890721 -22.88492134186924, -43.32446520738998 -22.88507898797153, -43.32459701473433 -22.885224414965574, -43.324742441728375 -22.885356222309927, -43.32490008783066 -22.885473140627806, -43.325068434823045 -22.885574043931896, -43.325245861431966 -22.885657960468222, -43.32543065894219 -22.885724082074663, -43.32562104765267 -22.885771771964006, -43.32581519401604 -22.885800570856546, -43.3260112282967 -22.8858102014032, -43.32620726257736 -22.885800570856546, -43.32640140894073 -22.885771771964006, -43.32659179765121 -22.885724082074663, -43.326776595161434 -22.885657960468222, -43.326954021770355 -22.885574043931896, -43.32712236876274 -22.885473140627806, -43.327280014865025 -22.885356222309927, -43.32742544185907 -22.885224414965574, -43.32755724920342 -22.88507898797153, -43.3276741675213 -22.88492134186924, -43.327775070825396 -22.88475299487685, -43.32785898736172 -22.88457556826793, -43.32792510896817 -22.884390770757708, -43.32797279885751 -22.884200382047233, -43.328001597750045 -22.88400623568386, -43.3280112282967 -22.8838102014032, -43.328001597750045 -22.88361416712254, -43.32797279885751 -22.883420020759168, -43.32792510896817 -22.883229632048693, -43.32785898736172 -22.88304483453847, -43.327775070825396 -22.88286740792955, -43.3276741675213 -22.88269906093716, -43.32755724920342 -22.882541414834872, -43.32742544185907 -22.882395987840827, -43.327280014865025 -22.882264180496474, -43.32712236876274 -22.882147262178595, -43.326954021770355 -22.882046358874504, -43.326776595161434 -22.881962442338178, -43.32659179765121 -22.881896320731737, -43.32640140894073 -22.881848630842395, -43.32620726257736 -22.881819831949855, -43.3260112282967 -22.8818102014032, -43.32581519401604 -22.881819831949855, -43.32562104765267 -22.881848630842395, -43.32543065894219 -22.881896320731737, -43.325245861431966 -22.881962442338178, -43.325068434823045 -22.882046358874504, -43.32490008783066 -22.882147262178595, -43.324742441728375 -22.882264180496474, -43.32459701473433 -22.882395987840827, -43.32446520738998 -22.882541414834872, -43.3243482890721 -22.88269906093716, -43.324247385768004 -22.88286740792955, -43.32416346923168 -22.88304483453847, -43.324097347625234 -22.883229632048693, -43.32404965773589 -22.883420020759168, -43.324020858843355 -22.88361416712254, -43.3240112282967 -22.8838102014032))" +004210,Cascadura,Zona Norte,88a8a060e7fffff,,,,,,,, +004224,Barra da Tijuca,Barra da Tijuca,88a8a0719dfffff,TRUE,321,-23.01267129,-43.29684764,PO,J,Lagoa da Tijuca,"POLYGON ((-43.2948476428 -23.0126712877, -43.29485727334666 -23.01286732198066, -43.294886072239194 -23.013061468344034, -43.29493376212854 -23.01325185705451, -43.29499988373498 -23.01343665456473, -43.29508380027131 -23.013614081173653, -43.2951847035754 -23.013782428166042, -43.29530162189328 -23.01394007426833, -43.29543342923763 -23.014085501262375, -43.29557885623168 -23.014217308606728, -43.295736502333966 -23.014334226924607, -43.29590484932635 -23.014435130228698, -43.29608227593527 -23.014519046765024, -43.29626707344549 -23.014585168371465, -43.29645746215597 -23.014632858260807, -43.29665160851934 -23.014661657153347, -43.2968476428 -23.0146712877, -43.297043677080666 -23.014661657153347, -43.297237823444036 -23.014632858260807, -43.297428212154514 -23.014585168371465, -43.29761300966474 -23.014519046765024, -43.29779043627366 -23.014435130228698, -43.29795878326604 -23.014334226924607, -43.29811642936833 -23.014217308606728, -43.29826185636237 -23.014085501262375, -43.298393663706726 -23.01394007426833, -43.298510582024605 -23.013782428166042, -43.2986114853287 -23.013614081173653, -43.298695401865025 -23.01343665456473, -43.29876152347147 -23.01325185705451, -43.29880921336081 -23.013061468344034, -43.29883801225335 -23.01286732198066, -43.298847642800006 -23.0126712877, -43.29883801225335 -23.012475253419343, -43.29880921336081 -23.01228110705597, -43.29876152347147 -23.012090718345494, -43.298695401865025 -23.01190592083527, -43.2986114853287 -23.01172849422635, -43.298510582024605 -23.01156014723396, -43.298393663706726 -23.011402501131673, -43.29826185636237 -23.011257074137628, -43.29811642936833 -23.011125266793275, -43.29795878326604 -23.011008348475396, -43.29779043627366 -23.010907445171306, -43.29761300966474 -23.01082352863498, -43.297428212154514 -23.01075740702854, -43.297237823444036 -23.010709717139196, -43.297043677080666 -23.010680918246656, -43.2968476428 -23.010671287700003, -43.29665160851934 -23.010680918246656, -43.29645746215597 -23.010709717139196, -43.29626707344549 -23.01075740702854, -43.29608227593527 -23.01082352863498, -43.29590484932635 -23.010907445171306, -43.295736502333966 -23.011008348475396, -43.29557885623168 -23.011125266793275, -43.29543342923763 -23.011257074137628, -43.29530162189328 -23.011402501131673, -43.2951847035754 -23.01156014723396, -43.29508380027131 -23.01172849422635, -43.29499988373498 -23.01190592083527, -43.29493376212854 -23.012090718345494, -43.294886072239194 -23.01228110705597, -43.29485727334666 -23.012475253419343, -43.2948476428 -23.0126712877))" +004227,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +004228,São Cristóvão,Centro,88a8a06127fffff,,,,,,,, +004229,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +004230,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +004231,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +004232,São Cristóvão,Centro,88a8a06127fffff,,,,,,,, +004233,São Cristóvão,Centro,88a8a06ac9fffff,,,,,,,, +004234,São Cristóvão,Centro,88a8a06ac9fffff,,,,,,,, +004235,São Cristóvão,Centro,88a8a06123fffff,,,,,,,, +004236,São Cristóvão,Centro,88a8a06ac9fffff,,,,,,,, +004237,São Cristóvão,Centro,88a8a06121fffff,,,,,,,, +004238,Ipanema,Zona Sul,88a8a07aa7fffff,,,,,,,, +004239,Ipanema,Zona Sul,88a8a07aa7fffff,,,,,,,, +004241,Cachambi,Zona Norte,88a8a061c7fffff,,,,,,,, +004242,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +004245,Abolição,Zona Norte,88a8a061ddfffff,TRUE,253,-22.88849326,-43.29526275,PM,G,Canal do Cunha,"POLYGON ((-43.2932627524 -22.8884932576, -43.293272382946654 -22.88868929188066, -43.29330118183919 -22.888883438244033, -43.29334887172853 -22.889073826954508, -43.29341499333498 -22.88925862446473, -43.2934989098713 -22.889436051073652, -43.2935998131754 -22.88960439806604, -43.29371673149328 -22.88976204416833, -43.29384853883763 -22.889907471162374, -43.293993965831675 -22.890039278506727, -43.29415161193396 -22.890156196824606, -43.294319958926344 -22.890257100128697, -43.294497385535266 -22.890341016665023, -43.29468218304549 -22.890407138271463, -43.29487257175597 -22.890454828160806, -43.29506671811934 -22.890483627053346, -43.2952627524 -22.8904932576, -43.29545878668066 -22.890483627053346, -43.29565293304403 -22.890454828160806, -43.29584332175451 -22.890407138271463, -43.29602811926473 -22.890341016665023, -43.296205545873654 -22.890257100128697, -43.296373892866036 -22.890156196824606, -43.296531538968324 -22.890039278506727, -43.29667696596237 -22.889907471162374, -43.29680877330672 -22.88976204416833, -43.2969256916246 -22.88960439806604, -43.297026594928695 -22.889436051073652, -43.29711051146502 -22.88925862446473, -43.297176633071466 -22.889073826954508, -43.29722432296081 -22.888883438244033, -43.297253121853345 -22.88868929188066, -43.2972627524 -22.8884932576, -43.297253121853345 -22.88829722331934, -43.29722432296081 -22.888103076955968, -43.297176633071466 -22.887912688245493, -43.29711051146502 -22.88772789073527, -43.297026594928695 -22.88755046412635, -43.2969256916246 -22.88738211713396, -43.29680877330672 -22.887224471031672, -43.29667696596237 -22.887079044037627, -43.296531538968324 -22.886947236693274, -43.296373892866036 -22.886830318375395, -43.296205545873654 -22.886729415071304, -43.29602811926473 -22.88664549853498, -43.29584332175451 -22.886579376928537, -43.29565293304403 -22.886531687039195, -43.29545878668066 -22.886502888146655, -43.2952627524 -22.8864932576, -43.29506671811934 -22.886502888146655, -43.29487257175597 -22.886531687039195, -43.29468218304549 -22.886579376928537, -43.294497385535266 -22.88664549853498, -43.294319958926344 -22.886729415071304, -43.29415161193396 -22.886830318375395, -43.293993965831675 -22.886947236693274, -43.29384853883763 -22.887079044037627, -43.29371673149328 -22.887224471031672, -43.2935998131754 -22.88738211713396, -43.2934989098713 -22.88755046412635, -43.29341499333498 -22.88772789073527, -43.29334887172853 -22.887912688245493, -43.29330118183919 -22.888103076955968, -43.293272382946654 -22.88829722331934, -43.2932627524 -22.8884932576))" +004246,Todos os Santos,Zona Norte,88a8a061c9fffff,,,,,,,, +004247,Todos os Santos,Zona Norte,88a8a061c9fffff,,,,,,,, +004248,Engenho de Dentro,Zona Norte,88a8a061cbfffff,,,,,,,, +004250,Todos os Santos,Zona Norte,88a8a061c9fffff,,,,,,,, +004251,Todos os Santos,Zona Norte,88a8a061c1fffff,,,,,,,, +004253,Engenho de Dentro,Zona Norte,88a8a061c3fffff,,,,,,,, +004254,Engenho de Dentro,Zona Norte,88a8a06035fffff,,,,,,,, +004256,Engenho de Dentro,Zona Norte,88a8a06037fffff,TRUE,30,-22.89329135,-43.29854429,PM,G,Canal do Cunha,"POLYGON ((-43.296544290099995 -22.8932913468, -43.29655392064665 -22.89348738108066, -43.29658271953919 -22.893681527444034, -43.29663040942853 -22.89387191615451, -43.296696531034975 -22.89405671366473, -43.2967804475713 -22.894234140273653, -43.296881350875395 -22.894402487266042, -43.296998269193274 -22.89456013336833, -43.29713007653763 -22.894705560362375, -43.29727550353167 -22.894837367706728, -43.29743314963396 -22.894954286024607, -43.29760149662634 -22.895055189328698, -43.29777892323526 -22.895139105865024, -43.297963720745486 -22.895205227471465, -43.298154109455965 -22.895252917360807, -43.298348255819334 -22.895281716253347, -43.2985442901 -22.8952913468, -43.29874032438066 -22.895281716253347, -43.29893447074403 -22.895252917360807, -43.29912485945451 -22.895205227471465, -43.29930965696473 -22.895139105865024, -43.29948708357365 -22.895055189328698, -43.299655430566034 -22.894954286024607, -43.29981307666832 -22.894837367706728, -43.29995850366237 -22.894705560362375, -43.30009031100672 -22.89456013336833, -43.3002072293246 -22.894402487266042, -43.30030813262869 -22.894234140273653, -43.30039204916502 -22.89405671366473, -43.30045817077146 -22.89387191615451, -43.300505860660806 -22.893681527444034, -43.30053465955334 -22.89348738108066, -43.3005442901 -22.8932913468, -43.30053465955334 -22.893095312519343, -43.300505860660806 -22.89290116615597, -43.30045817077146 -22.892710777445494, -43.30039204916502 -22.89252597993527, -43.30030813262869 -22.89234855332635, -43.3002072293246 -22.89218020633396, -43.30009031100672 -22.892022560231673, -43.29995850366237 -22.891877133237628, -43.29981307666832 -22.891745325893275, -43.299655430566034 -22.891628407575396, -43.29948708357365 -22.891527504271306, -43.29930965696473 -22.89144358773498, -43.29912485945451 -22.89137746612854, -43.29893447074403 -22.891329776239196, -43.29874032438066 -22.891300977346656, -43.2985442901 -22.891291346800003, -43.298348255819334 -22.891300977346656, -43.298154109455965 -22.891329776239196, -43.297963720745486 -22.89137746612854, -43.29777892323526 -22.89144358773498, -43.29760149662634 -22.891527504271306, -43.29743314963396 -22.891628407575396, -43.29727550353167 -22.891745325893275, -43.29713007653763 -22.891877133237628, -43.296998269193274 -22.892022560231673, -43.296881350875395 -22.89218020633396, -43.2967804475713 -22.89234855332635, -43.296696531034975 -22.89252597993527, -43.29663040942853 -22.892710777445494, -43.29658271953919 -22.89290116615597, -43.29655392064665 -22.893095312519343, -43.296544290099995 -22.8932913468))" +004257,Encantado,Zona Norte,88a8a06031fffff,TRUE,447,-22.895417,-43.302948,PO,G,,"POLYGON ((-43.300948 -22.895417, -43.300957630546655 -22.895613034280657, -43.30098642943919 -22.89580718064403, -43.301034119328534 -22.895997569354506, -43.30110024093498 -22.89618236686473, -43.301184157471305 -22.89635979347365, -43.3012850607754 -22.89652814046604, -43.30140197909328 -22.896685786568327, -43.30153378643763 -22.896831213562372, -43.301679213431676 -22.896963020906725, -43.301836859533964 -22.897079939224604, -43.302005206526346 -22.897180842528694, -43.30218263313527 -22.89726475906502, -43.30236743064549 -22.89733088067146, -43.30255781935597 -22.897378570560804, -43.30275196571934 -22.897407369453344, -43.302948 -22.897416999999997, -43.30314403428066 -22.897407369453344, -43.30333818064403 -22.897378570560804, -43.30352856935451 -22.89733088067146, -43.303713366864734 -22.89726475906502, -43.303890793473656 -22.897180842528694, -43.30405914046604 -22.897079939224604, -43.304216786568325 -22.896963020906725, -43.30436221356237 -22.896831213562372, -43.30449402090672 -22.896685786568327, -43.3046109392246 -22.89652814046604, -43.3047118425287 -22.89635979347365, -43.30479575906502 -22.89618236686473, -43.30486188067147 -22.895997569354506, -43.30490957056081 -22.89580718064403, -43.304938369453346 -22.895613034280657, -43.304948 -22.895417, -43.304938369453346 -22.89522096571934, -43.30490957056081 -22.895026819355966, -43.30486188067147 -22.89483643064549, -43.30479575906502 -22.89465163313527, -43.3047118425287 -22.894474206526347, -43.3046109392246 -22.894305859533958, -43.30449402090672 -22.89414821343167, -43.30436221356237 -22.894002786437625, -43.304216786568325 -22.893870979093272, -43.30405914046604 -22.893754060775393, -43.303890793473656 -22.893653157471302, -43.303713366864734 -22.893569240934976, -43.30352856935451 -22.893503119328535, -43.30333818064403 -22.893455429439193, -43.30314403428066 -22.893426630546653, -43.302948 -22.893417, -43.30275196571934 -22.893426630546653, -43.30255781935597 -22.893455429439193, -43.30236743064549 -22.893503119328535, -43.30218263313527 -22.893569240934976, -43.302005206526346 -22.893653157471302, -43.301836859533964 -22.893754060775393, -43.301679213431676 -22.893870979093272, -43.30153378643763 -22.894002786437625, -43.30140197909328 -22.89414821343167, -43.3012850607754 -22.894305859533958, -43.301184157471305 -22.894474206526347, -43.30110024093498 -22.89465163313527, -43.301034119328534 -22.89483643064549, -43.30098642943919 -22.895026819355966, -43.300957630546655 -22.89522096571934, -43.300948 -22.895417))" +004258,Encantado,Zona Norte,88a8a06031fffff,TRUE,447,-22.895417,-43.302948,PO,G,,"POLYGON ((-43.300948 -22.895417, -43.300957630546655 -22.895613034280657, -43.30098642943919 -22.89580718064403, -43.301034119328534 -22.895997569354506, -43.30110024093498 -22.89618236686473, -43.301184157471305 -22.89635979347365, -43.3012850607754 -22.89652814046604, -43.30140197909328 -22.896685786568327, -43.30153378643763 -22.896831213562372, -43.301679213431676 -22.896963020906725, -43.301836859533964 -22.897079939224604, -43.302005206526346 -22.897180842528694, -43.30218263313527 -22.89726475906502, -43.30236743064549 -22.89733088067146, -43.30255781935597 -22.897378570560804, -43.30275196571934 -22.897407369453344, -43.302948 -22.897416999999997, -43.30314403428066 -22.897407369453344, -43.30333818064403 -22.897378570560804, -43.30352856935451 -22.89733088067146, -43.303713366864734 -22.89726475906502, -43.303890793473656 -22.897180842528694, -43.30405914046604 -22.897079939224604, -43.304216786568325 -22.896963020906725, -43.30436221356237 -22.896831213562372, -43.30449402090672 -22.896685786568327, -43.3046109392246 -22.89652814046604, -43.3047118425287 -22.89635979347365, -43.30479575906502 -22.89618236686473, -43.30486188067147 -22.895997569354506, -43.30490957056081 -22.89580718064403, -43.304938369453346 -22.895613034280657, -43.304948 -22.895417, -43.304938369453346 -22.89522096571934, -43.30490957056081 -22.895026819355966, -43.30486188067147 -22.89483643064549, -43.30479575906502 -22.89465163313527, -43.3047118425287 -22.894474206526347, -43.3046109392246 -22.894305859533958, -43.30449402090672 -22.89414821343167, -43.30436221356237 -22.894002786437625, -43.304216786568325 -22.893870979093272, -43.30405914046604 -22.893754060775393, -43.303890793473656 -22.893653157471302, -43.303713366864734 -22.893569240934976, -43.30352856935451 -22.893503119328535, -43.30333818064403 -22.893455429439193, -43.30314403428066 -22.893426630546653, -43.302948 -22.893417, -43.30275196571934 -22.893426630546653, -43.30255781935597 -22.893455429439193, -43.30236743064549 -22.893503119328535, -43.30218263313527 -22.893569240934976, -43.302005206526346 -22.893653157471302, -43.301836859533964 -22.893754060775393, -43.301679213431676 -22.893870979093272, -43.30153378643763 -22.894002786437625, -43.30140197909328 -22.89414821343167, -43.3012850607754 -22.894305859533958, -43.301184157471305 -22.894474206526347, -43.30110024093498 -22.89465163313527, -43.301034119328534 -22.89483643064549, -43.30098642943919 -22.895026819355966, -43.300957630546655 -22.89522096571934, -43.300948 -22.895417))" +004259,Encantado,Zona Norte,88a8a06031fffff,,,,,,,, +004260,Engenho de Dentro,Zona Norte,88a8a06037fffff,TRUE,30,-22.89329135,-43.29854429,PM,G,Canal do Cunha,"POLYGON ((-43.296544290099995 -22.8932913468, -43.29655392064665 -22.89348738108066, -43.29658271953919 -22.893681527444034, -43.29663040942853 -22.89387191615451, -43.296696531034975 -22.89405671366473, -43.2967804475713 -22.894234140273653, -43.296881350875395 -22.894402487266042, -43.296998269193274 -22.89456013336833, -43.29713007653763 -22.894705560362375, -43.29727550353167 -22.894837367706728, -43.29743314963396 -22.894954286024607, -43.29760149662634 -22.895055189328698, -43.29777892323526 -22.895139105865024, -43.297963720745486 -22.895205227471465, -43.298154109455965 -22.895252917360807, -43.298348255819334 -22.895281716253347, -43.2985442901 -22.8952913468, -43.29874032438066 -22.895281716253347, -43.29893447074403 -22.895252917360807, -43.29912485945451 -22.895205227471465, -43.29930965696473 -22.895139105865024, -43.29948708357365 -22.895055189328698, -43.299655430566034 -22.894954286024607, -43.29981307666832 -22.894837367706728, -43.29995850366237 -22.894705560362375, -43.30009031100672 -22.89456013336833, -43.3002072293246 -22.894402487266042, -43.30030813262869 -22.894234140273653, -43.30039204916502 -22.89405671366473, -43.30045817077146 -22.89387191615451, -43.300505860660806 -22.893681527444034, -43.30053465955334 -22.89348738108066, -43.3005442901 -22.8932913468, -43.30053465955334 -22.893095312519343, -43.300505860660806 -22.89290116615597, -43.30045817077146 -22.892710777445494, -43.30039204916502 -22.89252597993527, -43.30030813262869 -22.89234855332635, -43.3002072293246 -22.89218020633396, -43.30009031100672 -22.892022560231673, -43.29995850366237 -22.891877133237628, -43.29981307666832 -22.891745325893275, -43.299655430566034 -22.891628407575396, -43.29948708357365 -22.891527504271306, -43.29930965696473 -22.89144358773498, -43.29912485945451 -22.89137746612854, -43.29893447074403 -22.891329776239196, -43.29874032438066 -22.891300977346656, -43.2985442901 -22.891291346800003, -43.298348255819334 -22.891300977346656, -43.298154109455965 -22.891329776239196, -43.297963720745486 -22.89137746612854, -43.29777892323526 -22.89144358773498, -43.29760149662634 -22.891527504271306, -43.29743314963396 -22.891628407575396, -43.29727550353167 -22.891745325893275, -43.29713007653763 -22.891877133237628, -43.296998269193274 -22.892022560231673, -43.296881350875395 -22.89218020633396, -43.2967804475713 -22.89234855332635, -43.296696531034975 -22.89252597993527, -43.29663040942853 -22.892710777445494, -43.29658271953919 -22.89290116615597, -43.29655392064665 -22.893095312519343, -43.296544290099995 -22.8932913468))" +004261,Glória,Centro,88a8a06a47fffff,,,,,,,, +004262,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004263,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004264,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004265,Cidade Nova,Centro,88a8a06a53fffff,,,,,,,, +004266,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004267,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,273,-22.90986773,-43.20536305,PO,G,Canal do Mangue,"POLYGON ((-43.2033630511 -22.9098677325, -43.203372681646655 -22.91006376678066, -43.20340148053919 -22.910257913144033, -43.203449170428534 -22.910448301854508, -43.20351529203498 -22.91063309936473, -43.203599208571305 -22.910810525973652, -43.2037001118754 -22.91097887296604, -43.20381703019328 -22.91113651906833, -43.20394883753763 -22.911281946062374, -43.204094264531676 -22.911413753406727, -43.204251910633964 -22.911530671724606, -43.204420257626346 -22.911631575028697, -43.20459768423527 -22.911715491565023, -43.20478248174549 -22.911781613171463, -43.20497287045597 -22.911829303060806, -43.20516701681934 -22.911858101953346, -43.2053630511 -22.9118677325, -43.20555908538066 -22.911858101953346, -43.20575323174403 -22.911829303060806, -43.20594362045451 -22.911781613171463, -43.206128417964734 -22.911715491565023, -43.206305844573656 -22.911631575028697, -43.20647419156604 -22.911530671724606, -43.206631837668326 -22.911413753406727, -43.20677726466237 -22.911281946062374, -43.206909072006724 -22.91113651906833, -43.2070259903246 -22.91097887296604, -43.2071268936287 -22.910810525973652, -43.20721081016502 -22.91063309936473, -43.20727693177147 -22.910448301854508, -43.20732462166081 -22.910257913144033, -43.207353420553346 -22.91006376678066, -43.2073630511 -22.9098677325, -43.207353420553346 -22.90967169821934, -43.20732462166081 -22.909477551855968, -43.20727693177147 -22.909287163145493, -43.20721081016502 -22.90910236563527, -43.2071268936287 -22.90892493902635, -43.2070259903246 -22.90875659203396, -43.206909072006724 -22.908598945931672, -43.20677726466237 -22.908453518937627, -43.206631837668326 -22.908321711593274, -43.20647419156604 -22.908204793275395, -43.206305844573656 -22.908103889971304, -43.206128417964734 -22.90801997343498, -43.20594362045451 -22.907953851828537, -43.20575323174403 -22.907906161939195, -43.20555908538066 -22.907877363046655, -43.2053630511 -22.9078677325, -43.20516701681934 -22.907877363046655, -43.20497287045597 -22.907906161939195, -43.20478248174549 -22.907953851828537, -43.20459768423527 -22.90801997343498, -43.204420257626346 -22.908103889971304, -43.204251910633964 -22.908204793275395, -43.204094264531676 -22.908321711593274, -43.20394883753763 -22.908453518937627, -43.20381703019328 -22.908598945931672, -43.2037001118754 -22.90875659203396, -43.203599208571305 -22.90892493902635, -43.20351529203498 -22.90910236563527, -43.203449170428534 -22.909287163145493, -43.20340148053919 -22.909477551855968, -43.203372681646655 -22.90967169821934, -43.2033630511 -22.9098677325))" +004275,Barra da Tijuca,Barra da Tijuca,88a8a070b3fffff,,,,,,,, +004276,Leblon,Zona Sul,88a8a07ab3fffff,,,,,,,, +004279,Cidade Nova,Centro,88a8a06a5bfffff,TRUE,440,-22.911497,-43.204364,PO,G,,"POLYGON ((-43.202363999999996 -22.911497, -43.20237363054665 -22.91169303428066, -43.20240242943919 -22.911887180644033, -43.20245011932853 -22.91207756935451, -43.202516240934976 -22.91226236686473, -43.2026001574713 -22.912439793473652, -43.2027010607754 -22.91260814046604, -43.202817979093275 -22.91276578656833, -43.20294978643763 -22.912911213562374, -43.20309521343167 -22.913043020906727, -43.20325285953396 -22.913159939224606, -43.20342120652634 -22.913260842528697, -43.203598633135265 -22.913344759065023, -43.20378343064549 -22.913410880671464, -43.203973819355966 -22.913458570560806, -43.204167965719336 -22.913487369453346, -43.204364 -22.913497, -43.20456003428066 -22.913487369453346, -43.20475418064403 -22.913458570560806, -43.20494456935451 -22.913410880671464, -43.20512936686473 -22.913344759065023, -43.20530679347365 -22.913260842528697, -43.205475140466035 -22.913159939224606, -43.20563278656832 -22.913043020906727, -43.20577821356237 -22.912911213562374, -43.20591002090672 -22.91276578656833, -43.2060269392246 -22.91260814046604, -43.206127842528694 -22.912439793473652, -43.20621175906502 -22.91226236686473, -43.206277880671465 -22.91207756935451, -43.20632557056081 -22.911887180644033, -43.206354369453344 -22.91169303428066, -43.206364 -22.911497, -43.206354369453344 -22.91130096571934, -43.20632557056081 -22.911106819355968, -43.206277880671465 -22.910916430645493, -43.20621175906502 -22.91073163313527, -43.206127842528694 -22.91055420652635, -43.2060269392246 -22.91038585953396, -43.20591002090672 -22.910228213431672, -43.20577821356237 -22.910082786437627, -43.20563278656832 -22.909950979093274, -43.205475140466035 -22.909834060775395, -43.20530679347365 -22.909733157471305, -43.20512936686473 -22.90964924093498, -43.20494456935451 -22.909583119328538, -43.20475418064403 -22.909535429439195, -43.20456003428066 -22.909506630546655, -43.204364 -22.909497, -43.204167965719336 -22.909506630546655, -43.203973819355966 -22.909535429439195, -43.20378343064549 -22.909583119328538, -43.203598633135265 -22.90964924093498, -43.20342120652634 -22.909733157471305, -43.20325285953396 -22.909834060775395, -43.20309521343167 -22.909950979093274, -43.20294978643763 -22.910082786437627, -43.202817979093275 -22.910228213431672, -43.2027010607754 -22.91038585953396, -43.2026001574713 -22.91055420652635, -43.202516240934976 -22.91073163313527, -43.20245011932853 -22.910916430645493, -43.20240242943919 -22.911106819355968, -43.20237363054665 -22.91130096571934, -43.202363999999996 -22.911497))" +004280,Laranjeiras,Zona Sul,88a8a078b5fffff,,,,,,,, +004281,Laranjeiras,Zona Sul,88a8a078a3fffff,,,,,,,, +004282,Gávea,Zona Sul,88a8a078d9fffff,TRUE,90,-22.97347927,-43.22592556,PC,ZS,Lagoa Rodrigo de Freitas,"POLYGON ((-43.2239255605 -22.9734792708, -43.22393519104666 -22.973675305080658, -43.22396398993919 -22.97386945144403, -43.224011679828536 -22.974059840154506, -43.22407780143498 -22.97424463766473, -43.224161717971306 -22.97442206427365, -43.2242626212754 -22.97459041126604, -43.22437953959328 -22.974748057368327, -43.22451134693763 -22.974893484362372, -43.22465677393168 -22.975025291706725, -43.224814420033965 -22.975142210024604, -43.22498276702635 -22.975243113328695, -43.22516019363527 -22.97532702986502, -43.22534499114549 -22.97539315147146, -43.22553537985597 -22.975440841360804, -43.22572952621934 -22.975469640253344, -43.2259255605 -22.975479270799998, -43.226121594780665 -22.975469640253344, -43.226315741144035 -22.975440841360804, -43.22650612985451 -22.97539315147146, -43.226690927364736 -22.97532702986502, -43.22686835397366 -22.975243113328695, -43.22703670096604 -22.975142210024604, -43.22719434706833 -22.975025291706725, -43.22733977406237 -22.974893484362372, -43.227471581406725 -22.974748057368327, -43.227588499724604 -22.97459041126604, -43.2276894030287 -22.97442206427365, -43.227773319565024 -22.97424463766473, -43.22783944117147 -22.974059840154506, -43.22788713106081 -22.97386945144403, -43.22791592995335 -22.973675305080658, -43.227925560500005 -22.9734792708, -43.22791592995335 -22.97328323651934, -43.22788713106081 -22.973089090155966, -43.22783944117147 -22.97289870144549, -43.227773319565024 -22.97271390393527, -43.2276894030287 -22.972536477326347, -43.227588499724604 -22.972368130333958, -43.227471581406725 -22.97221048423167, -43.22733977406237 -22.972065057237625, -43.22719434706833 -22.971933249893272, -43.22703670096604 -22.971816331575393, -43.22686835397366 -22.971715428271303, -43.226690927364736 -22.971631511734977, -43.22650612985451 -22.971565390128536, -43.226315741144035 -22.971517700239193, -43.226121594780665 -22.971488901346653, -43.2259255605 -22.9714792708, -43.22572952621934 -22.971488901346653, -43.22553537985597 -22.971517700239193, -43.22534499114549 -22.971565390128536, -43.22516019363527 -22.971631511734977, -43.22498276702635 -22.971715428271303, -43.224814420033965 -22.971816331575393, -43.22465677393168 -22.971933249893272, -43.22451134693763 -22.972065057237625, -43.22437953959328 -22.97221048423167, -43.2242626212754 -22.972368130333958, -43.224161717971306 -22.972536477326347, -43.22407780143498 -22.97271390393527, -43.224011679828536 -22.97289870144549, -43.22396398993919 -22.973089090155966, -43.22393519104666 -22.97328323651934, -43.2239255605 -22.9734792708))" +004284,Campo Grande,Zona Oeste,88a8a02919fffff,,,,,,,, +004285,Gávea,Zona Sul,88a8a06365fffff,,,,,,,, +004286,Gávea,Zona Sul,88a8a06365fffff,TRUE,437,-22.97445,-43.226275,PO,ZS,,"POLYGON ((-43.224275 -22.97445, -43.224284630546656 -22.97464603428066, -43.22431342943919 -22.974840180644033, -43.224361119328535 -22.97503056935451, -43.22442724093498 -22.97521536686473, -43.224511157471305 -22.975392793473652, -43.2246120607754 -22.97556114046604, -43.22472897909328 -22.97571878656833, -43.22486078643763 -22.975864213562375, -43.225006213431676 -22.975996020906727, -43.225163859533964 -22.976112939224606, -43.225332206526346 -22.976213842528697, -43.22550963313527 -22.976297759065023, -43.22569443064549 -22.976363880671464, -43.22588481935597 -22.976411570560806, -43.22607896571934 -22.976440369453346, -43.226275 -22.97645, -43.226471034280664 -22.976440369453346, -43.226665180644034 -22.976411570560806, -43.22685556935451 -22.976363880671464, -43.227040366864735 -22.976297759065023, -43.227217793473656 -22.976213842528697, -43.22738614046604 -22.976112939224606, -43.227543786568326 -22.975996020906727, -43.22768921356237 -22.975864213562375, -43.227821020906724 -22.97571878656833, -43.2279379392246 -22.97556114046604, -43.2280388425287 -22.975392793473652, -43.22812275906502 -22.97521536686473, -43.22818888067147 -22.97503056935451, -43.22823657056081 -22.974840180644033, -43.22826536945335 -22.97464603428066, -43.228275000000004 -22.97445, -43.22826536945335 -22.974253965719342, -43.22823657056081 -22.97405981935597, -43.22818888067147 -22.973869430645493, -43.22812275906502 -22.97368463313527, -43.2280388425287 -22.97350720652635, -43.2279379392246 -22.97333885953396, -43.227821020906724 -22.973181213431673, -43.22768921356237 -22.973035786437627, -43.227543786568326 -22.972903979093275, -43.22738614046604 -22.972787060775396, -43.227217793473656 -22.972686157471305, -43.227040366864735 -22.97260224093498, -43.22685556935451 -22.972536119328538, -43.226665180644034 -22.972488429439196, -43.226471034280664 -22.972459630546656, -43.226275 -22.972450000000002, -43.22607896571934 -22.972459630546656, -43.22588481935597 -22.972488429439196, -43.22569443064549 -22.972536119328538, -43.22550963313527 -22.97260224093498, -43.225332206526346 -22.972686157471305, -43.225163859533964 -22.972787060775396, -43.225006213431676 -22.972903979093275, -43.22486078643763 -22.973035786437627, -43.22472897909328 -22.973181213431673, -43.2246120607754 -22.97333885953396, -43.224511157471305 -22.97350720652635, -43.22442724093498 -22.97368463313527, -43.224361119328535 -22.973869430645493, -43.22431342943919 -22.97405981935597, -43.224284630546656 -22.974253965719342, -43.224275 -22.97445))" +004287,Centro,Centro,88a8a06a09fffff,,,,,,,, \ No newline at end of file diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index 0f28714..55d2e3a 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:54.074513+00:00", "objects": ["fire", "inside_tunnel", "road_blockade_reason", "image_description", "brt_lane", "water_in_road", "image_condition", "landslide", "building_collapse", "road_blockade", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:24:45.663820+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:37.281893+00:00", "label": "true", "label_explanation": "The image shows a dark tunnel with graffiti on the walls and a street light post on the side. The road is wet and there is a small amount of water on the ground."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:24:52.433950+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "image_description", "timestamp": "2024-02-02T08:43:54.494724+00:00", "label": "null", "label_explanation": "The image shows a dark, narrow alleyway with a single street lamp. The walls on either side are covered in graffiti and the ground is littered with trash. There is a small puddle of water on the ground in the foreground."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:07.322451+00:00", "label": "false", "label_explanation": "There is no BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:24:59.922224+00:00", "label": "true", "label_explanation": "There is a small amount of water on the road, but it is not causing any problems."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:46.582775+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:39.500066+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:22:19.864968+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:25:13.125943+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:22:11.361828+00:00", "label": "difficult", "label_explanation": "The large amount of water on the road makes it difficult for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:19.581796+00:00", "label": "normal", "label_explanation": "There are no major or minor issues in the image."}]}, {"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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:51.700946+00:00", "objects": ["inside_tunnel", "fire", "road_blockade_reason", "landslide", "road_blockade", "water_in_road", "image_condition", "image_description", "traffic_ease_vehicle", "brt_lane", "alert_category", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:45.646521+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:21:50.718454+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:13.540102+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:52.432271+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:06:08.755265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:02.342122+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:21:51.963339+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:06:06.375459+00:00", "label": "easy", "label_explanation": "The road is clear with no visible obstructions or water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:40.974643+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-02T22:06:03.550343+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that should be reported."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:06:08.015951+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-02T22:23:49.466471+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "water_in_road", "road_blockade", "brt_lane", "image_description", "image_condition", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:18:38.755983+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:24:47.127800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:18:23.062515+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "fire", "timestamp": "2024-02-02T22:24:33.750111+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:32.913475+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:24:44.108893+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:18:40.977623+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:24:52.381143+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:34.473605+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:44.954461+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:18:48.325908+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:03.477503+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "road_blockade_reason", "road_blockade", "alert_category", "fire", "water_in_road", "brt_lane", "image_description", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:25:06.375480+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:15.220468+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:25.113717+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.163447+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:23.060635+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:32.613596+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:02.713488+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-02T22:25:11.048367+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:29.601161+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:51.849110+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T22:23:13.705160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:09.643917+00:00", "objects": ["image_condition", "building_collapse", "water_in_road", "inside_tunnel", "brt_lane", "fire", "alert_category", "image_description", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:19:49.533821+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:02:52.003502+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:18:43.658197+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:07.322000+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:02:32.309164+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-02T22:19:45.918495+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:02:42.677665+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that require an alert."}, {"object": "image_description", "timestamp": "2024-02-02T05:04:49.323912+00:00", "label": "null", "label_explanation": "The image is corrupted and it is not possible to see the road or the surroundings clearly. There are some cars passing by and the image is very blurry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:19:57.628157+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:17.298001+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:02:47.551754+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:02:56.923436+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-02T22:24:06.376957+00:00", "objects": ["fire", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "image_description", "building_collapse", "alert_category", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:24:50.278881+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:45.663406+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:20:33.498573+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:52.380103+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 quality of the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:48.051744+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:05.609054+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road. The tree is large and has fallen across the entire width of the road, making it impassable for vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:50.265857+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T22:20:52.342437+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:51.662336+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:13.131887+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:40.156750+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a slight curve. The tunnel is well-lit, with artificial lighting visible along the ceiling. The walls of the tunnel are made of concrete and have a smooth finish. There are no signs of any blockages or obstructions within the tunnel."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:05.256171+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:05.394485+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-02T22:25:00.110889+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:03.780534+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:10:43.064570+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:47.335542+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:15:46.483094+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:10:38.952235+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:02.704698+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:09.314055+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:56.427389+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:10:35.661501+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}]}, {"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-02T22:24:03.692216+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:37.376889+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:19:32.739173+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:19:24.603250+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:20:20.866166+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:19:49.761532+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:30.763845+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:20:15.930977+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:13:16.928684+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:13:09.496337+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:50.686887+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:05.563244+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:59.725761+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "road_blockade", "landslide", "water_in_road", "building_collapse", "brt_lane", "image_condition", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:23.768795+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:16.639213+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:15.448058+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:43.595897+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:59.545575+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:19:31.148594+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:32.885766+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:50.466557+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:07.345562+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:01.181788+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:50.673337+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:07:24.723309+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:08:12.655845+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:08:53.764981+00:00", "label": "false", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:09:35.783131+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. All buildings are intact."}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:22.462669+00:00", "label": "normal", "label_explanation": "There are no visible issues in the image that would interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:09:06.124244+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:09:12.218521+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. Traffic is flowing smoothly."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:09:51.105234+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. Traffic is flowing smoothly."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:08:31.897191+00:00", "label": "false", "label_explanation": "There is no water visible on the road. The road surface is dry."}, {"object": "image_description", "timestamp": "2024-02-01T21:59:09.111780+00:00", "label": "null", "label_explanation": "The image is of a tunnel with green background and a lot of noise."}, {"object": "image_condition", "timestamp": "2024-02-02T22:08:17.342817+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:09:46.993120+00:00", "label": "easy", "label_explanation": "The road is completely dry with no visible water."}, {"object": "landslide", "timestamp": "2024-02-02T22:08:01.253025+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:03.602283+00:00", "objects": ["road_blockade_reason", "landslide", "inside_tunnel", "building_collapse", "water_in_road", "image_condition", "fire", "image_description", "road_blockade", "alert_category", "traffic_ease_vehicle", "brt_lane"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:33.469123+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:05.630909+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:00.056637+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:16:13.092273+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:32.588103+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:25.709286+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:13.129199+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-01T22:14:46.709942+00:00", "label": "null", "label_explanation": "The image shows a dark road with a fallen tree blocking the way. There is a green traffic sign on the side of the road. The surroundings are dark, with no visible buildings or other structures."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:16:24.638445+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:16:06.439699+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:16:15.321846+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:16:02.537147+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:15.042912+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "inside_tunnel", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:52:50.551387+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:11.617675+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.611172+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:25:10.549285+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:09:05.645712+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:52:46.565155+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:18.881542+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-02T21:52:45.824488+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockages or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:52:39.145772+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:09.344664+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:15.058668+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-02T22:24:13.515499+00:00", "objects": ["image_condition", "fire", "landslide", "image_description", "road_blockade", "road_blockade_reason", "brt_lane", "water_in_road", "traffic_ease_vehicle", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:07.636435+00:00", "label": "poor", "label_explanation": "The image is blurry and difficult to see. There is a lot of glare from the headlights of the cars, and the rain is making it difficult to see the road."}, {"object": "fire", "timestamp": "2024-02-02T22:25:06.373450+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:03.947689+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-02T07:55:24.449841+00:00", "label": "null", "label_explanation": "The image shows a dark and blurry road with cars driving in both directions. The road is wet from the rain, and there is a significant amount of water on the road. The water is deep enough to submerge the tires of a car, but it is still possible for vehicles to pass. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:36.172473+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:17.305411+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:02.714231+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:52.643259+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:33.530410+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:23:31.009423+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:48.475893+00:00", "label": "true", "label_explanation": "The image shows a dark enclosed space with no visible sky or open-air features. The walls and ceiling of the tunnel are made of concrete and the road surface is made of asphalt. There are no visible signs of traffic or pedestrians inside the tunnel."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:26.000315+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockades or other issues."}]}, {"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-02T22:24:09.287995+00:00", "objects": ["building_collapse", "image_condition", "fire", "water_in_road", "brt_lane", "road_blockade", "image_description", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T21:49:23.509291+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:28.845678+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:22:25.961436+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:17.092286+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:25.297854+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for BRT use."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:49:33.601324+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking part of the road, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:08:53.782180+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:48.928904+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.634824+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:13.132903+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:36.828174+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-02T22:24:12.025901+00:00", "objects": ["building_collapse", "image_description", "inside_tunnel", "landslide", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:23:44.552726+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-02T05:16:26.464383+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is still possible to see the road and the surrounding area. There are no cars or people visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:03.939907+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:09.325437+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:38.069473+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:39.945185+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:15.199520+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:43.585365+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:33.728298+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:53.128188+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:35.837999+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:36.483624+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-02T22:24:13.808467+00:00", "objects": ["road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "image_condition", "alert_category", "landslide", "inside_tunnel", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:10:42.666373+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:41.400718+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:20:15.449369+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:19.568051+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It has no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T22:10:22.364184+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:11.020034+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.604940+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:25:12.279886+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:10:34.415745+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:20:10.610284+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:10:12.075285+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-02T22:24:11.928177+00:00", "objects": ["landslide", "inside_tunnel", "fire", "road_blockade_reason", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:25:17.300214+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:11.014754+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:22:22.597229+00:00", "label": "false", "label_explanation": "There is no fire visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:40.900992+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:12.692403+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:03:20.027022+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:06.073030+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:34.548995+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:03:14.496533+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "image_description", "timestamp": "2024-02-02T04:25:05.706458+00:00", "label": "null", "label_explanation": "The image is dark and there is not much to see. There is a slight curve to the left."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:03:28.477783+00:00", "label": "easy", "label_explanation": "The road surface is mostly clear and dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:31.200833+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:33.260411+00:00", "objects": ["brt_lane", "image_description", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "traffic_ease_vehicle", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-02T21:38:19.230001+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:41.454333+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:43.385906+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:38:45.653359+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking part of the road, but vehicles can still pass with caution."}, {"object": "alert_category", "timestamp": "2024-02-02T21:38:31.589202+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic disruptions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:34.172976+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:45.381505+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:38:51.457596+00:00", "label": "difficult", "label_explanation": "The fallen tree is blocking part of the road, making it difficult for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:38:40.579419+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:39.334308+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:32.993485+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:12.819415+00:00", "objects": ["water_in_road", "road_blockade_reason", "image_description", "building_collapse", "fire", "alert_category", "road_blockade", "brt_lane", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-02T21:45:37.166902+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:20:07.637370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T21:44:11.791270+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-02T22:25:12.973781+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T21:43:58.010620+00:00", "label": "normal", "label_explanation": "There are no signs of any major issues that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:41:24.266368+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:45:53.202089+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:15.064686+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:44:06.968424+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:05.638526+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.908770+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:18.467474+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "image_description", "traffic_ease_vehicle", "water_in_road", "building_collapse", "road_blockade_reason", "road_blockade", "alert_category", "brt_lane", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:41.936947+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:37.477756+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:35.128374+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:08:11.431326+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry and clear, with no visible puddles or water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:39.047068+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:16.615803+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:43.105953+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:22.606330+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or blockages visible."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:06.775475+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no blockages or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:48.760793+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:25:36.087992+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-02T22:24:24.609960+00:00", "objects": ["road_blockade", "image_description", "alert_category", "image_condition", "building_collapse", "water_in_road", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "fire", "inside_tunnel", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T21:57:43.064366+00:00", "label": "free", "label_explanation": "There are no signs of road blockades. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:03.992262+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:47.488486+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:57:35.696992+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:50.140430+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry, with no visible puddles or water accumulation."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:57:48.005429+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:52.490444+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:48.863239+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:45.358230+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:51.113660+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:37.843787+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:53.265920+00:00", "objects": ["landslide", "road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:26:00.110574+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear of any landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:07.981140+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:15.817926+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:09.755205+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:59.191849+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:26:24.940869+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking the road, but there is still some space for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-02T22:26:31.908213+00:00", "label": "minor", "label_explanation": "The fallen tree is blocking the road, but there is still some space for vehicles to pass. This is a minor issue that should be reported."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:27.325876+00:00", "label": "difficult", "label_explanation": "The fallen tree is blocking the road, but there is still some space for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:31.166257+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-02T08:08:53.525770+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions. There is a tree that has fallen on the road, blocking the right lane. The left lane is still passable. There is a small puddle of water on the road, but it is not significant enough to cause any traffic disruptions. There is no dedicated bus lane visible in the image. The fallen tree is blocking the right lane, but the left lane is still passable. The left lane is still passable, although caution is advised due to the presence of the fallen tree. There is no evidence of any building collapse in the image. All buildings are intact and there are no signs of structural damage. The fallen tree is blocking one lane of traffic, but the other lane is still passable. This could cause some traffic congestion, but it is not a major issue."}, {"object": "fire", "timestamp": "2024-02-02T22:26:01.089713+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:05.309105+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:59.552540+00:00", "objects": ["traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "building_collapse", "water_in_road", "image_description", "road_blockade_reason", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:24:31.660890+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:26:27.706554+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:21.411952+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:40.333223+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:41.281359+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:13.876318+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T22:24:54.205393+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:24:59.928844+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:24:35.223859+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:24:39.501191+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:24:37.195006+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:25:04.686416+00:00", "objects": ["building_collapse", "brt_lane", "image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:20:49.353525+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:27.703907+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:10.677317+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:53.541897+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:12.809062+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:26:06.396023+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-02T22:26:07.495539+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:51.464201+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:47.836935+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:14.206485+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:37.466853+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:56.848269+00:00", "objects": ["traffic_ease_vehicle", "image_description", "road_blockade", "alert_category", "fire", "image_condition", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:17:18.944394+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T22:17:03.986322+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:17:05.667155+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-02T22:25:55.836168+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:58.397937+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:16:32.911410+00:00", "label": "true", "label_explanation": "There is a dedicated lane for BRT buses."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:02.994102+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:05.313526+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:01.829063+00:00", "label": "false", "label_explanation": "There are no signs of water in the road. The road surface is dry, with no visible puddles or signs of flooding."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:17:07.928366+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:52.519030+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-02T22:25:00.520071+00:00", "objects": ["inside_tunnel", "alert_category", "brt_lane", "road_blockade", "water_in_road", "image_description", "fire", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:42.333212+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T22:16:16.985375+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:20:46.612482+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:14:13.563603+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:33.977612+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-02T22:26:23.055910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:27.326994+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:14:15.724235+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:14:24.117720+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:25.638656+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:15.835073+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": null, "snapshot_timestamp": null, "objects": ["inside_tunnel", "image_condition", "brt_lane", "building_collapse", "image_description", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "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": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": null, "snapshot_timestamp": null, "objects": ["alert_category", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "fire", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "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": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:53.196227+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "image_description", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-02T22:19:35.818625+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:38.466878+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:12.678281+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating a BRT lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:08:32.734364+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-02T22:24:59.579483+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:02.123457+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:16.795498+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc... The road is clear with no obstructions and the image is clear with no interference."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:19:24.572904+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:22.602970+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:50.950748+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:58.584688+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:23:56.604470+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "road_blockade_reason", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "inside_tunnel", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:00:04.825953+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:59:53.251695+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:21.684618+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:05.635117+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-02T22:24:50.677118+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:11.019182+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:18:48.463434+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-02T05:56:12.326225+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are no cars on the road. There are trees and buildings on either side of the road. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:48.093894+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:18:32.224244+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:40.160350+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:00.116774+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:26:22.802889+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_condition", "building_collapse", "inside_tunnel", "water_in_road", "brt_lane", "image_description", "landslide", "alert_category", "fire", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:14.763900+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:28.238547+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:20.222271+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:22:58.629425+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:03.936503+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:25.848465+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:45.860923+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-02T05:07:04.141658+00:00", "label": "null", "label_explanation": "The image shows a dark road at night. There is a street light in the distance, and some trees on either side of the road. The road is dry, with no signs of water or puddles. There is a green screen at the bottom of the image."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:09.317704+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:22:52.997515+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "fire", "timestamp": "2024-02-02T22:25:15.205865+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:29.616882+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:58.236853+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade_reason", "fire", "image_condition", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-02T22:19:59.918691+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:37.206807+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:08.442707+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:18.432470+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:05.636799+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:24:59.924825+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-02T22:24:43.996362+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:52.439552+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:39.508472+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:20:20.850064+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:03:05.502287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-02T22:23:51.604330+00:00", "objects": ["fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "water_in_road", "image_condition", "inside_tunnel", "image_description", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:05.644753+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:17.303251+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:49.759396+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:30.022450+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:03.955476+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:57.628384+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:26.715104+00:00", "label": "false", "label_explanation": "The lane on the right side of the road is not a designated bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:24.002749+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:07.931643+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:54.125565+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T22:19:44.733054+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-02T22:24:06.083536+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "inside_tunnel", "building_collapse", "alert_category", "water_in_road", "fire", "landslide", "image_condition", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:27.321077+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:26:13.880178+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:45.365051+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:01.808567+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:55.911520+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:35.259574+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:12.976359+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.324698+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:32.816666+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:51.095155+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:24.709964+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:49.613714+00:00", "objects": ["landslide", "brt_lane", "inside_tunnel", "road_blockade_reason", "alert_category", "image_description", "building_collapse", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:23:18.239597+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:39.657256+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:23:33.527590+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:43.242905+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-02T21:59:17.314695+00:00", "label": "minor", "label_explanation": "There is a partially fallen tree blocking one lane of the road, but the other lane is still passable. This could cause minor traffic disruptions, but it is not a major issue."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T21:59:25.381759+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of structural damage or debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:59:12.474768+00:00", "label": "partially_blocked", "label_explanation": "There is a partially fallen tree on the side of the road. The tree is blocking the right lane, but the left lane is still passable."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:59:39.684004+00:00", "label": "easy", "label_explanation": "The left lane is completely clear, allowing easy passage for vehicles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:26.016078+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:23:19.524825+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:31.392356+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:56.186409+00:00", "objects": ["road_blockade", "road_blockade_reason", "landslide", "alert_category", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "water_in_road", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:17:14.043465+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:30.390616+00:00", "label": "free", "label_explanation": "There is a police car with its lights on, but the road is not blocked."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:06.214170+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:17:23.870934+00:00", "label": "minor", "label_explanation": "There are some minor issues that might affect city life, such as the fallen tree and the flooded area."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:11.769398+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:26:10.674109+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:17:34.265726+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All the buildings are intact and there are no signs of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:17:55.515051+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:13.893340+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-02T05:22:49.716483+00:00", "label": "null", "label_explanation": "The image is blurred and it is difficult to see the details. There is a road in the foreground and buildings in the background. There is a green traffic light visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:23.042487+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:16:24.641334+00:00", "label": "false", "label_explanation": "The right side of the road is not a designated bus rapid transit (BRT) lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:57.592112+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "image_description", "water_in_road", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:13:01.846386+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:13:26.568218+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:12:52.997364+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:13:20.933421+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:02.826966+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:10.659620+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:03.823061+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:02.124971+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:15.218690+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:09.328456+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:43.644934+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:34.862970+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "building_collapse", "road_blockade", "image_condition", "inside_tunnel", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:47.535368+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:10.184258+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:57.154253+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:41.868513+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:19:43.671767+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:50.135601+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:55.408650+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:54.025213+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:36.070076+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:39.754483+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:45.343415+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:30.918946+00:00", "objects": ["fire", "road_blockade_reason", "image_condition", "water_in_road", "road_blockade", "image_description", "landslide", "alert_category", "inside_tunnel", "brt_lane", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:33.114399+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:48.932008+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:45.375206+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:16:10.424710+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-02T20:52:33.941044+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles indicative of significant water accumulation, but the road is still navigable."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:25:27.972358+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T20:52:31.831707+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:22.990285+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:16:37.961329+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-02T20:52:33.235788+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T20:52:34.627007+00:00", "label": "difficult", "label_explanation": "There are large puddles indicative of significant water accumulation."}]}, {"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-02T22:24:33.122434+00:00", "objects": ["road_blockade_reason", "inside_tunnel", "image_description", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "fire", "building_collapse", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:37.855330+00:00", "label": "car_accident", "label_explanation": "There is a police car with lights on the side of the road. It seems to be stopped for a reason, but traffic can still pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:19.572173+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T20:40:18.942259+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but vehicles can still pass with caution."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:33.115266+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T20:40:32.696249+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:06:04.937570+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:39.651472+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry."}, {"object": "alert_category", "timestamp": "2024-02-02T20:39:28.217324+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic congestion and disruption."}, {"object": "fire", "timestamp": "2024-02-02T22:25:27.976691+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T20:39:39.294154+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:22.901457+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:38.587011+00:00", "objects": ["image_condition", "inside_tunnel", "image_description", "water_in_road", "alert_category", "road_blockade", "fire", "road_blockade_reason", "building_collapse", "brt_lane", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:34.504748+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:43.385315+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-02T05:14:43.251099+00:00", "label": "null", "label_explanation": "The image shows 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": "water_in_road", "timestamp": "2024-02-02T22:25:37.854274+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:07.879560+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking the road."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:19:56.954292+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the road, making it impossible for vehicles to pass."}, {"object": "fire", "timestamp": "2024-02-02T22:25:33.334486+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:35.466718+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:20:15.937591+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:52.490185+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:31.522225+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:41.402440+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}]}, {"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-02T22:24:39.112447+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:21:46.476969+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:21:39.066875+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:21:15.343217+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:22:06.501018+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:10.671112+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:23.038893+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:01.444449+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:15.841749+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:21:26.852037+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:32.796712+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:26:05.310229+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:40.218672+00:00", "objects": ["image_condition", "landslide", "image_description", "water_in_road", "road_blockade", "brt_lane", "fire", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:51.934443+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:48.755040+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:56.422545+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T20:48:14.364290+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:15.831579+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:25:51.029774+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T20:47:40.066170+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T20:47:46.240292+00:00", "label": "easy", "label_explanation": "The road is clear with no obstructions or hazards. Traffic flow is smooth and unimpeded."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:59.598878+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:40.280815+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:24.945770+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:25:00.039684+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:27.696781+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:04:20.958317+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:49.810885+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:03:57.508865+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:03:53.363822+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:04:07.536306+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:18:43.452917+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "fire", "timestamp": "2024-02-02T22:26:44.298962+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:46.606535+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:04:37.941288+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:37.418223+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:48.527447+00:00", "objects": ["road_blockade", "fire", "image_description", "road_blockade_reason", "inside_tunnel", "traffic_ease_vehicle", "water_in_road", "brt_lane", "building_collapse", "alert_category", "image_condition", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:19:50.216940+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "fire", "timestamp": "2024-02-02T22:25:56.426701+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:05.385752+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:52.511928+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:53.974313+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:25.992259+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:31.821127+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:43.775614+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:38.948870+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:01.805202+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:54.817557+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:45.216993+00:00", "objects": ["fire", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "brt_lane", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:46.260308+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:46.346302+00:00", "label": "easy", "label_explanation": "The road is mostly dry with only a few small puddles. These puddles are not significant enough to cause any hindrance to traffic, and vehicles can easily pass through."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:52.513371+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no obstructions or distortions that affect the quality of the image."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:37.091739+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is mostly dry with a few small puddles that do not pose any significant hindrance to traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:39.287667+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and there are no signs of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:38.213782+00:00", "label": "true", "label_explanation": "The image shows a dedicated lane for bus rapid transit (BRT) with a bus driving in it. The lane is clearly marked and separated from the other lanes."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:43.374908+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:26:33.554298+00:00", "label": "partially_blocked", "label_explanation": "There is a partially fallen tree on the side of the road, blocking part of the right lane."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:39.971581+00:00", "label": "normal", "label_explanation": "The image does not show any major or minor issues that would affect city life. The road is clear, there are no blockages, and the image quality is good."}, {"object": "image_description", "timestamp": "2024-02-02T02:50:02.482296+00:00", "label": "null", "label_explanation": "A night view of a road tunnel in Rio de Janeiro. The tunnel is well-lit and there is a slight bend to the right. The road surface is dry and there is no traffic. There are graffiti on the walls and a few trees on either side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:37.832864+00:00", "label": "false", "label_explanation": "The image shows an elevated road with a clear view of the surroundings, including buildings, trees, and a mountain in the distance. There are no signs of a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:26:54.838778+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse, as the surrounding buildings are intact and there is no debris or structural damage."}]}, {"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-02T22:24:45.638400+00:00", "objects": ["image_condition", "water_in_road", "fire", "image_description", "building_collapse", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "brt_lane", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:55.906114+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:07.977555+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-02T22:25:54.656104+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-02T05:34:50.335116+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is possible to see that the road is enclosed by walls and there are no visible signs of an open sky. This suggests that the image is taken inside a tunnel. There are several large green blocks of color in the image, which further obstruct the view."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:42:30.564028+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:01.796062+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T21:42:21.156234+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The road is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:52.509447+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:43:14.329552+00:00", "label": "easy", "label_explanation": "The road is dry and there are no puddles. Vehicles can pass without difficulty."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:53.816262+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:13:28.348518+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:43:31.363440+00:00", "label": "free", "label_explanation": "There are no signs of a road blockade. The road is clear and there are no obstructions."}]}, {"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-02T22:24:47.458375+00:00", "objects": ["brt_lane", "landslide", "inside_tunnel", "water_in_road", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "fire", "image_description", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-02T22:13:32.863430+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:07.967534+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:01.802368+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:54.271575+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:14.869800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:24.679186+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:04:52.591873+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "fire", "timestamp": "2024-02-02T22:26:13.879269+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-02T07:46:02.594580+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete barrier in the center, separating oncoming traffic. There is a slight bend in the road to the right. Streetlights are present on both sides of the road. There are no vehicles visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:05:30.856788+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:05:03.153360+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:05:21.537909+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}]}, {"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-02T22:25:06.385937+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "brt_lane", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:53:17.070358+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:53:29.874703+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:52:45.409893+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:13:28.231875+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:30.169812+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:53:42.661028+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T21:53:38.911360+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-02T22:23:26.021127+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:23:20.217213+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:31.297263+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:13:27.055223+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:49.279524+00:00", "objects": ["road_blockade_reason", "landslide", "water_in_road", "image_description", "inside_tunnel", "alert_category", "fire", "image_condition", "brt_lane", "road_blockade", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:35.770403+00:00", "label": "flooding", "label_explanation": "There is flooding on the road."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:10.718981+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:32.921744+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-02T21:09:57.406269+00:00", "label": "null", "label_explanation": "The image shows a busy urban street scene in Rio de Janeiro. The street is lined with trees and buildings, and there is a lot of traffic. The image is clear and there are no visible obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:34.697946+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T21:56:03.830760+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic congestion and disruption."}, {"object": "fire", "timestamp": "2024-02-02T22:26:15.824469+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:23.041363+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:39.165394+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:09:59.434319+00:00", "label": "partially_blocked", "label_explanation": "There is a small pothole on the right side of the road, but it does not appear to be causing any traffic problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:56:18.166270+00:00", "label": "difficult", "label_explanation": "The fallen tree is blocking part of the road, but there is still enough space for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:56:19.717598+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:54.116738+00:00", "objects": ["landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "brt_lane", "fire", "image_description", "building_collapse", "road_blockade", "image_condition", "alert_category", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:26:23.046805+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:59:05.874836+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:31.299754+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:35.837737+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:37.375329+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:26:27.910052+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T21:58:53.514531+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:59:02.187360+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:25.849706+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T21:58:35.517292+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:13.876673+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:25:03.761226+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "building_collapse", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:22:56.626881+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:02.704503+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:22:58.629692+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:03.509246+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:09:42.489737+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:56.175523+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:10:06.004567+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-02T02:59:44.481906+00:00", "label": "null", "label_explanation": "The image is corrupted and glitched. There are colorful lights in the background and it is not possible to identify any objects or details in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:23:25.845923+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:13.708430+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:34.818668+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:10:11.643612+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:25:03.173077+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "fire", "brt_lane", "image_description", "building_collapse", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:26:33.945880+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:45.410075+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:51.362170+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:49.813287+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:39.106459+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:26:25.642998+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:22.784019+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:22.963794+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:23.037103+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:19:30.977484+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:33.728906+00:00", "label": "normal", "label_explanation": "There are no minor or major issues. The image shows a clear road with no blockades or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:47.980460+00:00", "objects": ["image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "inside_tunnel", "building_collapse", "alert_category", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T22:08:53.326946+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:09:34.063777+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:02.583195+00:00", "label": "true", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "fire", "timestamp": "2024-02-02T22:24:56.527503+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:11.428450+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:44.105122+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:40.467052+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:32.059309+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:59.516775+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:52.442129+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:00.879605+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:48.633123+00:00", "objects": ["fire", "alert_category", "water_in_road", "road_blockade_reason", "image_condition", "brt_lane", "inside_tunnel", "road_blockade", "image_description", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:26:03.236297+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:26:00.183374+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:54.827251+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:58.138592+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:52.515390+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:19.572935+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:59.774743+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:25:57.156284+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:04.269022+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:05.384346+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:01.827060+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:52.289953+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "image_description", "water_in_road", "traffic_ease_vehicle", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:52.153374+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:53:20.910522+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:41.526199+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:26:15.831314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:37.416481+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:53:32.399116+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:51.439462+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:53:34.655857+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:26:10.667991+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:24.936991+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:45.731216+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:45.210752+00:00", "objects": ["landslide", "inside_tunnel", "building_collapse", "road_blockade_reason", "road_blockade", "image_description", "alert_category", "brt_lane", "traffic_ease_vehicle", "fire", "image_condition", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:26:15.596317+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:13.884277+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:09:57.970353+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:27.837591+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:10:06.050867+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:54.595735+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:13:13.118782+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:02.216660+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-02T22:26:19.909225+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:21.108353+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:13:04.877559+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-02T22:24:51.133425+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "brt_lane", "fire", "water_in_road", "inside_tunnel", "image_condition", "landslide", "road_blockade", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T20:06:50.658152+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockades or disruptions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:01.819756+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:05.381074+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-02T22:25:54.828135+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:59.365924+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:00.174391+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:57.155569+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:52.520496+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T20:07:18.260746+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T20:07:04.042654+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T20:07:24.417495+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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-02T22:24:50.947654+00:00", "objects": ["road_blockade", "image_description", "landslide", "alert_category", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T21:58:35.297069+00:00", "label": "free", "label_explanation": "There are no signs of road blockades. The image shows clear lanes with no obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:26:14.208712+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:06.055515+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:31.321623+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:38.444274+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:59:05.806019+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:30.397720+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:48.777706+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:26:23.015980+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:58:55.843810+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no debris or damage visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:12.824024+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:50.681362+00:00", "objects": ["landslide", "image_description", "alert_category", "inside_tunnel", "fire", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:26:07.971928+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:26:43.396198+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:26:37.393289+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-02T22:26:13.880487+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:23.025922+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:47.693402+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:35.271553+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:26:40.335343+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:41.528648+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:51.442434+00:00", "label": "easy", "label_explanation": "The road is clear with no obstructions, and there is no evidence of any hazards or disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:26:50.498480+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:26:24.673016+00:00", "objects": ["road_blockade", "image_description", "road_blockade_reason", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:23:31.299266+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:12.057426+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:22:59.138172+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "landslide", "timestamp": "2024-02-02T22:22:02.368147+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:14.747030+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the road. The road surface is dry and there are no puddles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:23:25.855419+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:22:32.565773+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:48.929540+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "image_condition", "timestamp": "2024-02-02T22:23:20.212378+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:23:01.276381+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-02T22:22:06.734270+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:23.496389+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "road_blockade", "road_blockade_reason", "image_description", "brt_lane", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:04:32.346878+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:19:56.946829+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:04:07.372800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:51.307515+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-01T21:12:52.812538+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions. There is a fallen tree blocking part of the road, but there is still enough space for vehicles to pass. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:17:54.679283+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-02T22:25:23.059107+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:04:21.667053+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:04:20.161261+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:26.708218+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It has good lighting and no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:13.127091+00:00", "label": "false", "label_explanation": "The image shows a road scene with no visible features of a tunnel, such as enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:17.492779+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-02T22:24:24.551897+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:15.058201+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T21:06:06.113547+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would require an alert."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:17.496891+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:06:17.436459+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:23.253592+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:11.019910+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:12.464244+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:06:22.268655+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:27.980005+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:06:33.598539+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:07.976100+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:18.477232+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "image_description", "road_blockade_reason", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:12.986562+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:22.905377+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:19:57.632516+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:41.931632+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:52.954338+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:27.531089+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:18.902169+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-02T22:25:07.339587+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:19.788068+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:15.358949+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:01.575781+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-02T22:24:21.361436+00:00", "objects": ["building_collapse", "image_description", "image_condition", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:09:17.133083+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse."}, {"object": "image_description", "timestamp": "2024-02-01T19:28:39.342181+00:00", "label": "null", "label_explanation": "The image shows a road inside a tunnel. The road is blocked by a fallen tree. There is a large puddle of water on the road. The image is clear with no interference."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:26.002739+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:31.653488+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "fire", "timestamp": "2024-02-02T22:25:24.992824+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:57:40.920932+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking one lane of traffic and causing minor traffic disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:25:48.866728+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible water or puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:19.576951+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with artificial lighting, which is characteristic of a tunnel."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:47.348328+00:00", "label": "normal", "label_explanation": "There are no visible issues in the image that would interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:23.058572+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:45.374196+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:37.854712+00:00", "label": "false", "label_explanation": "There are no visible markings or signs indicating a bus rapid transit (BRT) lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:19.791875+00:00", "objects": ["image_description", "landslide", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:25:16.964496+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T21:46:15.823783+00:00", "label": "normal", "label_explanation": "There are no signs of minor or major issues that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:46:46.141256+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water accumulation."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:46:25.721788+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no visible damage or structural issues."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:27.839887+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:48.778446+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:46:10.874411+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:45.341732+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is mostly dry with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-02T22:25:23.238259+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:46:35.527127+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear of any obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:54.374570+00:00", "label": "free", "label_explanation": "There are no signs of road bloackades. The road is clear and free of any obstructions."}]}, {"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-02T22:24:27.881204+00:00", "objects": ["landslide", "road_blockade", "traffic_ease_vehicle", "image_condition", "road_blockade_reason", "fire", "image_description", "alert_category", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:25:23.251791+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:45:53.899111+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:46:18.201625+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:29.657772+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:33.004380+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:27.844850+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T21:45:59.516000+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:17.309898+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:46:03.621344+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:10:16.941048+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:03:21.057743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-02T22:24:30.666536+00:00", "objects": ["fire", "alert_category", "image_condition", "road_blockade_reason", "landslide", "building_collapse", "road_blockade", "image_description", "water_in_road", "traffic_ease_vehicle", "inside_tunnel", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:25:29.639846+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T21:30:48.388804+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic delays."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:33.008811+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:44.950084+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:26.516716+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:30:51.494386+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:30:46.270221+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but vehicles can still pass with caution."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:39.343866+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:31:06.403267+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:41.937536+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:10:47.205218+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:43.141988+00:00", "objects": ["landslide", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "fire", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:24:29.057254+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:13.136035+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:25:48.755388+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:43.390944+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:24:31.585039+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:25:37.485200+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-02T03:57:48.249800+00:00", "label": "null", "label_explanation": "The image is unclear and it is not possible to provide a detailed description."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:26.517842+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:25:33.118260+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:49.902443+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:48.560807+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:50.778214+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:49.226999+00:00", "objects": ["road_blockade", "fire", "traffic_ease_vehicle", "landslide", "image_condition", "inside_tunnel", "image_description", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:15:54.289957+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:17.292040+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no flames, smoke, or burn damage visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:15:46.771453+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.396155+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}, {"object": "image_condition", "timestamp": "2024-02-02T22:21:56.647705+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:52.358770+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a bright light at the end of the tunnel. The tunnel walls are visible and the road is empty."}, {"object": "image_description", "timestamp": "2024-02-02T19:45:26.445634+00:00", "label": "null", "label_explanation": "The image is corrupted and has several green and white blocks of missing data. This might affect the analysis of the image."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:21:58.056636+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:15:11.385191+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:22:04.938736+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:15:39.651617+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:15:24.724922+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}]}, {"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-02T22:23:49.915378+00:00", "objects": ["landslide", "road_blockade", "alert_category", "building_collapse", "brt_lane", "water_in_road", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-02T22:24:53.094497+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:26:01.794390+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:44.940057+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:25:52.542019+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:33.000167+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:17.325838+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:07.321241+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:01.157110+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:25:55.857725+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:39.329669+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:19.561208+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:14:21.010888+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:15:08.831750+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T08:04:04.284934+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-02T08:04:02.751219+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-02T22:15:20.408170+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T08:03:59.025610+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-02T22:15:25.474025+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "landslide", "timestamp": "2024-02-02T22:15:17.087380+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-02T08:04:05.031908+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T21:59:44.608093+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T08:04:01.251281+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc."}, {"object": "water_in_road", "timestamp": "2024-02-02T21:59:51.588419+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-02T06:00:53.175979+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is possible to see the outline of a tunnel."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:43.228651+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "fire", "building_collapse", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:37.395422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:19:24.618035+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-02T22:25:00.102195+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:20:20.870297+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:20:32.705259+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-02T22:19:10.651056+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T22:20:06.052947+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:44.739760+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:45.297703+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:50.673554+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:19:49.509600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:50.728819+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "landslide", "road_blockade_reason", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:52.534818+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:07.862484+00:00", "label": "partially_blocked", "label_explanation": "The pothole is large and could cause damage to vehicles. It is difficult to drive around the pothole."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:33.010410+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:01.430783+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles on the road, but they are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.398211+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:55.835141+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:39.330996+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:05.315399+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:23.255826+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:17.309657+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:26:00.110282+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:46.898410+00:00", "objects": ["fire", "image_condition", "water_in_road", "road_blockade", "road_blockade_reason", "inside_tunnel", "building_collapse", "image_description", "alert_category", "brt_lane", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-02T22:24:44.109629+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:48.474505+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:17:12.758113+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-02T22:13:13.120717+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by flood water."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:01.111641+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:39.481724+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:13:00.976616+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:12:50.276061+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:17:16.783684+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:13:26.867450+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:40.818703+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:23.344900+00:00", "objects": ["image_description", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:28.309163+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:23.238379+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:08:57.347275+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:09:04.895205+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:41.932257+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-02T22:25:29.662316+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:39.313704+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:49.018142+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:33.117861+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:09:12.221717+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:27.829315+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:25.244842+00:00", "objects": ["image_description", "inside_tunnel", "building_collapse", "landslide", "image_condition", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "water_in_road", "alert_category", "fire", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:19.572580+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:20:20.135032+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:22.918170+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:29.665336+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:20:29.890745+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:33.121557+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:20:10.723540+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:10:17.949202+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-02T21:20:16.834501+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that affect city life."}, {"object": "fire", "timestamp": "2024-02-02T22:25:27.975664+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:35:36.298773+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:24.532268+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "building_collapse", "image_description", "alert_category", "inside_tunnel", "image_condition", "brt_lane", "fire", "road_blockade", "water_in_road", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:26.701270+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:10:15.578271+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:09:34.570970+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-02T22:09:12.209856+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:33.332883+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:22.909318+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:49.876160+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-02T22:25:18.872607+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:10:24.033058+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:31.640594+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:15.105046+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-02T22:24:30.620067+00:00", "objects": ["road_blockade", "water_in_road", "alert_category", "inside_tunnel", "image_description", "image_condition", "road_blockade_reason", "building_collapse", "brt_lane", "traffic_ease_vehicle", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:13:30.830542+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:15:46.752284+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-02T22:13:38.051285+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:17.320526+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:33.002939+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:37.851822+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:13:38.899348+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:13:04.731084+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:13:42.202764+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:23.056022+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-02T22:25:26.722586+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:27.626195+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "image_description", "image_condition", "alert_category", "landslide", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-02T21:51:39.723870+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:52:10.440500+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:52:26.294746+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:52:23.633250+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:39.332681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:17.470767+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-02T21:51:34.732239+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:32.999224+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-02T21:51:54.772190+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:23.243312+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-02T22:25:26.514227+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-02T22:24:28.216431+00:00", "objects": ["image_description", "road_blockade", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-02T21:41:24.250392+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:31.645982+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:43.098646+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:45.423087+00:00", "label": "true", "label_explanation": "There is a dedicated lane for buses."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:27.970432+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:25:49.773915+00:00", "label": "difficult", "label_explanation": "The road is partially blocked, but vehicles can still pass."}, {"object": "alert_category", "timestamp": "2024-02-02T21:41:35.714085+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:25:51.039712+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:41.939960+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:32.483341+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:44.476476+00:00", "label": "car_accident", "label_explanation": "There is a police car with lights on the side of the road. It is partially blocking the right lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:24:27.979156+00:00", "objects": ["image_condition", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "building_collapse", "image_description", "landslide", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-02T22:25:29.656442+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:25:27.974409+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-02T21:41:11.569820+00:00", "label": "free", "label_explanation": "There are no features that block the road. The road is clear, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:43.381014+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-02T21:41:00.003947+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:30.722015+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-02T21:40:51.804415+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:41:15.625058+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "building_collapse", "timestamp": "2024-02-02T21:41:03.248717+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no visible damage or structural issues."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-02T22:25:24.989508+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:25:37.841416+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-02T22:24:30.945087+00:00", "objects": ["water_in_road", "road_blockade", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "image_condition", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-02T22:25:55.409518+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:09:13.961657+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:54.018521+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:09:23.582766+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily without any hindrance."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:52.512848+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:56.199496+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:09:05.646112+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:08:53.749599+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:08:34.525775+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:39.324627+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-02T22:25:45.357821+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:55.685766+00:00", "objects": ["building_collapse", "brt_lane", "road_blockade_reason", "fire", "alert_category", "road_blockade", "traffic_ease_vehicle", "image_description", "image_condition", "water_in_road", "landslide", "inside_tunnel"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-02T22:23:08.958490+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:22:51.889658+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:23:25.851415+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:22:06.730488+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:06.286945+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:19.450022+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:33.722542+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:19.052747+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:22:36.954002+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:07.418557+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:51.141668+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:51.503071+00:00", "objects": ["inside_tunnel", "image_description", "brt_lane", "fire", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "image_condition", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-02T22:24:48.476175+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-02T05:26:52.155958+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. The road surface is dry and there are no signs of water accumulation. There are no people or vehicles visible in the image."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:18:05.833655+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-02T22:24:55.417697+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:02.303977+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:18:43.645160+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:18:23.057385+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-02T22:25:01.150440+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:17:31.736201+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-02T22:18:16.131355+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that require an alert."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:18:29.379077+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:53.667783+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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-02T22:24:11.520341+00:00", "objects": ["road_blockade", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "inside_tunnel", "image_condition", "water_in_road", "image_description", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-02T22:26:10.759546+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:26:05.383472+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:26:23.034936+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:25:15.645981+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-02T22:25:55.844196+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:25:51.040109+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:46.262365+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-02T22:26:25.643371+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:26:27.436576+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:26:13.839246+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-02T22:25:13.126590+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:44.867116+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "fire", "image_description", "road_blockade", "road_blockade_reason", "inside_tunnel", "alert_category", "brt_lane", "image_condition", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-02T22:25:12.979900+00:00", "label": "true", "label_explanation": "There are large puddles indicative of significant water accumulation."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:23:20.226584+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T22:23:29.874651+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-02T22:24:56.027722+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-02T03:48:31.987293+00:00", "label": "null", "label_explanation": "The image is heavily distorted and glitched, making it difficult to see any details. There is a large tree that has fallen across the road, completely blocking it. There are no signs of any people or vehicles in the image."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:23:32.619952+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:25:07.420711+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:25:16.957231+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-02T22:23:12.068761+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:23:02.704209+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a bus driving on it."}, {"object": "image_condition", "timestamp": "2024-02-02T22:24:59.479574+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "landslide", "timestamp": "2024-02-02T22:24:54.643258+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-02T22:23:53.707054+00:00", "objects": ["image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "brt_lane", "building_collapse", "image_condition", "fire", "water_in_road", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-02T14:04:40.400744+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro. The street is lined with trees and buildings, and there is a lot of traffic. The image is taken from a high angle, and the sky is clear."}, {"object": "road_blockade", "timestamp": "2024-02-02T22:20:23.721119+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-02T22:19:59.885015+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-02T21:43:59.415069+00:00", "label": "difficult", "label_explanation": "The fallen tree is blocking part of the road, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-02T22:27:09.555856+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-02T22:19:28.247326+00:00", "label": "false", "label_explanation": "It is not possible to identify if the lane is a BRT lane due to the poor image quality."}, {"object": "building_collapse", "timestamp": "2024-02-02T22:19:41.861161+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}, {"object": "image_condition", "timestamp": "2024-02-02T22:22:08.228579+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-02T22:22:06.502385+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-02T22:20:15.929007+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-02T22:27:10.932907+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-02T22:19:37.685298+00:00", "label": "normal", "label_explanation": "The image is too unclear to determine if there are any issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file +[{"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": "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": "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": "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-04T06:02:07.008442+00:00", "objects": ["image_description", "brt_lane", "inside_tunnel", "road_blockade", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:15.140184+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:50.445113+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:19.379617+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:20.243129+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:19.036874+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T06:05:20.516067+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:19.638090+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:19.955566+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:20.762691+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:18.682876+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:21.061505+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:45.759350+00:00", "objects": ["image_description", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "building_collapse", "landslide", "image_condition", "road_blockade_reason", "road_blockade", "water_in_road", "fire", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:29.316683+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:24.700954+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:29.976579+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:29.525093+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:30.192938+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:28.386326+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:29.086433+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:28.886215+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:28.623396+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:29.776578+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:25.496133+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:47.830660+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_description", "image_condition", "building_collapse", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:31.271579+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:31.871793+00:00", "label": "major", "label_explanation": "There is a fallen tree blocking the road, which is a major issue that affects city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:31.014398+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:26.935421+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:30.752526+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:32.154625+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:09.623244+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:27.798809+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:31.566815+00:00", "label": "fallen_tree", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:32.897253+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:32.404972+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T06:04:50.173617+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description", "inside_tunnel", "alert_category", "image_condition", "fire", "brt_lane", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:35.764371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:54.372320+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:54.875580+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:35.523566+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:54.175882+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:33.431973+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:33.229269+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:50.280086+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:53.693116+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:32.936721+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:35.271580+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:02:09.381884+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "road_blockade", "water_in_road", "road_blockade_reason", "image_condition"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-04T06:02:54.646701+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:48.847201+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:49.760867+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:55.164233+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:54.872210+00:00", "label": "easy", "label_explanation": "The road is clear, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:54.055239+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that should be reported."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:54.353242+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:53.552389+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:53.260720+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:53.828658+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:53.039522+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T06:04:47.665186+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "image_description", "image_condition", "alert_category", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T06:05:35.534688+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:40.367153+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:39.438206+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:40.729883+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:39.729263+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:39.130774+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:34.803230+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:38.921636+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:40.120709+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T06:05:40.510032+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:40.920554+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:48.025568+00:00", "objects": ["image_condition", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "building_collapse", "image_description", "landslide", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:37.522696+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:39.308994+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:38.131718+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:38.718867+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:32.221381+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:38.466189+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:33.116030+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:39.527518+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:39.014113+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-04T06:05:39.855461+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:37.816747+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T06:04:48.299607+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "inside_tunnel", "alert_category", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T06:05:35.178450+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:35.455809+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:30.835292+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:35.940473+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:22.060836+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:36.171859+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:36.675623+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:41.645563+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:31.726588+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:36.947722+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:36.439962+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:49.051759+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:43.703027+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:42.078829+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:31.333892+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:41.390668+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:43.000294+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:40.186687+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:40.734994+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:42.490239+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:28.308600+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:57:02.614999+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:45.003022+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:52.374418+00:00", "objects": ["inside_tunnel", "image_description", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "fire", "alert_category", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:34.431021+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:43.917298+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:42.846954+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.849884+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:35.769259+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:43.440763+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.161466+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:44.952090+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.472982+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:44.442258+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:47.363028+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:52.307420+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:39.617176+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:38.794865+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:35.307143+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:38.289971+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:38.028266+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:40.081269+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:39.118091+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:32.889381+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:39.379519+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:39.879130+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily without any hindrance."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:38.572732+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:54.165659+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "water_in_road", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:41.249529+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:43.034247+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:37.306194+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T05:47:25.064797+00:00", "label": "null", "label_explanation": "The image is dark and there is not much to see. There is a road with a few cars driving on it. There are no people or other objects visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T06:05:42.832148+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:41.472514+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:42.334532+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:41.764503+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:42.583932+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:38.143223+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:43.289105+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:42.049869+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:05:09.223232+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "image_condition", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:54.182627+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:54.987429+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:50.783057+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:55.558071+00:00", "label": "easy", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:50.067077+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:53.771023+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:55.786251+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:53.965360+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:54.757762+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:54.448760+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:55.282276+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:54.046430+00:00", "objects": ["image_condition", "landslide", "water_in_road", "image_description", "road_blockade", "brt_lane", "fire", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:44.626476+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:46.852036+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:44.872117+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:45.134541+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:41.543932+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.250131+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.950433+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.545268+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:40.767207+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.649941+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:45.365506+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:05.001682+00:00", "objects": ["image_description", "road_blockade", "inside_tunnel", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:27.826889+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:25.759085+00:00", "label": "true", "label_explanation": "The image shows the inside of a tunnel. The tunnel is lit by artificial lights and has a curved shape."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:26.937069+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:28.637637+00:00", "label": "normal", "label_explanation": "There are no issues that affect city life. The road is clear, there is no water, and there are no blockades."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:27.566664+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:28.437079+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there is no debris or damage visible."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:27.255623+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "fire", "timestamp": "2024-02-04T06:05:26.353892+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or burn damage visible."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:26.673924+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:28.154055+00:00", "label": "easy", "label_explanation": "The road is completely dry with no puddles or water."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:26.047207+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:54.622354+00:00", "objects": ["image_description", "road_blockade_reason", "fire", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "water_in_road", "brt_lane", "alert_category", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:52.822898+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:04:54.645552+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:35.831504+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:04:52.531515+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:04:55.339760+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet, with small, manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:52.015820+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:56.571009+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T06:04:53.322804+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that require an alert."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:04:53.924097+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:51.749165+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:36.089798+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:58.033980+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:46.110998+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:46.602644+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:41.513721+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.831595+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:47.109676+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:45.542714+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:42.299906+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:45.847892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:47.339982+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:45.303861+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:46.329715+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:58.298342+00:00", "objects": ["alert_category", "road_blockade_reason", "image_description", "brt_lane", "fire", "image_condition", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T06:05:48.966456+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:48.679712+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:45.007645+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:49.464948+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:47.975541+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:48.175051+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:44.307738+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:49.880040+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:49.186980+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:49.670640+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:48.470113+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:59.331231+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "inside_tunnel", "building_collapse", "road_blockade", "image_description", "alert_category", "brt_lane", "fire", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:43.701358+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:44.979923+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:45.505189+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:39.574079+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:44.308742+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:43.479909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:44.001935+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:40.205630+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:44.813997+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:43.024695+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:43.218946+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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-04T06:04:59.125032+00:00", "objects": ["image_description", "road_blockade", "landslide", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:45.146216+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:46.682007+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.636166+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:44.865336+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:45.355439+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.382213+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:44.649450+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:41.331526+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.159986+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.878909+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:40.470742+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:00.763916+00:00", "objects": ["landslide", "image_description", "alert_category", "inside_tunnel", "fire", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:50.656436+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:49.672541+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:44.875984+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T06:05:50.165173+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:48.702877+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:49.903562+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:48.957794+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:45.659443+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:49.436901+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:50.384427+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:49.168233+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:03.146085+00:00", "objects": ["image_condition", "water_in_road", "building_collapse", "image_description", "fire", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "road_blockade", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:55.561084+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:55.852154+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:56.860733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T00:16:45.784749+00:00", "label": "null", "label_explanation": "The image is heavily distorted with bright, saturated colors and unclear shapes. It is difficult to discern any specific objects or details within the image."}, {"object": "fire", "timestamp": "2024-02-04T06:05:57.139160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:56.354770+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:56.570110+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:51.461143+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:57.337568+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:57.649636+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:56.084346+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:52.270045+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T06:05:04.725556+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition", "image_description", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:54.847939+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:48.535981+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:49.432097+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:53.395585+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:52.897807+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:54.522132+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "fire", "timestamp": "2024-02-04T06:05:54.224160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:52.661995+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-02T07:46:02.594580+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete barrier in the center, separating oncoming traffic. There is a slight bend in the road to the right. Streetlights are present on both sides of the road. There are no vehicles visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:53.924640+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:53.129088+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:53.628911+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}]}, {"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-04T06:05:05.242694+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:38.482133+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:39.415677+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:39.980349+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:38.680214+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:39.181624+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are no visible puddles or signs of significant water accumulation."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:38.905397+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no signs of fallen trees, flooding, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:38.198429+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:40.416491+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no signs of fallen trees, flooding, or other obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:39.684112+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The road is clear, there are no signs of flooding, accidents, or other disruptions."}, {"object": "image_description", "timestamp": "2024-02-02T02:50:02.482296+00:00", "label": "null", "label_explanation": "A night view of a road tunnel in Rio de Janeiro. The tunnel is well-lit and there is a slight bend to the right. The road surface is dry and there is no traffic. There are graffiti on the walls and a few trees on either side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:37.903037+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance or exit."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:40.151743+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of structural damage."}]}, {"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-04T06:05:07.831469+00:00", "objects": ["image_description", "road_blockade", "traffic_ease_vehicle", "brt_lane", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:55.763745+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:56.965072+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:52.245871+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:55.554961+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:51.586794+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:56.475629+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:56.237509+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T06:05:56.754857+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:57.166080+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:55.277103+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:55.979986+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:06.859281+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "brt_lane", "road_blockade", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:47.346595+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:43.675036+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:45.478349+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-03T10:21:36.742530+00:00", "label": "null", "label_explanation": "The image shows a busy urban street scene in Rio de Janeiro. The street is lined with tall buildings and trees, and there is a lot of traffic. The image is clear and there are no visible obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:44.431347+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.206389+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.326488+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:03:10.911395+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:44.014492+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.986047+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:45.190116+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.819647+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:08.169780+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "brt_lane", "fire", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:06:00.917083+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:02.527845+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:00.408882+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:02.234946+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can pass easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:00.614779+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:01.187387+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:57.414618+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:06:01.981161+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:01.719303+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:01.431241+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that should be reported."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:56.625664+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:08.189558+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "fire", "brt_lane", "alert_category", "building_collapse", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:57.428977+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:55.211222+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:57.117907+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:56.819038+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:51.837067+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:56.217040+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:56.520682+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-02T02:59:44.481906+00:00", "label": "null", "label_explanation": "The image is corrupted and glitched. There are colorful lights in the background and it is not possible to identify any objects or details in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:51.227287+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:55.524062+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:55.911619+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:55.692415+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:09.232556+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "fire", "brt_lane", "image_description", "building_collapse", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:55.932938+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:57.969009+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:56.818434+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:56.219588+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:51.731578+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T06:05:57.636576+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:52.629474+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:57.395302+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:58.246159+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:56.528275+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:57.120237+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:08.706321+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "image_description", "building_collapse", "road_blockade", "traffic_ease_vehicle", "alert_category", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:49.250583+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:55.013480+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:53.051813+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:53.741737+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:49.966752+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:54.301618+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:53.514179+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:54.710517+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:54.018306+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T06:05:54.516457+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:53.309397+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:11.006600+00:00", "objects": ["road_blockade", "road_blockade_reason", "alert_category", "landslide", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "water_in_road", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:06:02.957407+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:03.186600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:03.439637+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:04.363763+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:02.456611+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:06:03.861847+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:03.654557+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:04.146334+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:02.673677+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-02T05:22:49.716483+00:00", "label": "null", "label_explanation": "The image is blurred and it is difficult to see the details. There is a road in the foreground and buildings in the background. There is a green traffic light visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:58.875338+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:59.634285+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:14.379961+00:00", "objects": ["landslide", "road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:40.467196+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:41.345669+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:41.878988+00:00", "label": "false", "label_explanation": "There are no BRT lanes present in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:41.618595+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:40.158736+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a low wall on the right side and buildings on the left side. The tunnel is well-lit and there is no traffic present."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:42.437864+00:00", "label": "normal", "label_explanation": "There are no issues that affect city life. The road is clear, there is no water on the road, and there are no signs of any problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:42.163147+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and free of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:42.649400+00:00", "label": "easy", "label_explanation": "The road is completely clear with no water or other obstructions. Vehicles can pass through without any difficulty."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:42.925807+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings on the left side of the image are intact and there are no signs of damage."}, {"object": "image_description", "timestamp": "2024-02-02T08:08:53.525770+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions. There is a tree that has fallen on the road, blocking the right lane. The left lane is still passable. There is a small puddle of water on the road, but it is not significant enough to cause any traffic disruptions. There is no dedicated bus lane visible in the image. The fallen tree is blocking the right lane, but the left lane is still passable. The left lane is still passable, although caution is advised due to the presence of the fallen tree. There is no evidence of any building collapse in the image. All buildings are intact and there are no signs of structural damage. The fallen tree is blocking one lane of traffic, but the other lane is still passable. This could cause some traffic congestion, but it is not a major issue."}, {"object": "fire", "timestamp": "2024-02-04T06:05:40.828339+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:41.041442+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:14.608354+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:04.340392+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:05.430666+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:06:05.148634+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:05.651853+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:03.556100+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:59.954501+00:00", "label": "true", "label_explanation": "The image shows a designated bus rapid transit (BRT) lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:59.146733+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:04.613683+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:03.835963+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:06:04.060174+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:04.844426+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:14.637170+00:00", "objects": ["building_collapse", "brt_lane", "image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:06:00.534482+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:55.945784+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:59.121197+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:01.060152+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:59.332095+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-04T06:06:01.330868+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:06:00.818730+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:59.643663+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:00.245210+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:55.228980+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:59.937443+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:15.357807+00:00", "objects": ["traffic_ease_vehicle", "image_description", "road_blockade", "fire", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:05.070159+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:06:03.658153+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:06:04.839371+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:04.249600+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:03.055595+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:59.754716+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:59.046497+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:03.965431+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:03.363907+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:04.551007+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:05.359541+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:05:15.092016+00:00", "objects": ["inside_tunnel", "alert_category", "road_blockade", "brt_lane", "water_in_road", "image_description", "fire", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:57.346835+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:02.333844+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:06:01.798459+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:58.133525+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:01.540418+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-04T06:06:02.897624+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:02.036821+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:02.618212+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:03.128241+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:01.194470+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:03.423893+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:12.336208+00:00", "objects": ["brt_lane", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "road_blockade", "image_description", "image_condition", "water_in_road", "landslide", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T06:05:26.213037+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:30.424422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:30.960551+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:31.892531+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:31.231113+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:30.702575+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:30.145159+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:29.563524+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:29.843894+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:32.132820+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:25.438524+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:16.368561+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "road_blockade", "image_description", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:12.142069+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:10.296622+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:06.031148+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.807846+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-02T05:26:52.155958+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. The road surface is dry and there are no signs of water accumulation. There are no people or vehicles visible in the image."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:06.900923+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:11.892811+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:11.040201+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:10.589784+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:11.322746+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.685300+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:12.403590+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:16.103013+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "image_description", "water_in_road", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:05:10.675955+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:09.932036+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:10.442378+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:11.289289+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:10.981857+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:09.662258+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:09.427992+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:11.553059+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.564017+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:10.171906+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:06.352239+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.346216+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "brt_lane", "fire", "road_blockade", "image_description", "water_in_road", "image_condition", "landslide", "building_collapse", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:37.889769+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:24.928128+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:22.093070+00:00", "label": "false", "label_explanation": "There is no evidence of a BRT lane. There are no signs or markings indicating that the lane is designated for buses."}, {"object": "fire", "timestamp": "2024-02-04T06:05:25.667945+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no flames, smoke, or signs of burning."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:24.682951+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-02T23:29:02.598833+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with graffiti on the walls. The road is wet and there is a metal fence on the side. There is some water on the road, but it is not significant. The road is still passable."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:24.382382+00:00", "label": "false", "label_explanation": "There is a small amount of water on the road. The water is not causing any problems for traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:24.168705+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:26.083038+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:25.408473+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:25.873203+00:00", "label": "easy", "label_explanation": "There is a small amount of water on the road. The water is not causing any problems for traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:25.167434+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would affect city life. The road is clear and there are no obstructions."}]}, {"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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.325966+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "fire", "landslide", "water_in_road", "image_condition", "image_description", "road_blockade_reason", "brt_lane", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T05:59:05.665778+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:59:08.773575+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T05:59:06.892059+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:55.604365+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T06:04:54.328867+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:54.003535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:55.211294+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:54.635740+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:01.060022+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:58.115935+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T05:59:07.541902+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T06:04:13.427335+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "water_in_road", "road_blockade", "brt_lane", "image_description", "image_condition", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.126949+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:10.552870+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:10.836804+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T06:05:11.471202+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:12.619058+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:09.945771+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.248455+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:59.730504+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:09.635284+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:56.156349+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:12.113276+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:18.822674+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "inside_tunnel", "road_blockade", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:12.555644+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:10.685296+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:12.266467+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:04.102191+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:03.195831+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.989557+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:11.668049+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.914181+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:10.385449+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:12.847781+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:11.303708+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:12.036345+00:00", "objects": ["landslide", "fire", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:04:51.846643+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:04:52.404285+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:25.093362+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:26.312539+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:27.128516+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:24.626984+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:26.050608+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:51.407029+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T05:59:00.613729+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:27.325852+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:27.566958+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.481425+00:00", "objects": ["building_collapse", "image_description", "road_blockade", "water_in_road", "fire", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:05:05.155035+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "image_description", "timestamp": "2024-02-03T16:21:19.501020+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. The road is dry and there are no signs of water accumulation. The surrounding buildings are intact and there are no signs of damage. The image is clear and there are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:04.172223+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:03.929601+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is slightly wet, but there are no significant puddles or water accumulation."}, {"object": "fire", "timestamp": "2024-02-04T06:05:05.477184+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:05.761431+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water accumulation or flooding. Vehicles can easily pass through the area."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:03.541077+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:04.912946+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:00.173987+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:59.356172+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:06.062119+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:04.575055+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.345739+00:00", "objects": ["image_description", "brt_lane", "traffic_ease_vehicle", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:25.641869+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:34.147081+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:32.851888+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:56.343508+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:33.090264+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:31.032661+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:56.082347+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:33.651063+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:30.776993+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:02:33.879997+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:33.353319+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.819556+00:00", "objects": ["road_blockade", "alert_category", "fire", "building_collapse", "image_condition", "water_in_road", "road_blockade_reason", "inside_tunnel", "image_description", "brt_lane", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:12.867719+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:15.791082+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T06:05:16.355396+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:16.075893+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:12.428969+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:12.643505+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:15.483740+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:02.963817+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-04T05:59:58.512296+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:04:18.097059+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:16.896973+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:11.970638+00:00", "objects": ["image_description", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "brt_lane", "building_collapse", "image_condition", "fire", "water_in_road", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-02T14:04:40.400744+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro. The street is lined with trees and buildings, and there is a lot of traffic. The image is taken from a high angle, and the sky is clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:58.416987+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T05:52:18.051237+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:12.326488+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:55.573463+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:58.700617+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:12.931675+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:54.695983+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:04:54.475385+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:55.201169+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:54.230486+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:10.600209+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:19.498368+00:00", "objects": ["road_blockade", "image_description", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "brt_lane", "inside_tunnel", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:02:05.453854+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:06.303101+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:24.451458+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:27.661516+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:00.101178+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:00.734617+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:27.458751+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:58.086815+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:19.283004+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:04:56.233778+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T06:04:59.410401+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:14.832056+00:00", "objects": ["landslide", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "fire", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:04:53.400296+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:55.653077+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:35.699344+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:55.906912+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:04:53.640278+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:31.748933+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-02T03:57:48.249800+00:00", "label": "null", "label_explanation": "The image is unclear and it is not possible to provide a detailed description."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:34.816614+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:35.102755+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:53.927053+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:54.746813+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:54.421440+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:12.097556+00:00", "objects": ["road_blockade", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_condition", "image_description", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:00.937454+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:04:50.623360+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:00.015995+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no water or obstructions. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:50.389548+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:54.225624+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:00.322695+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-03T03:31:09.498926+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is possible to see that the road is inside a tunnel. The tunnel walls are made of concrete and there are no lights visible. There is no evidence of a landslide, fire, or road blockade. The image is too dark and blurry to identify any issues. It is not possible to determine if there is a minor or major issue."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:00.627864+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:55.238179+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:59.800364+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:04:58.698113+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:04:55.799003+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear with no obstructions and the image is clear with no interference."}]}, {"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-04T06:04:14.664183+00:00", "objects": ["landslide", "road_blockade", "building_collapse", "alert_category", "water_in_road", "brt_lane", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:04:54.119426+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T05:56:53.827549+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T05:56:54.580163+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T05:56:54.355734+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:55.210475+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road. The puddle is not significant and does not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:56.017029+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:54.704462+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:04:54.420078+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:56:55.140851+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:55.738116+00:00", "label": "free", "label_explanation": "There is a white car driving on the road. There are no signs of road bloackades or partial blockades."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:55.483342+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:02:33.524610+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "fire", "building_collapse", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:03:11.606970+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:03:17.304664+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T06:03:17.063045+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:03:16.807496+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:03:12.384642+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:03:15.604930+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:03:17.569480+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:03:16.082061+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:03:16.313546+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:03:16.583582+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:03:15.871642+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "image_description", "timestamp": "2024-02-02T06:00:53.175979+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is possible to see the outline of a tunnel."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:12.024505+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "building_collapse", "inside_tunnel", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "fire", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T06:05:05.577726+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:08.345423+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:05.335919+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:09.166539+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:54.991354+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:55.845931+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-02T05:07:04.141658+00:00", "label": "null", "label_explanation": "The image shows a dark road at night. There is a street light in the distance, and some trees on either side of the road. The road is dry, with no signs of water or puddles. There is a green screen at the bottom of the image."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:09.958672+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:08.870148+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no signs of accidents, flooding, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:09.750962+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water accumulation or other obstructions. Vehicles can\u901a\u884c without difficulty."}, {"object": "fire", "timestamp": "2024-02-04T06:05:09.459598+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:08.650275+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:01:42.855476+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade_reason", "fire", "image_condition", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:39.002587+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:32.146586+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:31.326345+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:38.135730+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:37.229486+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:37.834516+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:02:38.737387+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:36.942405+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:39.226993+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:38.427767+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:37.508030+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:21.374695+00:00", "objects": ["fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "landslide", "brt_lane", "water_in_road", "building_collapse", "image_condition", "inside_tunnel", "image_description", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:11.219573+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:10.444515+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:10.685068+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:11.503783+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:11.741506+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:06.755408+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:09.952423+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:10.939970+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:09.707751+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.995276+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.192129+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:17.325988+00:00", "objects": ["image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:24.727248+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:59:04.898541+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:24.949151+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:55.149217+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:19.610298+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:19.065727+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T06:04:58.418867+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:55.510241+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:24.449386+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:18.549806+00:00", "label": "true", "label_explanation": "The image shows a bus rapid transit (BRT) lane with a sign indicating it is a BRT lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:25.163216+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:18.884567+00:00", "objects": ["road_blockade_reason", "water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "image_description", "fire", "road_blockade", "inside_tunnel", "alert_category", "brt_lane", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:45.093689+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:43.688277+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:46.402977+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.913267+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:47.205731+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-02T03:48:31.987293+00:00", "label": "null", "label_explanation": "The image is heavily distorted and glitched, making it difficult to see any details. There is a large tree that has fallen across the road, completely blocking it. There are no signs of any people or vehicles in the image."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.696830+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:44.405161+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:33.296412+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics in the image."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.806342+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:35.810047+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:42.996741+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:20.181919+00:00", "objects": ["inside_tunnel", "image_condition", "brt_lane", "building_collapse", "image_description", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:01.074883+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T05:59:23.311852+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T05:59:15.903262+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T05:59:24.689742+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T05:59:23.885734+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T05:59:24.386266+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:01.420327+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:59:23.026013+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T05:59:23.623450+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T05:59:24.118054+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:01.640235+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:21.072025+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "image_description", "fire", "alert_category", "image_condition", "road_blockade_reason", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T06:05:17.591664+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:17.779985+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:11.115118+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:19.321467+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-04T06:05:19.049877+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:18.406506+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:17.263899+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:18.093365+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:18.685693+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.020089+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:19.610183+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:20.825370+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "road_blockade_reason", "fire", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "alert_category", "inside_tunnel", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:04:37.164427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.792217+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:34.854162+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:37.375942+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.095638+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.381679+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are no signs of water accumulation or other hazards that would impede vehicle movement."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:36.887192+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-02T05:56:12.326225+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are no cars on the road. There are trees and buildings on either side of the road. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:46.695579+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.462650+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockades or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:56.632612+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:01.211672+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:21.886042+00:00", "objects": ["road_blockade_reason", "alert_category", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "road_blockade", "water_in_road", "fire", "image_description", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:08.947827+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:09.138588+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:10.349234+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:00.999070+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:08.120508+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:10.076537+00:00", "label": "easy", "label_explanation": "There is no water on the road, making it easy for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:00.124335+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:08.658936+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:08.434982+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T06:05:09.785314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:09.460512+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of structural damage."}]}, {"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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:24.596630+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:16.596832+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that require an alert."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:16.345320+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:16.901808+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:17.539249+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:17.787013+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:16.097868+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:15.788899+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:10.356590+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:15.466167+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:17.253703+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:09.588451+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T05:59:17.563159+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:00:02.459923+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T05:59:56.779054+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:00:02.242746+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:00:02.004918+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T05:59:57.662663+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:00:01.696805+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:00:01.354961+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:00:01.108300+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-01T21:59:09.111780+00:00", "label": "null", "label_explanation": "The image is of a tunnel with green background and a lot of noise."}, {"object": "image_condition", "timestamp": "2024-02-04T06:00:00.848701+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:00:02.728398+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T06:00:02.977432+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:24.808674+00:00", "objects": ["landslide", "road_blockade_reason", "inside_tunnel", "building_collapse", "water_in_road", "image_condition", "fire", "image_description", "road_blockade", "alert_category", "traffic_ease_vehicle", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:18.963610+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:17.557215+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:04.463426+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:18.083131+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:17.005090+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:16.708894+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:18.396658+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-01T22:14:46.709942+00:00", "label": "null", "label_explanation": "The image shows a dark road with a fallen tree blocking the way. There is a green traffic sign on the side of the road. The surroundings are dark, with no visible buildings or other structures."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:17.293622+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:17.805810+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:18.699127+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:05.282628+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:25.838471+00:00", "objects": ["fire", "landslide", "image_condition", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "image_description", "building_collapse", "water_in_road", "alert_category", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:03.822074+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:03.521838+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:13.042363+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:05.929538+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:12.800585+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:13.904616+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:13.628642+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:08.495928+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:13.342923+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:06.788668+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.085155+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T06:04:25.355497+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "fire", "alert_category", "image_description", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:23.637202+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:19.298079+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:23.945439+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:25.117748+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of damage or structural issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:20.180085+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating a BRT lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:25.343856+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:24.864856+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_description", "timestamp": "2024-02-02T05:04:49.323912+00:00", "label": "null", "label_explanation": "The image is corrupted and it is not possible to see the road or the surroundings clearly. There are some cars passing by and the image is very blurry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:24.581509+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:25.854486+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:25.613390+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water on the surface. Vehicles can pass without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:24.245175+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:36.696915+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-03T08:04:02.864507+00:00", "label": "null", "label_explanation": "The image is dark and there is no light source visible. The road is not visible and there are no other details that can be seen."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:25.703756+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-04T06:05:27.169910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:26.011859+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:27.367985+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:26.277902+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:22.170949+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:26.877211+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:25.481713+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:21.373331+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:27.630618+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:26.604604+00:00", "label": "normal", "label_explanation": "There are no signs of any minor or major issues that might affect city life."}]}, {"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-04T06:04:26.961229+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:11.173287+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:07.643261+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:09.142994+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:08.441390+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:07.854254+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:08.634001+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:07.550907+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:08.145365+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.492936+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:06.474114+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:09.734171+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:30.405757+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "image_condition", "water_in_road", "image_description", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:22.746828+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:17.828153+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:23.680866+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:24.303750+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:23.955972+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:23.362606+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:18.699335+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:22.176175+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:22.470923+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:23.066189+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:24.557257+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:30.445879+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "water_in_road", "road_blockade", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:04:55.426165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:29.310943+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:29.039382+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:30.910402+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:29.933136+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:04:54.568593+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:04:58.435195+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:30.135158+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:31.781408+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:28.759750+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:31.160687+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:01:54.828107+00:00", "objects": ["image_description", "building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T01:52:08.345536+00:00", "label": "null", "label_explanation": "The image is distorted and unclear. It is difficult to see any details."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:42.177440+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:42.882357+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:36.796267+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:41.194011+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:41.458369+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:02:42.384686+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:41.874698+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:42.684341+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:37.652827+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:40.697162+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:40.967026+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T06:01:56.965677+00:00", "objects": ["traffic_ease_vehicle", "image_description", "inside_tunnel", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:26.710134+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:32.960468+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T06:05:13.646764+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:00:01.487537+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:13.028485+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:08.530431+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:12.286945+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:11.170648+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the road, which is completely blocking traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:08.277083+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:14.442162+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:11.754100+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-04T06:04:20.038166+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "fire", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T06:05:11.586840+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:11.312482+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:10.478075+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:10.779973+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:14.911854+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:12.105958+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:14.689000+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:06.795555+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.901243+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.870463+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:11.090663+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:27.776482+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "image_description", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:31.889082+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems. There are issues in the image quality, such as blurring and obstructions, that affect its clarity."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:24.655021+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T06:05:33.610468+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:32.513891+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:35.350008+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T02:17:34.306074+00:00", "label": "null", "label_explanation": "The image is blurry and unclear, making it difficult to see details. There are no visible signs of accidents, flooding, or other major issues. The road is dry, with no signs of water or puddles. There are no visible buildings or other structures in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:32.737482+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:32.218344+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:33.848390+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:33.346997+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:22.942271+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:33.065105+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockades or other issues that could impact traffic or city life."}]}, {"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-04T06:04:32.935153+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T00:40:14.615434+00:00", "label": "null", "label_explanation": "The image shows a dark enclosed space with no visible light sources. The walls and ceiling of the tunnel are made of concrete and the road is made of asphalt. There are no cars or people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:24.826460+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:23.811113+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:25.035014+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:24.555361+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:22.534155+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:21.055706+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:19.688961+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:19.923017+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:23.003217+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:24.300998+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:21.816766+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:02:00.364840+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "image_condition", "building_collapse", "water_in_road", "brt_lane", "fire", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:48.499151+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:48.228289+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:47.341680+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:48.740844+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:47.664387+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:43.924254+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:02:49.038123+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:47.968770+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:04:52.920658+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:43.200073+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:49.642159+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:30.391682+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "image_description", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "alert_category", "brt_lane", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:12.122565+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:19.664537+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:21.722482+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:19.949862+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:20.958600+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:21.432011+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:20.432547+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:20.218442+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:20.706725+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:15.527292+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:21.210508+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T06:02:00.682267+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:49.447703+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:44.600623+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:47.791774+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:43.940124+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:48.104942+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:48.645774+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T06:02:49.075222+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:48.365424+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:48.853798+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:47.552584+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:49.646779+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:31.839282+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "image_description", "building_collapse", "fire", "alert_category", "road_blockade", "brt_lane", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:19.654427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:20.824770+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:19.137802+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:20.293739+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T06:05:20.535543+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:19.927389+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no obstructions or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:19.406661+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:12.837443+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:18.866909+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:11.942644+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:21.129170+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:35.793743+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:17.743376+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:20.755853+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:17.965232+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:21.225797+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:20.188815+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:19.104319+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:17.343351+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:21.772849+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:18.782533+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:21.485556+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:19.886940+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T06:04:36.793679+00:00", "objects": ["landslide", "image_condition", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:25.743448+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:23.629513+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:24.422210+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:19.637315+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "fire", "timestamp": "2024-02-04T06:05:25.262109+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:24.165327+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:24.974700+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:20.396037+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:23.936979+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:24.653898+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_description", "timestamp": "2024-02-02T04:25:05.706458+00:00", "label": "null", "label_explanation": "The image is dark and there is not much to see. There is a slight curve to the left."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:25.520548+00:00", "label": "easy", "label_explanation": "The road is clear with no water or puddles. The road surface is dry and easily navigable for vehicles."}]}, {"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-04T06:04:42.918281+00:00", "objects": ["traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "image_description", "water_in_road", "brt_lane", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:14.726400+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:10.883263+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.675561+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-01T21:12:52.812538+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions. There is a fallen tree blocking part of the road, but there is still enough space for vehicles to pass. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:08.940595+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:09.185534+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T06:05:14.488211+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:14.283248+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:09.787986+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:08.358986+00:00", "label": "clean", "label_explanation": "The image is clear and there is no interference. The image is well-lit and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.068851+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a bright light at the end of it. The tunnel walls and ceiling are made of concrete and the road is made of asphalt. There are no cars or people visible in the image."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:14.996904+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:41.515644+00:00", "objects": ["building_collapse", "image_description", "image_condition", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:05:24.531008+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-03T16:16:40.634412+00:00", "label": "null", "label_explanation": "The image is heavily distorted with significant visual interference. The image quality is poor and the content is not clearly visible. There is no clear indication of the scene or any objects present."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:23.257929+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:24.768710+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:23.453308+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:25.035480+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:23.729287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:24.258654+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:19.533869+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:25.259097+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:23.975315+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:20.287526+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T06:04:41.723069+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "landslide", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:25.943592+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:21.862420+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:27.859633+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:22.730218+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:26.750421+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:27.354504+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:26.239932+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T06:05:27.577402+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:27.058842+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:28.187330+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:26.466892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:42.623284+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-04T06:05:30.977296+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:30.667398+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:29.866674+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:07:16.374046+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:28.761984+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:24.725006+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:25.431333+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:29.047597+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T06:05:30.357343+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:07:17.241392+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:29.556777+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:42.889656+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "image_description", "inside_tunnel", "alert_category", "building_collapse", "water_in_road", "brt_lane"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:34.310385+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:35.744198+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:34.037135+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:35.426874+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:33.449111+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:35.128371+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:28.942845+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:34.538867+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that should be reported."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:34.841449+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:33.726417+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:29.842438+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}]}, {"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-04T06:04:42.989890+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "road_blockade_reason", "building_collapse", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:28.601492+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:28.900016+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:31.717163+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:35.554539+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:33.681517+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:32.287335+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:33.102308+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:35.287182+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:35.814761+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:30.013128+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:30.771438+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file From 54995c7a468211cdb4328a81ea36a7e1e60ec94f Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 04:21:54 -0300 Subject: [PATCH 18/64] hotifx: cache --- app/{ => utils}/api.py | 4 ++-- app/utils/utils.py | 7 +++++-- "app/\360\237\223\243 Home.py" | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) rename app/{ => utils}/api.py (96%) diff --git a/app/api.py b/app/utils/api.py similarity index 96% rename from app/api.py rename to app/utils/api.py index bd5e557..68bcc25 100644 --- a/app/api.py +++ b/app/utils/api.py @@ -31,12 +31,12 @@ def _get(self, path: str, timeout: int = 120) -> Dict: response = requests.get( f"{self.BASE_URL}{path}", headers=self.headers, timeout=timeout ) - # response.raise_for_status() + response.raise_for_status() return response.json() except requests.exceptions.ReadTimeout as _: # noqa return {"items": []} - def _get_all_pages(self, path, page_size=300, timeout=120): + def _get_all_pages(self, path, page_size=100, timeout=120): print(f"Getting all pages for {path}") # Initial request to determine the number of pages initial_response = self._get( diff --git a/app/utils/utils.py b/app/utils/utils.py index 9c649fa..c77b97e 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,7 @@ import folium import pandas as pd import streamlit as st -from api import APIVisionAI +from utils.api import APIVisionAI from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder vision_api = APIVisionAI( @@ -15,7 +15,7 @@ ) -@st.cache_data(ttl=600, persist=False) +# @st.cache_data(ttl=600, persist=False) def get_cameras( use_mock_data=False, update_mock_data=False, page_size=300, timeout=120 ): @@ -76,6 +76,9 @@ def treat_data(response): cameras_identifications = pd.DataFrame( exploded_df["identifications"].tolist(), index=exploded_df.index ) + + print(len(cameras_identifications)) + cameras_identifications["timestamp"] = pd.to_datetime( cameras_identifications["timestamp"] ).dt.tz_convert("America/Sao_Paulo") diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 93cca82..425d27e 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -13,7 +13,7 @@ # get cameras cameras = get_cameras( - page_size=1000, timeout=600, use_mock_data=False, update_mock_data=True + page_size=1000, timeout=600, use_mock_data=True, update_mock_data=False ) cameras_attr, cameras_identifications = treat_data(cameras) From 60bde879eeeb23cd54dff701b97aa13158c0863f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 07:22:04 +0000 Subject: [PATCH 19/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index c77b97e..02a5c66 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,8 +6,8 @@ import folium import pandas as pd import streamlit as st -from utils.api import APIVisionAI from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder +from utils.api import APIVisionAI vision_api = APIVisionAI( username=os.environ.get("VISION_API_USERNAME"), From 65611214a5995e606c179dad47d45a9c19722b88 Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 05:43:15 -0300 Subject: [PATCH 20/64] feat: get only active cameras --- app/utils/api.py | 70 ++++++++++++++++++++-------------- app/utils/utils.py | 26 ++++++++----- "app/\360\237\223\243 Home.py" | 6 ++- data/temp/mock_api_data.json | 2 +- 4 files changed, 65 insertions(+), 39 deletions(-) diff --git a/app/utils/api.py b/app/utils/api.py index 68bcc25..35908db 100644 --- a/app/utils/api.py +++ b/app/utils/api.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- + import time from concurrent.futures import ThreadPoolExecutor, as_completed from typing import Dict, Tuple @@ -27,50 +28,63 @@ def _refresh_token_if_needed(self) -> None: def _get(self, path: str, timeout: int = 120) -> Dict: self._refresh_token_if_needed() - try: - response = requests.get( - f"{self.BASE_URL}{path}", headers=self.headers, timeout=timeout - ) - response.raise_for_status() - return response.json() - except requests.exceptions.ReadTimeout as _: # noqa - return {"items": []} + response = requests.get( + f"{self.BASE_URL}{path}", headers=self.headers, timeout=timeout + ) + response.raise_for_status() + return response.json() def _get_all_pages(self, path, page_size=100, timeout=120): - print(f"Getting all pages for {path}") - # Initial request to determine the number of pages - initial_response = self._get( - path=f"{path}?page=1&size=1", timeout=timeout - ) # noqa - if not initial_response: - return [] - - # Assuming the initial response contains the total number of items or pages # noqa - total_pages = self._calculate_total_pages(initial_response, page_size) # Function to get a single page - def get_page(page): + def get_page(page, total_pages): # time each execution + start = time.time() - print(f"Getting page {page} of {total_pages}") - response = self._get( - path=f"{path}?page={page}&size={page_size}", timeout=timeout + response = self._get(path=page, timeout=timeout) + print( + f"Page {page} out {total_pages} took {round(time.time() - start,2)} seconds" # noqa ) - print(f"Page {page} took {time.time() - start} seconds") return response + if isinstance(path, str): + + print(f"Getting all pages for {path}") + # Initial request to determine the number of pages + initial_response = self._get( + path=f"{path}?page=1&size=1", timeout=timeout + ) # noqa + if not initial_response: + return [] + + # Assuming the initial response contains the total number of items or pages # noqa + total_pages = self._calculate_total_pages( + initial_response, page_size + ) # noqa + pages = [ + f"{path}?page={page}&size={page_size}" + for page in range(1, total_pages + 1) # noqa + ] + + elif isinstance(path, list): + total_pages = len(path) + pages = path + data = [] - with ThreadPoolExecutor(max_workers=20) as executor: + with ThreadPoolExecutor(max_workers=total_pages) as executor: # Create a future for each page futures = [ - executor.submit(get_page, page) - for page in range(1, total_pages + 1) # noqa + executor.submit(get_page, page, total_pages) for page in pages # noqa ] for future in as_completed(futures): response = future.result() - if response: - data.extend(response["items"]) + items = response.get("items", response) + if isinstance(items, list): + data.extend(items) + elif isinstance(items, dict): + data.append(items) + print("Getting all pages done!!!") return data diff --git a/app/utils/utils.py b/app/utils/utils.py index c77b97e..62a7c83 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,8 +6,8 @@ import folium import pandas as pd import streamlit as st -from utils.api import APIVisionAI from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder +from utils.api import APIVisionAI vision_api = APIVisionAI( username=os.environ.get("VISION_API_USERNAME"), @@ -15,9 +15,13 @@ ) -# @st.cache_data(ttl=600, persist=False) +@st.cache_data(ttl=60 * 3, persist=False) def get_cameras( - use_mock_data=False, update_mock_data=False, page_size=300, timeout=120 + only_active=True, + use_mock_data=False, + update_mock_data=False, + page_size=100, + timeout=120, ): mock_data_path = "./data/temp/mock_api_data.json" @@ -26,10 +30,16 @@ def get_cameras( with open(mock_data_path) as f: data = json.load(f) return data - - data = vision_api._get_all_pages( - path="/cameras", page_size=page_size, timeout=timeout - ) + if only_active: + cameras_ativas = vision_api._get_all_pages( + "/agents/89173394-ee85-4613-8d2b-b0f860c26b0f/cameras" + ) + cameras_ativas_ids = [f"/cameras/{d.get('id')}" for d in cameras_ativas] # noqa + data = vision_api._get_all_pages(cameras_ativas_ids, timeout=timeout) + else: + data = vision_api._get_all_pages( + path="/cameras", page_size=page_size, timeout=timeout + ) if update_mock_data: with open(mock_data_path, "w") as f: @@ -77,8 +87,6 @@ def treat_data(response): exploded_df["identifications"].tolist(), index=exploded_df.index ) - print(len(cameras_identifications)) - cameras_identifications["timestamp"] = pd.to_datetime( cameras_identifications["timestamp"] ).dt.tz_convert("America/Sao_Paulo") diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 425d27e..e653388 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -13,7 +13,11 @@ # get cameras cameras = get_cameras( - page_size=1000, timeout=600, use_mock_data=True, update_mock_data=False + only_active=True, + page_size=3000, + timeout=600, + use_mock_data=False, + update_mock_data=True, ) cameras_attr, cameras_identifications = treat_data(cameras) diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index 55d2e3a..f31ee04 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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": "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": "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": "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-04T06:02:07.008442+00:00", "objects": ["image_description", "brt_lane", "inside_tunnel", "road_blockade", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:15.140184+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:50.445113+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:19.379617+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:20.243129+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:19.036874+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T06:05:20.516067+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:19.638090+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:19.955566+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:20.762691+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:18.682876+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:21.061505+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:45.759350+00:00", "objects": ["image_description", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "building_collapse", "landslide", "image_condition", "road_blockade_reason", "road_blockade", "water_in_road", "fire", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:29.316683+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:24.700954+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:29.976579+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:29.525093+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:30.192938+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:28.386326+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:29.086433+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:28.886215+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:28.623396+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:29.776578+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:25.496133+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:47.830660+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_description", "image_condition", "building_collapse", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:31.271579+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:31.871793+00:00", "label": "major", "label_explanation": "There is a fallen tree blocking the road, which is a major issue that affects city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:31.014398+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:26.935421+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:30.752526+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:32.154625+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:09.623244+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:27.798809+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:31.566815+00:00", "label": "fallen_tree", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:32.897253+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:32.404972+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T06:04:50.173617+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description", "inside_tunnel", "alert_category", "image_condition", "fire", "brt_lane", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:35.764371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:54.372320+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:54.875580+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:35.523566+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:54.175882+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:33.431973+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:33.229269+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:50.280086+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:53.693116+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:32.936721+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:35.271580+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:02:09.381884+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "road_blockade", "water_in_road", "road_blockade_reason", "image_condition"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-04T06:02:54.646701+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:48.847201+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:49.760867+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:55.164233+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:54.872210+00:00", "label": "easy", "label_explanation": "The road is clear, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:54.055239+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that should be reported."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:54.353242+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:53.552389+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:53.260720+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:53.828658+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:53.039522+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T06:04:47.665186+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "image_description", "image_condition", "alert_category", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T06:05:35.534688+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:40.367153+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:39.438206+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:40.729883+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:39.729263+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:39.130774+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:34.803230+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:38.921636+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:40.120709+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T06:05:40.510032+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:40.920554+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:48.025568+00:00", "objects": ["image_condition", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "building_collapse", "image_description", "landslide", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:37.522696+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:39.308994+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:38.131718+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:38.718867+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:32.221381+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:38.466189+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:33.116030+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:39.527518+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:39.014113+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-04T06:05:39.855461+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:37.816747+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T06:04:48.299607+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "inside_tunnel", "alert_category", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T06:05:35.178450+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:35.455809+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:30.835292+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:35.940473+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:22.060836+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:36.171859+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:36.675623+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:41.645563+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:31.726588+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:36.947722+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:36.439962+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:49.051759+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:43.703027+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:42.078829+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:31.333892+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:41.390668+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:43.000294+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:40.186687+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:40.734994+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:42.490239+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:28.308600+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:57:02.614999+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:45.003022+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:52.374418+00:00", "objects": ["inside_tunnel", "image_description", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "fire", "alert_category", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:34.431021+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:43.917298+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:42.846954+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.849884+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:35.769259+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:43.440763+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.161466+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:44.952090+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.472982+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:44.442258+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:47.363028+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:52.307420+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:39.617176+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:38.794865+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:35.307143+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:38.289971+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:38.028266+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:40.081269+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:39.118091+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:32.889381+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:39.379519+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:39.879130+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily without any hindrance."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:38.572732+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:54.165659+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "water_in_road", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:41.249529+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:43.034247+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:37.306194+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T05:47:25.064797+00:00", "label": "null", "label_explanation": "The image is dark and there is not much to see. There is a road with a few cars driving on it. There are no people or other objects visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T06:05:42.832148+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:41.472514+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:42.334532+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:41.764503+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:42.583932+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:38.143223+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:43.289105+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:42.049869+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:05:09.223232+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "image_condition", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:54.182627+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:54.987429+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:50.783057+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:55.558071+00:00", "label": "easy", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:50.067077+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:53.771023+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:55.786251+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:53.965360+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:54.757762+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:54.448760+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:55.282276+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:54.046430+00:00", "objects": ["image_condition", "landslide", "water_in_road", "image_description", "road_blockade", "brt_lane", "fire", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:44.626476+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:46.852036+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:44.872117+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:45.134541+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:41.543932+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.250131+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.950433+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.545268+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:40.767207+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.649941+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:45.365506+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:05.001682+00:00", "objects": ["image_description", "road_blockade", "inside_tunnel", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:27.826889+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:25.759085+00:00", "label": "true", "label_explanation": "The image shows the inside of a tunnel. The tunnel is lit by artificial lights and has a curved shape."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:26.937069+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:28.637637+00:00", "label": "normal", "label_explanation": "There are no issues that affect city life. The road is clear, there is no water, and there are no blockades."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:27.566664+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:28.437079+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there is no debris or damage visible."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:27.255623+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "fire", "timestamp": "2024-02-04T06:05:26.353892+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or burn damage visible."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:26.673924+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:28.154055+00:00", "label": "easy", "label_explanation": "The road is completely dry with no puddles or water."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:26.047207+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:54.622354+00:00", "objects": ["image_description", "road_blockade_reason", "fire", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "water_in_road", "brt_lane", "alert_category", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:52.822898+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:04:54.645552+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:35.831504+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:04:52.531515+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:04:55.339760+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet, with small, manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:52.015820+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:56.571009+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T06:04:53.322804+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that require an alert."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:04:53.924097+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:51.749165+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:36.089798+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:58.033980+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:46.110998+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:46.602644+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:41.513721+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.831595+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:47.109676+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:45.542714+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:42.299906+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:45.847892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:47.339982+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:45.303861+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:46.329715+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:58.298342+00:00", "objects": ["alert_category", "road_blockade_reason", "image_description", "brt_lane", "fire", "image_condition", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T06:05:48.966456+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:48.679712+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:45.007645+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:49.464948+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:47.975541+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:48.175051+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:44.307738+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:49.880040+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:49.186980+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:49.670640+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:48.470113+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:59.331231+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "inside_tunnel", "building_collapse", "road_blockade", "image_description", "alert_category", "brt_lane", "fire", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:43.701358+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:44.979923+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:45.505189+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:39.574079+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:44.308742+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:43.479909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:44.001935+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:40.205630+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:44.813997+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:43.024695+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:43.218946+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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-04T06:04:59.125032+00:00", "objects": ["image_description", "road_blockade", "landslide", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:45.146216+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:46.682007+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.636166+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:44.865336+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:45.355439+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.382213+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:44.649450+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:41.331526+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.159986+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.878909+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:40.470742+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:00.763916+00:00", "objects": ["landslide", "image_description", "alert_category", "inside_tunnel", "fire", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:50.656436+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:49.672541+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:44.875984+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T06:05:50.165173+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:48.702877+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:49.903562+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:48.957794+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:45.659443+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:49.436901+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:50.384427+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:49.168233+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:03.146085+00:00", "objects": ["image_condition", "water_in_road", "building_collapse", "image_description", "fire", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "road_blockade", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:55.561084+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:55.852154+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:56.860733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T00:16:45.784749+00:00", "label": "null", "label_explanation": "The image is heavily distorted with bright, saturated colors and unclear shapes. It is difficult to discern any specific objects or details within the image."}, {"object": "fire", "timestamp": "2024-02-04T06:05:57.139160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:56.354770+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:56.570110+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:51.461143+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:57.337568+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:57.649636+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:56.084346+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:52.270045+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T06:05:04.725556+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition", "image_description", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:54.847939+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:48.535981+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:49.432097+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:53.395585+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:52.897807+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:54.522132+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "fire", "timestamp": "2024-02-04T06:05:54.224160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:52.661995+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-02T07:46:02.594580+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete barrier in the center, separating oncoming traffic. There is a slight bend in the road to the right. Streetlights are present on both sides of the road. There are no vehicles visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:53.924640+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:53.129088+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:53.628911+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}]}, {"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-04T06:05:05.242694+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:38.482133+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:39.415677+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:39.980349+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:38.680214+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:39.181624+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are no visible puddles or signs of significant water accumulation."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:38.905397+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no signs of fallen trees, flooding, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:38.198429+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:40.416491+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no signs of fallen trees, flooding, or other obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:39.684112+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The road is clear, there are no signs of flooding, accidents, or other disruptions."}, {"object": "image_description", "timestamp": "2024-02-02T02:50:02.482296+00:00", "label": "null", "label_explanation": "A night view of a road tunnel in Rio de Janeiro. The tunnel is well-lit and there is a slight bend to the right. The road surface is dry and there is no traffic. There are graffiti on the walls and a few trees on either side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:37.903037+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance or exit."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:40.151743+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of structural damage."}]}, {"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-04T06:05:07.831469+00:00", "objects": ["image_description", "road_blockade", "traffic_ease_vehicle", "brt_lane", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:55.763745+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:56.965072+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:52.245871+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:55.554961+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:51.586794+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:56.475629+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:56.237509+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T06:05:56.754857+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:57.166080+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:55.277103+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:55.979986+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:06.859281+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "brt_lane", "road_blockade", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:47.346595+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:43.675036+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:45.478349+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-03T10:21:36.742530+00:00", "label": "null", "label_explanation": "The image shows a busy urban street scene in Rio de Janeiro. The street is lined with tall buildings and trees, and there is a lot of traffic. The image is clear and there are no visible obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:44.431347+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.206389+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.326488+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:03:10.911395+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:44.014492+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.986047+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:45.190116+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.819647+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:08.169780+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "brt_lane", "fire", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:06:00.917083+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:02.527845+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:00.408882+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:02.234946+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can pass easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:00.614779+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:01.187387+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:57.414618+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:06:01.981161+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:01.719303+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:01.431241+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that should be reported."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:56.625664+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:08.189558+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "fire", "brt_lane", "alert_category", "building_collapse", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:57.428977+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:55.211222+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:57.117907+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:56.819038+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:51.837067+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:56.217040+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:56.520682+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-02T02:59:44.481906+00:00", "label": "null", "label_explanation": "The image is corrupted and glitched. There are colorful lights in the background and it is not possible to identify any objects or details in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:51.227287+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:55.524062+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:55.911619+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:55.692415+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:09.232556+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "fire", "brt_lane", "image_description", "building_collapse", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:55.932938+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:57.969009+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:56.818434+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:56.219588+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:51.731578+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T06:05:57.636576+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:52.629474+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:57.395302+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:58.246159+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:56.528275+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:57.120237+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:08.706321+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "image_description", "building_collapse", "road_blockade", "traffic_ease_vehicle", "alert_category", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:49.250583+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:55.013480+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:53.051813+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:53.741737+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:49.966752+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:54.301618+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:53.514179+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:54.710517+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:54.018306+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T06:05:54.516457+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:53.309397+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:11.006600+00:00", "objects": ["road_blockade", "road_blockade_reason", "alert_category", "landslide", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "water_in_road", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:06:02.957407+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:03.186600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:03.439637+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:04.363763+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:02.456611+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:06:03.861847+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:03.654557+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:04.146334+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:02.673677+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-02T05:22:49.716483+00:00", "label": "null", "label_explanation": "The image is blurred and it is difficult to see the details. There is a road in the foreground and buildings in the background. There is a green traffic light visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:58.875338+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:59.634285+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:14.379961+00:00", "objects": ["landslide", "road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:40.467196+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:41.345669+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:41.878988+00:00", "label": "false", "label_explanation": "There are no BRT lanes present in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:41.618595+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:40.158736+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a low wall on the right side and buildings on the left side. The tunnel is well-lit and there is no traffic present."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:42.437864+00:00", "label": "normal", "label_explanation": "There are no issues that affect city life. The road is clear, there is no water on the road, and there are no signs of any problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:42.163147+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and free of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:42.649400+00:00", "label": "easy", "label_explanation": "The road is completely clear with no water or other obstructions. Vehicles can pass through without any difficulty."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:42.925807+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings on the left side of the image are intact and there are no signs of damage."}, {"object": "image_description", "timestamp": "2024-02-02T08:08:53.525770+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions. There is a tree that has fallen on the road, blocking the right lane. The left lane is still passable. There is a small puddle of water on the road, but it is not significant enough to cause any traffic disruptions. There is no dedicated bus lane visible in the image. The fallen tree is blocking the right lane, but the left lane is still passable. The left lane is still passable, although caution is advised due to the presence of the fallen tree. There is no evidence of any building collapse in the image. All buildings are intact and there are no signs of structural damage. The fallen tree is blocking one lane of traffic, but the other lane is still passable. This could cause some traffic congestion, but it is not a major issue."}, {"object": "fire", "timestamp": "2024-02-04T06:05:40.828339+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:41.041442+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:14.608354+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:04.340392+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:05.430666+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:06:05.148634+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:05.651853+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:03.556100+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:59.954501+00:00", "label": "true", "label_explanation": "The image shows a designated bus rapid transit (BRT) lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:59.146733+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:04.613683+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:03.835963+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:06:04.060174+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:04.844426+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:14.637170+00:00", "objects": ["building_collapse", "brt_lane", "image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:06:00.534482+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:55.945784+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:59.121197+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:01.060152+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:59.332095+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-04T06:06:01.330868+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:06:00.818730+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:59.643663+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:00.245210+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:55.228980+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:59.937443+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:05:15.357807+00:00", "objects": ["traffic_ease_vehicle", "image_description", "road_blockade", "fire", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:05.070159+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:06:03.658153+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:06:04.839371+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:04.249600+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:03.055595+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:59.754716+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:59.046497+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:03.965431+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:03.363907+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:04.551007+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:05.359541+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:05:15.092016+00:00", "objects": ["inside_tunnel", "alert_category", "road_blockade", "brt_lane", "water_in_road", "image_description", "fire", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:57.346835+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:06:02.333844+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:06:01.798459+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:58.133525+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:06:01.540418+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-04T06:06:02.897624+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:06:02.036821+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:06:02.618212+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:06:03.128241+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:06:01.194470+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:06:03.423893+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:12.336208+00:00", "objects": ["brt_lane", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "road_blockade", "image_description", "image_condition", "water_in_road", "landslide", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T06:05:26.213037+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:30.424422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:30.960551+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:31.892531+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:31.231113+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:30.702575+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:30.145159+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:29.563524+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:29.843894+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:32.132820+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:25.438524+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:16.368561+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "road_blockade", "image_description", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:12.142069+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:10.296622+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:06.031148+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.807846+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-02T05:26:52.155958+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. The road surface is dry and there are no signs of water accumulation. There are no people or vehicles visible in the image."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:06.900923+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:11.892811+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:11.040201+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:10.589784+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:11.322746+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.685300+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:12.403590+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:16.103013+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "image_description", "water_in_road", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:05:10.675955+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:09.932036+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:10.442378+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:11.289289+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:10.981857+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:09.662258+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:09.427992+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:11.553059+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.564017+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:10.171906+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:06.352239+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.346216+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "brt_lane", "fire", "road_blockade", "image_description", "water_in_road", "image_condition", "landslide", "building_collapse", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:37.889769+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:24.928128+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:22.093070+00:00", "label": "false", "label_explanation": "There is no evidence of a BRT lane. There are no signs or markings indicating that the lane is designated for buses."}, {"object": "fire", "timestamp": "2024-02-04T06:05:25.667945+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no flames, smoke, or signs of burning."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:24.682951+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-02T23:29:02.598833+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with graffiti on the walls. The road is wet and there is a metal fence on the side. There is some water on the road, but it is not significant. The road is still passable."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:24.382382+00:00", "label": "false", "label_explanation": "There is a small amount of water on the road. The water is not causing any problems for traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:24.168705+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:26.083038+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:25.408473+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:25.873203+00:00", "label": "easy", "label_explanation": "There is a small amount of water on the road. The water is not causing any problems for traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:25.167434+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would affect city life. The road is clear and there are no obstructions."}]}, {"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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.325966+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "fire", "landslide", "water_in_road", "image_condition", "image_description", "road_blockade_reason", "brt_lane", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T05:59:05.665778+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:59:08.773575+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T05:59:06.892059+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:55.604365+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T06:04:54.328867+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:54.003535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:55.211294+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:54.635740+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:01.060022+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:58.115935+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T05:59:07.541902+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T06:04:13.427335+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "water_in_road", "road_blockade", "brt_lane", "image_description", "image_condition", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.126949+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:10.552870+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:10.836804+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T06:05:11.471202+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:12.619058+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:09.945771+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.248455+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:59.730504+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:09.635284+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:56.156349+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:12.113276+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:18.822674+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "inside_tunnel", "road_blockade", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:12.555644+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:10.685296+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:12.266467+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:04.102191+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:03.195831+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.989557+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:11.668049+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.914181+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:10.385449+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:12.847781+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:11.303708+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:12.036345+00:00", "objects": ["landslide", "fire", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:04:51.846643+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:04:52.404285+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:25.093362+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:26.312539+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:27.128516+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:24.626984+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:26.050608+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:51.407029+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T05:59:00.613729+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:27.325852+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:27.566958+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.481425+00:00", "objects": ["building_collapse", "image_description", "road_blockade", "water_in_road", "fire", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:05:05.155035+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "image_description", "timestamp": "2024-02-03T16:21:19.501020+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. The road is dry and there are no signs of water accumulation. The surrounding buildings are intact and there are no signs of damage. The image is clear and there are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:04.172223+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:03.929601+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is slightly wet, but there are no significant puddles or water accumulation."}, {"object": "fire", "timestamp": "2024-02-04T06:05:05.477184+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:05.761431+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water accumulation or flooding. Vehicles can easily pass through the area."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:03.541077+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:04.912946+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:00.173987+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:59.356172+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:06.062119+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:04.575055+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.345739+00:00", "objects": ["image_description", "brt_lane", "traffic_ease_vehicle", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:25.641869+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:34.147081+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:32.851888+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:56.343508+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:33.090264+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:31.032661+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:56.082347+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:33.651063+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:30.776993+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:02:33.879997+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:33.353319+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:13.819556+00:00", "objects": ["road_blockade", "alert_category", "fire", "building_collapse", "image_condition", "water_in_road", "road_blockade_reason", "inside_tunnel", "image_description", "brt_lane", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:12.867719+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:15.791082+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T06:05:16.355396+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:16.075893+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:12.428969+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:12.643505+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:15.483740+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:02.963817+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": "2024-02-04T05:59:58.512296+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:04:18.097059+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:16.896973+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:11.970638+00:00", "objects": ["image_description", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "brt_lane", "building_collapse", "image_condition", "fire", "water_in_road", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-02T14:04:40.400744+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro. The street is lined with trees and buildings, and there is a lot of traffic. The image is taken from a high angle, and the sky is clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:58.416987+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T05:52:18.051237+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:12.326488+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:55.573463+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:58.700617+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:12.931675+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:54.695983+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:04:54.475385+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:55.201169+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:54.230486+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:10.600209+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:19.498368+00:00", "objects": ["road_blockade", "image_description", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "brt_lane", "inside_tunnel", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:02:05.453854+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:06.303101+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:24.451458+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:27.661516+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:00.101178+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:00.734617+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:27.458751+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:58.086815+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:19.283004+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:04:56.233778+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T06:04:59.410401+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:14.832056+00:00", "objects": ["landslide", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "fire", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:04:53.400296+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:55.653077+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:35.699344+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:55.906912+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:04:53.640278+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:31.748933+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-02T03:57:48.249800+00:00", "label": "null", "label_explanation": "The image is unclear and it is not possible to provide a detailed description."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:34.816614+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:35.102755+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:53.927053+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:54.746813+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:54.421440+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:12.097556+00:00", "objects": ["road_blockade", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_condition", "image_description", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:00.937454+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:04:50.623360+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:00.015995+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no water or obstructions. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:50.389548+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:54.225624+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:00.322695+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-03T03:31:09.498926+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is possible to see that the road is inside a tunnel. The tunnel walls are made of concrete and there are no lights visible. There is no evidence of a landslide, fire, or road blockade. The image is too dark and blurry to identify any issues. It is not possible to determine if there is a minor or major issue."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:00.627864+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:55.238179+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:59.800364+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:04:58.698113+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:04:55.799003+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear with no obstructions and the image is clear with no interference."}]}, {"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-04T06:04:14.664183+00:00", "objects": ["landslide", "road_blockade", "building_collapse", "alert_category", "water_in_road", "brt_lane", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:04:54.119426+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T05:56:53.827549+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T05:56:54.580163+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T05:56:54.355734+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:55.210475+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road. The puddle is not significant and does not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:56.017029+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:04:54.704462+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:04:54.420078+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:56:55.140851+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:55.738116+00:00", "label": "free", "label_explanation": "There is a white car driving on the road. There are no signs of road bloackades or partial blockades."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:55.483342+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:02:33.524610+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "fire", "building_collapse", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:03:11.606970+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:03:17.304664+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T06:03:17.063045+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:03:16.807496+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:03:12.384642+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:03:15.604930+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:03:17.569480+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:03:16.082061+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:03:16.313546+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:03:16.583582+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:03:15.871642+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "image_description", "timestamp": "2024-02-02T06:00:53.175979+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is possible to see the outline of a tunnel."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:12.024505+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "building_collapse", "inside_tunnel", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "fire", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T06:05:05.577726+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:08.345423+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:05.335919+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:09.166539+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:54.991354+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:04:55.845931+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-02T05:07:04.141658+00:00", "label": "null", "label_explanation": "The image shows a dark road at night. There is a street light in the distance, and some trees on either side of the road. The road is dry, with no signs of water or puddles. There is a green screen at the bottom of the image."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:09.958672+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:08.870148+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no signs of accidents, flooding, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:09.750962+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water accumulation or other obstructions. Vehicles can\u901a\u884c without difficulty."}, {"object": "fire", "timestamp": "2024-02-04T06:05:09.459598+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:08.650275+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:01:42.855476+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade_reason", "fire", "image_condition", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:39.002587+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:32.146586+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:31.326345+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:38.135730+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:37.229486+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:37.834516+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:02:38.737387+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:36.942405+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:39.226993+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:38.427767+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:37.508030+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:21.374695+00:00", "objects": ["fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "landslide", "brt_lane", "water_in_road", "building_collapse", "image_condition", "inside_tunnel", "image_description", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:11.219573+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:10.444515+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:10.685068+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:11.503783+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:11.741506+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:06.755408+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:09.952423+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:10.939970+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:09.707751+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.995276+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.192129+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:17.325988+00:00", "objects": ["image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:24.727248+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:59:04.898541+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:24.949151+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:55.149217+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:19.610298+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:19.065727+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T06:04:58.418867+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T06:04:55.510241+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:24.449386+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:18.549806+00:00", "label": "true", "label_explanation": "The image shows a bus rapid transit (BRT) lane with a sign indicating it is a BRT lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:25.163216+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:18.884567+00:00", "objects": ["road_blockade_reason", "water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "image_description", "fire", "road_blockade", "inside_tunnel", "alert_category", "brt_lane", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:45.093689+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:43.688277+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:46.402977+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.913267+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:47.205731+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-02T03:48:31.987293+00:00", "label": "null", "label_explanation": "The image is heavily distorted and glitched, making it difficult to see any details. There is a large tree that has fallen across the road, completely blocking it. There are no signs of any people or vehicles in the image."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.696830+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:44.405161+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:33.296412+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics in the image."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.806342+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:35.810047+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:42.996741+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:20.181919+00:00", "objects": ["inside_tunnel", "image_condition", "brt_lane", "building_collapse", "image_description", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:01.074883+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T05:59:23.311852+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T05:59:15.903262+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T05:59:24.689742+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-04T05:59:23.885734+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T05:59:24.386266+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:01.420327+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T05:59:23.026013+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T05:59:23.623450+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T05:59:24.118054+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:01.640235+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:21.072025+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "image_description", "fire", "alert_category", "image_condition", "road_blockade_reason", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T06:05:17.591664+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:17.779985+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:11.115118+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:19.321467+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": "2024-02-04T06:05:19.049877+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:18.406506+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:17.263899+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:18.093365+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:18.685693+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.020089+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:19.610183+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:20.825370+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "road_blockade_reason", "fire", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "alert_category", "inside_tunnel", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:04:37.164427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:45.792217+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:34.854162+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:04:37.375942+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:46.095638+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:46.381679+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are no signs of water accumulation or other hazards that would impede vehicle movement."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:04:36.887192+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-02T05:56:12.326225+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are no cars on the road. There are trees and buildings on either side of the road. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:46.695579+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:45.462650+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockades or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:04:56.632612+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:01.211672+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:21.886042+00:00", "objects": ["road_blockade_reason", "alert_category", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "road_blockade", "water_in_road", "fire", "image_description", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:08.947827+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:09.138588+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:10.349234+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:00.999070+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:08.120508+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:10.076537+00:00", "label": "easy", "label_explanation": "There is no water on the road, making it easy for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:00.124335+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:08.658936+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:08.434982+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T06:05:09.785314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:09.460512+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of structural damage."}]}, {"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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:24.596630+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:16.596832+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that require an alert."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:16.345320+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:16.901808+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:17.539249+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:17.787013+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:16.097868+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:15.788899+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:10.356590+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:15.466167+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:17.253703+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:09.588451+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T05:59:17.563159+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:00:02.459923+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T05:59:56.779054+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:00:02.242746+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:00:02.004918+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T05:59:57.662663+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:00:01.696805+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:00:01.354961+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:00:01.108300+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-01T21:59:09.111780+00:00", "label": "null", "label_explanation": "The image is of a tunnel with green background and a lot of noise."}, {"object": "image_condition", "timestamp": "2024-02-04T06:00:00.848701+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:00:02.728398+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T06:00:02.977432+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:24.808674+00:00", "objects": ["landslide", "road_blockade_reason", "inside_tunnel", "building_collapse", "water_in_road", "image_condition", "fire", "image_description", "road_blockade", "alert_category", "traffic_ease_vehicle", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:18.963610+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:17.557215+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:04.463426+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:18.083131+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:17.005090+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:16.708894+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:18.396658+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-01T22:14:46.709942+00:00", "label": "null", "label_explanation": "The image shows a dark road with a fallen tree blocking the way. There is a green traffic sign on the side of the road. The surroundings are dark, with no visible buildings or other structures."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:17.293622+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:17.805810+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:18.699127+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:05.282628+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:25.838471+00:00", "objects": ["fire", "landslide", "image_condition", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "image_description", "building_collapse", "water_in_road", "alert_category", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:03.822074+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:03.521838+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:13.042363+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:05.929538+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:12.800585+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:13.904616+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:13.628642+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:08.495928+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:13.342923+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:06.788668+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.085155+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T06:04:25.355497+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "fire", "alert_category", "image_description", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:23.637202+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:19.298079+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:23.945439+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:25.117748+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of damage or structural issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:20.180085+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating a BRT lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:25.343856+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:24.864856+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_description", "timestamp": "2024-02-02T05:04:49.323912+00:00", "label": "null", "label_explanation": "The image is corrupted and it is not possible to see the road or the surroundings clearly. There are some cars passing by and the image is very blurry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:24.581509+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:25.854486+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:25.613390+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water on the surface. Vehicles can pass without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:24.245175+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:36.696915+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-03T08:04:02.864507+00:00", "label": "null", "label_explanation": "The image is dark and there is no light source visible. The road is not visible and there are no other details that can be seen."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:25.703756+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-04T06:05:27.169910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:26.011859+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:27.367985+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:26.277902+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:22.170949+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:26.877211+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:25.481713+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:21.373331+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:27.630618+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:26.604604+00:00", "label": "normal", "label_explanation": "There are no signs of any minor or major issues that might affect city life."}]}, {"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-04T06:04:26.961229+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:11.173287+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:07.643261+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:09.142994+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:08.441390+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:07.854254+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:08.634001+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:07.550907+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:08.145365+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.492936+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:06.474114+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:09.734171+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:30.405757+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "image_condition", "water_in_road", "image_description", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T06:05:22.746828+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:17.828153+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:23.680866+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:24.303750+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:05:23.955972+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:23.362606+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:18.699335+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:22.176175+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:22.470923+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:23.066189+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:24.557257+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:30.445879+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "water_in_road", "road_blockade", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:04:55.426165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:29.310943+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:29.039382+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:30.910402+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:29.933136+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:04:54.568593+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:04:58.435195+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:30.135158+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:31.781408+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as flooding, accidents, fire, etc."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:28.759750+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:31.160687+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:01:54.828107+00:00", "objects": ["image_description", "building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T01:52:08.345536+00:00", "label": "null", "label_explanation": "The image is distorted and unclear. It is difficult to see any details."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:42.177440+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:42.882357+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:36.796267+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:41.194011+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:41.458369+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T06:02:42.384686+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:41.874698+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:42.684341+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:37.652827+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:40.697162+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:40.967026+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T06:01:56.965677+00:00", "objects": ["traffic_ease_vehicle", "image_description", "inside_tunnel", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:26.710134+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:32.960468+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T06:05:13.646764+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:00:01.487537+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:13.028485+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:08.530431+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:12.286945+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:11.170648+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the road, which is completely blocking traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:08.277083+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:14.442162+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:11.754100+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-04T06:04:20.038166+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "fire", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T06:05:11.586840+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:11.312482+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:10.478075+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:10.779973+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:14.911854+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:12.105958+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:14.689000+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:06.795555+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.901243+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:11.870463+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:11.090663+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:27.776482+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "image_description", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:31.889082+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems. There are issues in the image quality, such as blurring and obstructions, that affect its clarity."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:24.655021+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T06:05:33.610468+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:32.513891+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:35.350008+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T02:17:34.306074+00:00", "label": "null", "label_explanation": "The image is blurry and unclear, making it difficult to see details. There are no visible signs of accidents, flooding, or other major issues. The road is dry, with no signs of water or puddles. There are no visible buildings or other structures in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:32.737482+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:32.218344+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:33.848390+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:33.346997+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:22.942271+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:33.065105+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no blockades or other issues that could impact traffic or city life."}]}, {"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-04T06:04:32.935153+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T00:40:14.615434+00:00", "label": "null", "label_explanation": "The image shows a dark enclosed space with no visible light sources. The walls and ceiling of the tunnel are made of concrete and the road is made of asphalt. There are no cars or people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:24.826460+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:23.811113+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:25.035014+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:24.555361+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:22.534155+00:00", "label": "normal", "label_explanation": "There are no major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:21.055706+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:19.688961+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:19.923017+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:23.003217+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:24.300998+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:21.816766+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:02:00.364840+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "image_condition", "building_collapse", "water_in_road", "brt_lane", "fire", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:48.499151+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:48.228289+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:47.341680+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:48.740844+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:47.664387+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:43.924254+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:02:49.038123+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:47.968770+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:04:52.920658+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:43.200073+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:49.642159+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:30.391682+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "image_description", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "alert_category", "brt_lane", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:12.122565+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:19.664537+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:21.722482+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:19.949862+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:20.958600+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:21.432011+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:20.432547+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:20.218442+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:20.706725+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:15.527292+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T06:05:21.210508+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T06:02:00.682267+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:02:49.447703+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:02:44.600623+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": "2024-02-04T06:02:47.791774+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:02:43.940124+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:02:48.104942+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:02:48.645774+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T06:02:49.075222+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:02:48.365424+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:02:48.853798+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:02:47.552584+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T06:02:49.646779+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T06:04:31.839282+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "image_description", "building_collapse", "fire", "alert_category", "road_blockade", "brt_lane", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:19.654427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:20.824770+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:19.137802+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:20.293739+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T06:05:20.535543+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:19.927389+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no obstructions or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:19.406661+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:12.837443+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:18.866909+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:11.942644+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:21.129170+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:35.793743+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T06:05:17.743376+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:20.755853+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:17.965232+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:21.225797+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:20.188815+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:19.104319+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:17.343351+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:21.772849+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:18.782533+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:21.485556+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:19.886940+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T06:04:36.793679+00:00", "objects": ["landslide", "image_condition", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:25.743448+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:23.629513+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:24.422210+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:19.637315+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "fire", "timestamp": "2024-02-04T06:05:25.262109+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:24.165327+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:24.974700+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:20.396037+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:23.936979+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:24.653898+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_description", "timestamp": "2024-02-02T04:25:05.706458+00:00", "label": "null", "label_explanation": "The image is dark and there is not much to see. There is a slight curve to the left."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:25.520548+00:00", "label": "easy", "label_explanation": "The road is clear with no water or puddles. The road surface is dry and easily navigable for vehicles."}]}, {"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-04T06:04:42.918281+00:00", "objects": ["traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "image_description", "water_in_road", "brt_lane", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:14.726400+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:10.883263+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:10.675561+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-01T21:12:52.812538+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a road running through it. The tunnel is well-lit and there are no signs of any obstructions. There is a fallen tree blocking part of the road, but there is still enough space for vehicles to pass. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:08.940595+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:09.185534+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T06:05:14.488211+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:14.283248+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:09.787986+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:08.358986+00:00", "label": "clean", "label_explanation": "The image is clear and there is no interference. The image is well-lit and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:05.068851+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a bright light at the end of it. The tunnel walls and ceiling are made of concrete and the road is made of asphalt. There are no cars or people visible in the image."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:14.996904+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:41.515644+00:00", "objects": ["building_collapse", "image_description", "image_condition", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T06:05:24.531008+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-03T16:16:40.634412+00:00", "label": "null", "label_explanation": "The image is heavily distorted with significant visual interference. The image quality is poor and the content is not clearly visible. There is no clear indication of the scene or any objects present."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:23.257929+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:24.768710+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:23.453308+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:25.035480+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:23.729287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:24.258654+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:19.533869+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:25.259097+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:23.975315+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:20.287526+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T06:04:41.723069+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "landslide", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T06:05:25.943592+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:21.862420+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:27.859633+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:22.730218+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:26.750421+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:27.354504+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:26.239932+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T06:05:27.577402+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:27.058842+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:28.187330+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:26.466892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-04T06:04:42.623284+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": "2024-02-04T06:05:30.977296+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:30.667398+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:29.866674+00:00", "label": "normal", "label_explanation": "There are no minor issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:07:16.374046+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:28.761984+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:24.725006+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:25.431333+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:29.047597+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T06:05:30.357343+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:07:17.241392+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:29.556777+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T06:04:42.889656+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "image_description", "inside_tunnel", "alert_category", "building_collapse", "water_in_road", "brt_lane"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:34.310385+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T06:05:35.744198+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:34.037135+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:35.426874+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:33.449111+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T06:05:35.128371+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:28.942845+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:34.538867+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that should be reported."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:34.841449+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:33.726417+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:29.842438+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}]}, {"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-04T06:04:42.989890+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "road_blockade_reason", "building_collapse", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T06:05:28.601492+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T06:05:28.900016+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T06:05:31.717163+00:00", "label": "normal", "label_explanation": "There are no minor issues that should be reported. The image shows a clear road with no blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T06:05:35.554539+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T06:05:33.681517+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T06:05:32.287335+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T06:05:33.102308+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T06:05:35.287182+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T06:05:35.814761+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T06:05:30.013128+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T06:05:30.771438+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file +[{"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:04.933880+00:00", "objects": ["road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "brt_lane", "building_collapse", "image_condition", "image_description", "fire", "water_in_road", "alert_category", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:32:48.774002+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:32:48.995740+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:32:59.234449+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:32:43.978884+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:32:44.763424+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:32:52.770341+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:32:48.237736+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:15.019472+00:00", "label": "null", "label_explanation": "The image shows a wide road with a church on the left side. There are a few cars parked on the side of the road and some trees on either side. The road is wet from rain."}, {"object": "fire", "timestamp": "2024-02-04T08:32:58.757672+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:32:48.517540+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:32:49.560414+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:06.567340+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:20.476975+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "water_in_road", "road_blockade", "brt_lane", "image_description", "image_condition", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:33:15.187811+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:16.464913+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:14.764437+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:33:13.004417+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:12.633370+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.069424+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:16.328346+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.399297+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) on the left side of the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:16.916202+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a red car driving on the road, and there are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:15.808713+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.905156+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:16.705153+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T08:32:14.988163+00:00", "objects": ["building_collapse", "road_blockade", "water_in_road", "fire", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.129789+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.446132+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.145388+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.617578+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.822266+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.851706+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.930083+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:15.023667+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:14.337367+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.323046+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars parked on the side. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.029255+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.728246+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:09.602510+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "fire", "brt_lane", "road_blockade", "image_description", "water_in_road", "image_condition", "landslide", "building_collapse", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.007830+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.003036+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:17.928848+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:12.719071+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:16.739536+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:22.743669+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with concrete walls and a metal railing on the right side. The ground is covered in overgrown grass and debris, and the only light comes from a street lamp in the distance. There is a large amount of graffiti on the walls."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.464805+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road. The puddle is not significant and does not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.192219+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:18.444857+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:17.599550+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.214602+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can easily pass through."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.198296+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}]}, {"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-04T08:32:17.696855+00:00", "objects": ["brt_lane", "image_description", "traffic_ease_vehicle", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:33:17.216841+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:23.253505+00:00", "label": "null", "label_explanation": "The image shows a street intersection with a fallen tree blocking the road. There is a car stopped behind the tree. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:22.606399+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:21.019388+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:22.900679+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:21.319428+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.795913+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:16.486607+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:21.912994+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.517176+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "fire", "timestamp": "2024-02-04T08:33:22.292042+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.689147+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T08:32:06.978346+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "road_blockade", "image_description", "water_in_road", "image_condition", "landslide", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.436526+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.287124+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.478413+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.844549+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.644139+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.765546+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.245833+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.340397+00:00", "label": "null", "label_explanation": "The image shows a street intersection in Rio de Janeiro. There are a few cars and buses on the road, and people are walking on the sidewalks. The buildings are tall and brightly colored. The sky is cloudy and there is a light rain falling."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.925256+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.635663+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.065028+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.586983+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:32:04.023589+00:00", "objects": ["road_blockade", "fire", "alert_category", "building_collapse", "image_condition", "water_in_road", "road_blockade_reason", "inside_tunnel", "image_description", "brt_lane", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.466745+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.662688+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:19.179366+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.438088+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.796106+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.163872+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.920956+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.851431+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.432500+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree partially blocking the right lane. There is a bus lane on the left side of the road, separated by a concrete barrier. The road is wet from rain, but there is no flooding. The surrounding area is urban, with buildings and trees on either side of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.542299+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.941664+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.146259+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:12.354301+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.418409+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.592376+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.960690+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.320669+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.622570+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.338845+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.038816+00:00", "label": "null", "label_explanation": "A wide road with a slight curve to the right. There is a white car driving in the right lane, and no other cars are visible. The road is lined with trees and buildings, and there is a traffic light in the distance. The sky is cloudy and there is a slight haze in the air."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.822401+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.102824+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.619164+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:19.828469+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.596924+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:04.137818+00:00", "objects": ["landslide", "fire", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:33:13.718484+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:33:23.352161+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:22.083442+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:22.572074+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:22.852890+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:21.869419+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:18.486590+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:17.663269+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:22.355381+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:23.569117+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:24.946196+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. There is a building on the left side of the road. The road is clear with no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:23.083182+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:15.091702+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "image_description", "water_in_road", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.278953+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.491619+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:19.008509+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.787373+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.504467+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.289146+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.217157+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.924549+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.013024+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.760348+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.729319+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.819403+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:17.784194+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "road_blockade", "image_description", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.940050+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.077973+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.275223+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:17.563934+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:19.850194+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a bus driving on the left side of the road. There is a fallen tree on the right side of the road. The tree is blocking the road. There are cars parked on the side of the road. There are people walking on the sidewalk. There are buildings in the background."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.071010+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T08:33:18.664452+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.938249+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.345974+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.158229+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:18.375799+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:19.475355+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:31:58.224498+00:00", "objects": ["brt_lane", "landslide", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:33:15.853292+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:21.709741+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:20.429521+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:21.433363+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T08:33:21.215336+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:20.726480+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:20.929464+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:19.661529+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.549402+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.211808+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:41.290555+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of water accumulation. The image is clear and easy to see."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:19.920288+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T08:32:20.446754+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "fire", "landslide", "water_in_road", "image_condition", "image_description", "road_blockade_reason", "brt_lane", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:33:21.029988+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:22.245447+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no water on the surface."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.524718+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:16.437502+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T08:33:21.952255+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:22.514646+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.818560+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.541678+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:35.412198+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bike lane on the left side and a bus lane on the right side. There are trees and buildings on both sides of the road. The traffic lights are green and there are no cars on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:21.245491+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:17.126384+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:21.734500+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:00.211423+00:00", "objects": ["road_blockade", "image_description", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "brt_lane", "inside_tunnel", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:33:17.874498+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.354543+00:00", "label": "null", "label_explanation": "The image is a CCTV image of Rio de Janeiro. The image shows a road with a fallen tree. The tree is blocking the road and there are cars stopped behind it. There is a building in the background."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.492875+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.664190+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.245497+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.870614+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.071383+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.288213+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.573275+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.423307+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.103491+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.618497+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T08:32:01.437056+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "inside_tunnel", "building_collapse", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "fire", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.382594+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:16.695565+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.043021+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:09.549533+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:17.597104+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:12.738935+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:18.706112+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There is a road with a clear sky and no visible signs of traffic or people."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:18.474064+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.323729+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.161250+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:33:17.849754+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.013843+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:01.596195+00:00", "objects": ["road_blockade_reason", "water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "image_description", "brt_lane", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.407163+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.923559+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:17.995504+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.501535+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:18.728555+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:33:18.217716+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:17.207843+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.700666+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.705076+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:34.540456+00:00", "label": "null", "label_explanation": "A four-lane road with a red car in the foreground. There are trees and buildings on either side of the road. The sky is cloudy."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:13.524270+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.691765+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T08:32:06.926376+00:00", "objects": ["fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "landslide", "image_description", "brt_lane", "water_in_road", "building_collapse", "inside_tunnel", "image_condition", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:33:21.110381+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:20.391363+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:20.606506+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:21.318994+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:21.583318+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:21.858507+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane. There is a bus stop on the right side of the road. There are trees and buildings on both sides of the road. The sky is cloudy and there is a mountain in the background."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:16.393589+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:19.915312+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:20.805260+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:15.513375+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:19.700702+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.186973+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:23.211879+00:00", "objects": ["image_description", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "image_condition", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:33:18.415077+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are a few cars parked on the side of the road and some people walking around. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:17.850700+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:12.999880+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.088401+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.127770+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.370526+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:16.846909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:17.592142+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.091689+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:18.159313+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:17.385927+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:16.585240+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:52.071144+00:00", "objects": ["landslide", "road_blockade", "alert_category", "building_collapse", "brt_lane", "water_in_road", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T07:27:45.145873+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T07:27:43.767267+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T07:27:44.191613+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-04T07:27:44.446553+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T07:27:40.297599+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T07:27:43.509366+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T07:27:43.229613+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T07:27:44.674272+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T07:27:45.365607+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are no cars on the road and the traffic lights are red. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T07:27:44.889668+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T07:27:43.960664+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T07:27:39.557521+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:32:43.972378+00:00", "objects": ["image_description", "inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:24:13.740427+00:00", "label": "null", "label_explanation": "The image shows a road with a fallen tree. The tree is large and blocking a significant portion of the road, but vehicles can still pass with caution. There is no water on the road and the surrounding area is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:18.846797+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:24:13.267812+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is completely dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:24.046508+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T08:33:17.825353+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:19.677851+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:22.738135+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:17.456826+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:23.265988+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:23.521588+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:23.028029+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:23.752710+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:15.372214+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:28.385870+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. The tree is large and has fallen across the road, blocking the left lane. There are cars stopped behind the tree, unable to pass. There is a bike lane on the right side of the road, separated by a curb. Trees line both sides of the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.899295+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:21.415847+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:22.499160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:23.805444+00:00", "label": "easy", "label_explanation": "The road is clear, with only small, manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:12.977597+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:21.127483+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.915967+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:15.038467+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.559835+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:33:23.299521+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:14.334149+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:32:12.243673+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "fire", "image_description", "image_condition", "alert_category", "building_collapse", "road_blockade_reason", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.555686+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.775749+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:12.485298+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:20.162540+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.856314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.474669+00:00", "label": "null", "label_explanation": "The image shows a wide road with a slight curve to the right. There are several large buildings on the left side of the road and a few trees on the right side. The road is clear with no visible obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:18.210896+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:19.460744+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.672825+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.982800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:09.092470+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.292027+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:08.326110+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade_reason", "fire", "brt_lane", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:27:37.421502+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:38.928595+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:37.010888+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:38.716007+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:37.237088+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:39.153827+00:00", "label": "null", "label_explanation": "The image shows a wide, empty street with a pedestrian crossing and a traffic light. There are buildings on both sides of the street. The street is lined with trees, and the sky is cloudy."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:37.712997+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-04T08:27:38.507602+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:34.193176+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:38.278906+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:37.925803+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:23.799082+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:33:04.556992+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:28:17.920513+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or issues. The road is surrounded by trees and buildings, and the weather appears to be clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:11.725388+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:16.110750+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:16.403203+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:16.735943+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:12.422711+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:16.927226+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:15.894413+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:28:17.105070+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:15.608344+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:17.314227+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:17.606035+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:05.288205+00:00", "objects": ["image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:33:22.839702+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with buildings on either side. The road is dry and there are no signs of traffic congestion or other issues. The image is clear and there are no obstructions to visibility."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.618282+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:22.303196+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can proceed with ease."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.840788+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:21.630120+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:32:48.339074+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T08:33:21.994836+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.422402+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.233844+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:22.607352+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:32:49.408710+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:21.125356+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:11.663639+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:28:40.515486+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:41.729218+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:37.064407+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:38.746599+00:00", "label": "null", "label_explanation": "The image shows a road scene with a car driving on it. There are trees and buildings on either side of the road. The road is clear and there are no signs of any problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:40.233754+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:36.308622+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:41.228473+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:41.007724+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:28:41.518494+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:42.026103+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:40.016088+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:40.741141+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:09.670295+00:00", "objects": ["road_blockade", "building_collapse", "road_blockade_reason", "brt_lane", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:30:30.132938+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:30.853893+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:30.424657+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:26.678066+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:30:31.126274+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:29.930606+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:31.355115+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:04.184900+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a black car in the right lane, and no other vehicles are visible. The road is bordered by trees and buildings, and the sky is clear. The image is slightly blurred but still clear enough to identify objects and potential issues."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:31.638840+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:30.640796+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:29.687239+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:25.853808+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:32:00.328679+00:00", "objects": ["road_blockade", "fire", "traffic_ease_vehicle", "landslide", "image_condition", "inside_tunnel", "image_description", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.632099+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.711823+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.943394+00:00", "label": "moderate", "label_explanation": "There is a presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.203114+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:18.064050+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.852393+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.423626+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the road and there is a car stopped behind it. There is a building to the right of the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.344636+00:00", "label": "true", "label_explanation": "There is a presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.833650+00:00", "label": "false", "label_explanation": "The image is not showing any lanes marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.824045+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.423726+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:19.118824+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}]}, {"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-04T08:32:09.715188+00:00", "objects": ["image_description", "inside_tunnel", "image_condition", "brt_lane", "building_collapse", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:33:19.715617+00:00", "label": "null", "label_explanation": "The image shows a street corner with a clear road and no visible obstructions. There are trees on either side of the road and buildings in the background. The image is well-lit and the weather is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.656256+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.887594+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:13.546234+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:18.293278+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:17.419888+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.940259+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:19.314619+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.757454+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.196377+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:18.517948+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.632810+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:04.692019+00:00", "objects": ["road_blockade", "road_blockade_reason", "landslide", "alert_category", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "image_description", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:31:27.604490+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely free."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:31:27.911696+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:29.185564+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:31:28.182828+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:31:27.177371+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:31:28.624341+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:28.391352+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:28.904148+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:31:29.396671+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking part of the road. There is a building on the left side of the road and a green traffic light in the distance. The sky is clear, and the sun is shining."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:31:27.391142+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:31:23.499667+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:31:24.219160+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:11.007878+00:00", "objects": ["alert_category", "road_blockade_reason", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "road_blockade", "water_in_road", "fire", "building_collapse", "image_description"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T08:33:10.309378+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:32:59.234873+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:32:46.928930+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:32:58.658024+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:32:48.332149+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:23.732752+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is completely dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:32:49.032847+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:22.426361+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:32:48.820465+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-04T08:32:48.125070+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:23.218262+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:24.322332+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gray fence on the left side and a row of parked cars on the right side. There is a tall building in the background and a clear blue sky with some clouds. The road is dry and there are no visible hazards or obstructions."}]}, {"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-04T08:32:33.184707+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:32.051338+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:28.546502+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:32.244696+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:33.242136+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:29.268635+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:32.958170+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:30:33.432843+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:32.763772+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:33.926727+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:34.142541+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is cloudy and there is a light rain falling."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:33.726548+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:32.546893+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:56.318517+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:40.839690+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees on either side of the road and a few cars parked on the side. The road is not crowded and traffic is flowing smoothly."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:40.543217+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:40.348433+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:39.627290+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:39.839392+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:38.677428+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:35.056420+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:35.830359+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:38.946015+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:30:40.056570+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:39.150022+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:39.354681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:03.106385+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "building_collapse", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:31:30.045249+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:31.051909+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:31.331473+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:30.545642+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:31:25.743181+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:31:29.823290+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:31:30.323364+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:31:26.539848+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:31:30.815546+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:31:29.342173+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:44.583101+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road, and people are crossing the street. The road is wet from the rain, and there are some puddles on the ground. The buildings in the background are tall and brightly lit."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:31:29.552752+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T08:32:47.844892+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:30:22.282876+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there is no debris on the ground."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:23.261025+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:22.577651+00:00", "label": "null", "label_explanation": "The image is dark and there is not much to see. There is a slight curve in the tunnel and the walls are made of concrete."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:23.695841+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:33:22.988953+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:22.065485+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:21.560586+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:21.783726+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:23.913191+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:22.703419+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:24.232939+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:24.525073+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:33:03.680783+00:00", "objects": ["image_condition", "landslide", "water_in_road", "image_description", "road_blockade", "fire", "brt_lane", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:56.834099+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:59.021586+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:57.140558+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:59.251583+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a fallen tree blocking part of the road. There are cars on the road, and people are walking on the sidewalk. The trees on the side of the road are green, and the sky is cloudy."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:57.425354+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "fire", "timestamp": "2024-02-04T08:30:58.512996+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:54.142289+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:58.247282+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:58.740985+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:53.433449+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:57.941792+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:57.718914+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}]}, {"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-04T08:32:35.822174+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:27.198834+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:22.303525+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:27.711741+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road and a few people walking around. The street is lined with trees and buildings."}, {"object": "fire", "timestamp": "2024-02-04T08:30:26.924893+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:22.922156+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:26.720462+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:25.717790+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:26.414538+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:25.985249+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:25.511792+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:27.454597+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:26.203400+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of 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-04T08:33:13.697556+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "brt_lane", "fire", "image_condition", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T08:31:01.646976+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:24.107310+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars parked on either side and trees on both sides of the road. There is a yellow taxi driving in the center of the street. There are no visible road signs or markings. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:31:01.435081+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:58.135105+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:31:02.124332+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:31:00.819508+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:31:01.027279+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:57.525934+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:02.548563+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:01.915472+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:02.330303+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:31:01.228955+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:27.634069+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:36.745952+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with multiple lanes of traffic. There are buildings and trees on either side of the avenue. The sky is cloudy and there is a slight drizzle. The road is wet but there are no significant puddles. Traffic is moderate and there are no visible obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:21.163438+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T08:33:20.465918+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:23.974310+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:23.730225+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:24.342739+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:22.036648+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:23.245119+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.654792+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:21.362147+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.245604+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:22.827922+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T08:32:38.426564+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:17:58.522883+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:17:44.252810+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T08:14:53.406023+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian crossing. There are trees and buildings on either side of the road. The road is lit by streetlights. There are two people crossing the road. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:17:53.710052+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:17:43.319104+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:17:53.924092+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:17:56.146577+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T08:17:58.243650+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:17:54.210968+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:17:57.998188+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:17:53.502440+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:17:58.817615+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:58.411545+00:00", "objects": ["inside_tunnel", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:43.671657+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:49.279810+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:50.071839+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:49.596019+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:48.089609+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:50.296146+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:48.698359+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:49.070167+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:48.389799+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:30:49.786713+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:44.478924+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:50.578415+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection in Rio de Janeiro. There are a few cars and buses on the road, and the traffic lights are green. The road is lined with trees and buildings, and there is a clear blue sky with some clouds overhead."}]}, {"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-04T08:32:26.313849+00:00", "objects": ["road_blockade_reason", "landslide", "inside_tunnel", "building_collapse", "water_in_road", "image_condition", "fire", "image_description", "road_blockade", "alert_category", "traffic_ease_vehicle", "brt_lane"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:31.510590+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:32.908454+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:26.630709+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:32.034423+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:30.925122+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:30.615851+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:32.311778+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:11.096350+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:31.228976+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:31.793121+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:32.614277+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:27.428147+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:32.901090+00:00", "objects": ["road_blockade", "inside_tunnel", "image_description", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:30:41.408321+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:37.415270+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:43.014573+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking one lane. There are cars parked on either side of the road and a building in the background."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:42.124253+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:42.525380+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "fire", "timestamp": "2024-02-04T08:30:42.321392+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:41.831769+00:00", "label": "normal", "label_explanation": "There are no minor or major issues. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:38.125338+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:40.904176+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:41.216896+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:41.621644+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:42.800759+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:10.285070+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:28:33.390846+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:32.618582+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:28.910038+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:32.104289+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:34.101227+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with several lanes. There are a few cars and buses on the road, and some people are walking on the sidewalks. There are buildings and trees on either side of the road. The sky is cloudy and there is a slight drizzle."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:31.829298+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:33.862435+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:32.899732+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:28.207398+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:33.106266+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:33.628787+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:32.407813+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:01.942695+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:27:39.987519+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:34.137922+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:38.977237+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:38.472951+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:40.276148+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:35.012800+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:38.704322+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:39.479719+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:40.878342+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:39.768339+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:39.183881+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:40.516012+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:12.925593+00:00", "objects": ["road_blockade_reason", "fire", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "alert_category", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:17.430957+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:28:18.151262+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:13.041421+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:17.162311+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:18.352133+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can pass through the area without difficulty."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:18.863548+00:00", "label": "null", "label_explanation": "The image shows a street intersection with a yellow grid-like structure on the road. There is a white truck in the background and a few parked cars on the side of the road. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:16.943848+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:13.751811+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:17.635670+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:17.853687+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:16.705374+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:18.621847+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:48.080898+00:00", "objects": ["building_collapse", "landslide", "image_description", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:30:52.272873+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:52.889133+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:21.162330+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a bus lane to the left. There is a fallen tree on the right side of the road, blocking the right lane. There are no cars on the road and the sky is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:47.603583+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:51.571892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:51.779641+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:30:52.481546+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:51.984500+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or other issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:52.692118+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no puddles or water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:48.285687+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:51.085619+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:51.298685+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T08:33:05.439931+00:00", "objects": ["inside_tunnel", "landslide", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_condition", "image_description", "road_blockade", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:44.087836+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:49.493567+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:44.774732+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:32.985956+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:47.881842+00:00", "label": "true", "label_explanation": "There is a large oil spill on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:49.295456+00:00", "label": "difficult", "label_explanation": "The oil spill is a minor issue that could affect city life."}, {"object": "fire", "timestamp": "2024-02-04T08:30:49.077049+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:48.795872+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:47.595037+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:49.769308+00:00", "label": "null", "label_explanation": "The image shows a road with cars driving on it. There is a large oil spill on the road. The oil spill is causing traffic to slow down. There are buildings and trees on either side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:48.090249+00:00", "label": "partially_blocked", "label_explanation": "The oil spill is a minor issue that could affect city life."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:48.573105+00:00", "label": "minor", "label_explanation": "The oil spill is a minor issue that could affect city life."}]}, {"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-04T08:32:55.079462+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_description", "image_condition", "building_collapse", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:30:46.165044+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:46.687606+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:45.875965+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:42.195835+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:47.791599+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking the road. The road is partially blocked and there is a car stopped behind the tree. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:45.654171+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:46.887198+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:42.949634+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:47.378640+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:46.374240+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:47.558651+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:30:47.173155+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T08:33:02.751119+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:27:22.272546+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:12.067512+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:21.364763+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:21.121074+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:22.063201+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:20.479744+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:20.830031+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:21.575573+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:08.955486+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:23.729286+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:26.359057+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with a clear sky. There are a few cars on the road and the traffic lights are green. There are trees and buildings on either side of the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:26.158485+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:11.276306+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:20.476245+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:21.582687+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T08:28:21.298283+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:21.820509+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:19.606479+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:16.297716+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:15.422267+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:20.704373+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:19.916103+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:37.555251+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are no cars on the road. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:20.204734+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:21.013536+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:29.854473+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:33:19.593299+00:00", "label": "poor", "label_explanation": "The image is slightly blurred due to rain, but it is still possible to see the details of the scene."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:20.300206+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.381507+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.573809+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is partially blocking the road, but vehicles can still pass with caution."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:19.117423+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:19.828813+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.086987+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road, but they are not causing any significant traffic disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:20.789949+00:00", "label": "moderate", "label_explanation": "The large puddles of water are causing some difficulty for vehicles, but they are still able to pass."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:21.498761+00:00", "label": "null", "label_explanation": "The image shows a wet road with a fallen tree blocking part of the road. There is a bus rapid transit (BRT) lane on the left side of the road. There are buildings and trees on either side of the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:21.074103+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings in the image are intact."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:18.895553+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.300316+00:00", "label": "minor", "label_explanation": "The fallen tree is causing some traffic disruption, but it is not a major issue. There are no other issues that would affect city life."}]}, {"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-04T08:32:43.978035+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "water_in_road", "brt_lane", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:38.124855+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are a few cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:37.622305+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:36.701402+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:36.429706+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:36.229632+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:33.084584+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:30:37.413059+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:37.138454+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:36.921218+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:36.002548+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:32.216493+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:37.838598+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:56.941503+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "image_condition", "image_description", "alert_category", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:30:35.603368+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:40.230083+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:39.322378+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:40.793135+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:39.613505+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:34.902247+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:39.030492+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:38.808193+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:41.310016+00:00", "label": "null", "label_explanation": "A night view of a street with a gas station on the left and a sports court on the right. There is a tree on the right side of the image. The street is empty, with no cars or people visible. The image is well-lit, and the details of the scene are clearly visible."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:39.899889+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:30:40.509437+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:41.003872+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:38.754530+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:30:56.990622+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:57.688743+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are cars parked on either side of the road and buildings in the background. The sky is cloudy and there is a slight haze in the distance."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:56.371244+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:55.677338+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:55.889855+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:57.480138+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:57.273532+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. There is no hindrance to vehicle movement."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:52.993094+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:52.381440+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:56.798521+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:56.158010+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:56.585013+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-04T08:32:55.440998+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "road_blockade_reason", "building_collapse", "road_blockade", "image_description", "water_in_road", "traffic_ease_vehicle", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:30:38.950328+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:30:38.460175+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:37.965336+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:36.868267+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:37.672701+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:38.172442+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:37.456284+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:39.164800+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or issues. The road is surrounded by trees and buildings, and the sky is clear."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:37.152644+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:38.669763+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:33.284902+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:34.042046+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:30.505836+00:00", "objects": ["fire", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "building_collapse", "image_description", "alert_category", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:30:34.124484+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:34.717407+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:29.432544+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:32.541583+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:34.431911+00:00", "label": "moderate", "label_explanation": "The fallen tree is blocking one lane of traffic, but vehicles can still pass. This is a minor issue that should be reported."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:33.323130+00:00", "label": "fallen_tree", "label_explanation": "There is a tree that has fallen onto the road, blocking the left lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:33.105385+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking one lane of traffic, but vehicles can still pass. This is a minor issue that should be reported."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:33.823272+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:30.407012+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road tunnel with graffiti on the walls. The road is dry and there is no traffic. There are no people or vehicles visible in the image."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:33.550433+00:00", "label": "minor", "label_explanation": "The fallen tree is blocking one lane of traffic, but vehicles can still pass. This is a minor issue that should be reported."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:32.817582+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:28.640325+00:00", "label": "false", "label_explanation": "The image shows an elevated road with a clear view of the sky, indicating that it is not inside a tunnel."}]}, {"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-04T08:25:17.057328+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:26:58.057090+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:25:55.747105+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:26:57.798866+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:26:57.122747+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:26:42.861288+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:26:54.177510+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:26:53.969321+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:26:53.749084+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T08:26:58.887025+00:00", "label": "null", "label_explanation": "The image is of a road with a clear sky. There are no cars on the road and the road is in good condition. There are trees on either side of the road and a few buildings in the background. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T08:26:53.495251+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:26:58.300988+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T08:26:58.590840+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:33.563894+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "building_collapse", "fire", "alert_category", "road_blockade", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:20.316460+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:21.325715+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:19.821835+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:21.611324+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:21.899256+00:00", "label": "null", "label_explanation": "The image shows a street corner in Rio de Janeiro. There are a few cars parked on the side of the road and some trees. The street is wet from the rain."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:20.813744+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T08:33:21.102641+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:20.600981+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.103180+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:15.906178+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:19.582974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:15.132641+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:33:12.129142+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:27:35.279593+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:20.551080+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:35.533286+00:00", "label": "easy", "label_explanation": "There is no water on the road, allowing for easy vehicle movement."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:28.979319+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:29.251762+00:00", "label": "false", "label_explanation": "There are no signs of water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:34.488223+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:35.742515+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:32.231113+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:34.823076+00:00", "label": "normal", "label_explanation": "There are no visible issues that would interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:36.045701+00:00", "label": "null", "label_explanation": "The image shows a wide, two-lane road with a concrete barrier separating the lanes. The road is bordered by a low concrete wall on one side and a grassy area with trees on the other. There is a bridge in the background. The image is clear and well-lit."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:19.760868+00:00", "label": "false", "label_explanation": "The image shows an open road with no visible signs of being inside a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:35.072105+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}]}, {"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-04T08:32:54.265965+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description", "alert_category", "inside_tunnel", "image_condition", "brt_lane", "fire", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:47.879451+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:48.407331+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:48.914162+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:49.331170+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a traffic light at the intersection, and a street sign that says 'Rua da Tijuca'. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:48.120221+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:43.226374+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:47.042340+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:43.949107+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:30:48.621540+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:47.558299+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:49.120075+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:47.279150+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T08:32:43.869771+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "landslide", "road_blockade"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:50.004143+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:53.703782+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:55.566833+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:50.708838+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:54.418024+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:56.010357+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees on either side of the road and buildings in the background. The road is not very busy and there are no cars parked on it. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:55.002285+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:53.928150+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:30:55.210015+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:54.714485+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:55.804656+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:54.201788+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:59.865875+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "building_collapse", "road_blockade_reason", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T08:30:48.238035+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:44.651876+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:48.884904+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:49.144816+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:48.651208+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:49.964159+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a large tree on the left side. The road is lined with trees and shrubs, and there is a building in the background. The road is dry and there is no traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:48.445781+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:49.543139+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:48.036759+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:45.343369+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:49.747601+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:30:49.332709+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T08:33:09.535374+00:00", "objects": ["image_condition", "water_in_road", "image_description", "building_collapse", "fire", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "brt_lane", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:59.149124+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:59.424980+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T08:31:01.317637+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with a fallen tree. The tree is blocking part of the road, but there is still room for vehicles to pass. There is no water on the road and the surrounding area is clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:00.335189+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T08:31:00.542700+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:59.843302+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:31:00.119440+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:55.648305+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:00.847100+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily without any hindrance."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:01.121895+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:56.346259+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:59.635163+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:52.499833+00:00", "objects": ["road_blockade_reason", "landslide", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:37.051023+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:38.275383+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:38.578306+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-way road intersection. There are no cars or pedestrians visible in the image. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:36.769287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:37.976969+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:36.287939+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:37.760024+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:37.272424+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:37.474611+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:36.578181+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:33.269586+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:32.491127+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:33:15.629002+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:14.836319+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:15.529255+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:18.740749+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:18.554990+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:28:19.644533+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:18.952149+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:19.161402+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:19.869407+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:19.443310+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:18.260335+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:20.357986+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with buildings on the left and right. There is a bus on the right side of the road. The road is partially blocked by a fallen tree."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:20.068934+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:41.389822+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:41.679378+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees on either side of the road and buildings in the background. The road is wet from rain, but there are no puddles. There is a car driving in the right lane."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:40.355025+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:40.141925+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:39.366292+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:40.743923+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:39.639133+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:36.551812+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:39.857534+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:41.230376+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:35.777014+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T08:30:40.966734+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:41.446564+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:00.985543+00:00", "objects": ["image_condition", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:45.875254+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:47.704037+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:46.643161+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:41.900622+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:47.086710+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:46.880939+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:47.980753+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through without difficulty."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:42.679866+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:48.283701+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:46.207390+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:48.569112+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a traffic light at the intersection and a street light on the side of the road. There are cars parked on the side of the road and a few trees in the background."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:47.397708+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:33:13.379153+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "landslide", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:28:28.426245+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars driving on the road and people walking on the sidewalks. The buildings are tall and colorful. The sky is clear and the sun is shining."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:15.217673+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:31:14.041635+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:31:15.027214+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:31:14.522307+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:31:13.611685+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:31:10.731345+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:31:10.027689+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:31:14.313314+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:31:13.825434+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:15.426165+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:14.736647+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:36.004771+00:00", "objects": ["traffic_ease_vehicle", "fire", "image_condition", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:39.826863+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:24.471599+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:24.768881+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:25.023069+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:40.316423+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gas station on the right side. There are cars parked on the side of the road and a few trees on the left side. The road is wet from rain."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:38.440428+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:39.136184+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:35.530784+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:38.707856+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:39.414877+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:23.945179+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:24.167182+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:55.613060+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:30:44.581371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:41.166298+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for buses."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:40.316797+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:45.293276+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All the buildings in the image are intact, with no signs of damage or structural issues."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:44.315566+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:45.506546+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:58.913663+00:00", "label": "null", "label_explanation": "The image shows a road scene with a fallen tree. The tree is large and has fallen across the road, blocking part of it. There is a building to the right of the road, and a street light can be seen in the background. The road is wet from rain."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:44.801984+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:45.021782+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image is clear."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:44.103235+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and focused, with no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:45.810864+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:45.995242+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T08:33:07.758411+00:00", "objects": ["brt_lane", "road_blockade_reason", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:28:11.952697+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:15.645188+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:15.133475+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:11.243620+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. The road is not enclosed and there are no tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:15.841348+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:15.352764+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:16.848108+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:16.623955+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water on the surface."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:16.125126+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:17.172164+00:00", "label": "null", "label_explanation": "The image shows a wide road with a concrete fence in the foreground on the left side. There is a row of trees on the right side of the road. In the background, there are tall buildings and a clear blue sky. The road is dry and there is no traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:28:16.340052+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:14.872448+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T08:33:10.931318+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "image_description", "alert_category", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:19.656686+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:31.252848+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:29.281558+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:30.067177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:20.429708+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:30.633338+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:29.788165+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:31.056828+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:31.578683+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees on either side of the road and buildings in the background. The road is dry and there is no traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:30.381464+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:27:30.844989+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:29.536192+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T08:33:06.490454+00:00", "objects": ["fire", "landslide", "image_description", "inside_tunnel", "alert_category", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:30:55.479344+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:55.978785+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:56.296599+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a BRT lane on the left side. There are no cars on the road and the image is clear with no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:49.592455+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:54.964631+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:53.773004+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:55.182940+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:54.077774+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:50.494266+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:54.588832+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:55.688947+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:54.362645+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:05.472282+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "brt_lane", "image_condition", "road_blockade", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:28:23.716444+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:22.105472+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:22.595938+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:24.000660+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are no cars on the road. The traffic lights are green. The road is surrounded by trees and buildings."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:18.312528+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:22.808434+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:28:23.289972+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:19.000568+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:21.890503+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:22.312875+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:23.511750+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:23.009183+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:54.638089+00:00", "objects": ["landslide", "image_condition", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:30:37.398882+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:35.475648+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:36.194015+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:31.911291+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T08:30:36.884180+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:35.964302+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:36.672147+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:32.604135+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:35.684608+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:36.466296+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:37.592659+00:00", "label": "null", "label_explanation": "A night-time image of a wide, empty road with a gas station on the right side. Trees and other vegetation line the road. There is a clear sky with no visible stars or moon."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:37.111324+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T08:32:46.462266+00:00", "objects": ["fire", "alert_category", "building_collapse", "image_condition", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:30:47.582787+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:47.153124+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:47.353664+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:46.186467+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:46.870438+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:48.344242+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are a few cars parked on the side of the road and some people walking around. The buildings are mostly residential and commercial, and there are a few trees on either side of the street. The image is taken from a slightly elevated angle, and the sky is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:42.627443+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:48.055535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:47.832106+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:46.437279+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:46.667046+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:43.334340+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:33:07.587782+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:48.343727+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:49.958463+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:44.751801+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T08:30:49.734192+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:48.545517+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:50.461680+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. There are buildings and other structures in the background. The road is clear with no visible obstructions or hazards."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:49.252561+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:48.765763+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:49.467071+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:45.556477+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:50.171958+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:49.050275+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:46.599202+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:30:32.478286+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:31.270401+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:32.766265+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:28.268819+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:31.763068+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:31.470920+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:33.458030+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are a few small puddles on the road, but they are not significant. The road is bordered by trees and buildings. There is a traffic light in the distance."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:32.967542+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:27.563709+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:32.257796+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:33.252972+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:31.979886+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:07.190135+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:37.282159+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:37.831607+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:32.433830+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T08:27:38.040248+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:38.342032+00:00", "label": "easy", "label_explanation": "The road is clear with no water."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:36.750387+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:33.397955+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:37.039618+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:38.547839+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:36.548123+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:37.550127+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:38.765908+00:00", "label": "null", "label_explanation": "A photo of a street with a car driving on it. There are buildings on either side of the street. The sky is clear and the sun is shining."}]}, {"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-04T08:33:04.733720+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "image_condition", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:28:35.320819+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:36.025454+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:32.024741+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:36.514445+00:00", "label": "easy", "label_explanation": "There are a couple of small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:36.960172+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are a few cars on the road, and the street lights are on. The buildings along the street are mostly residential, and there are a couple of trees on the sidewalk."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:31.244700+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:34.841966+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:36.746895+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:35.122402+00:00", "label": "true", "label_explanation": "There are a couple of small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:35.815644+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:35.540323+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:28:36.240552+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T08:33:09.071334+00:00", "objects": ["landslide", "road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:28:18.167193+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:16.709720+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:17.175558+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:16.439416+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:16.966513+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:17.932143+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:16.162533+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:13.346746+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:28:17.656817+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:17.442069+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:12.656698+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:18.427169+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy urban intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The traffic lights are green in all directions. The buildings in the background are tall and brightly lit. The image is clear and well-lit."}]}, {"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-04T08:32:41.238884+00:00", "objects": ["image_condition", "image_description", "road_blockade", "water_in_road", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:35.133188+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:37.290219+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a traffic light at the intersection, showing green for two lanes and red for the other two. There are trees and foliage on either side of the road. There is a silver car driving through the intersection, slightly blurred due to motion. The image is clear and well-lit."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:35.603096+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:35.406479+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:36.779802+00:00", "label": "easy", "label_explanation": "The road is clear with no water."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:36.091370+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:31.390804+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:37.010485+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:30:36.571296+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:36.296371+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:35.878489+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:32.274110+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:49.256622+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "alert_category", "brt_lane", "fire", "road_blockade_reason", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:41.627076+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:45.047066+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:46.848492+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:45.248645+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:46.147340+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:46.632887+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:45.436756+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:45.930153+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:42.319208+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:30:46.351288+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:45.666601+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:46.195378+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There is no water on the road and no road blockades. There are no signs of landslides, fires, or building collapses. The image is of a normal day in the city."}]}, {"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-04T08:32:58.938747+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "alert_category", "traffic_ease_vehicle", "building_collapse", "road_blockade", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:49.316436+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bike lane and a bus lane. There are trees on either side of the road and buildings in the background. The road is wet from rain, but there are no major puddles or blockages. The image is clear and there are no obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:48.618706+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:43.720320+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:44.418766+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:49.106096+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:48.196040+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:48.892595+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:48.408088+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:47.729358+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:47.493482+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:47.265971+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:47.925436+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:12.144633+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "alert_category", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T07:25:46.008479+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, and has small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T07:25:46.307681+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T07:25:45.483197+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T07:25:40.890738+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T07:25:44.189988+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T07:25:44.403082+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T07:25:46.515419+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a tree-lined median. Street lights are on. A white car is driving in the right lane. Parked cars are on the left side of the road. Trees and buildings line the street. The image is clear and well-lit."}, {"object": "fire", "timestamp": "2024-02-04T07:25:45.742301+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T07:25:45.186914+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T07:25:44.680297+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T07:25:40.083355+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T07:25:44.904181+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:16.325661+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "water_in_road", "inside_tunnel", "fire", "brt_lane", "image_description", "building_collapse", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:39.178565+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:37.269551+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:26.860345+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:26.446734+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:22.639954+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T08:28:27.560568+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:23.361157+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:28.252781+00:00", "label": "null", "label_explanation": "The image shows a wide, multi-lane road with a bus lane on the left side. There are trees and buildings on either side of the road. The road is dry and there is no traffic. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:27.341080+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:28.042440+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:26.644688+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:27.142463+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T08:33:06.411036+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:28:22.239753+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:20.437633+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:28:21.745671+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:22.037257+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:17.630165+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:21.327966+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:22.457611+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees and buildings on either side of the road. The road is dry and there is no traffic. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:16.932596+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:20.636369+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:21.132227+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:21.534289+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:20.844629+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}] \ No newline at end of file From d81bd5dd000d90de322f5568c9e41334f5e9690c Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 07:54:25 -0300 Subject: [PATCH 21/64] chore: refactor --- app/utils/utils.py | 69 ++++++++++++++++++++++++-- "app/\360\237\223\243 Home.py" | 88 +++++++++++++--------------------- data/temp/mock_api_data.json | 2 +- 3 files changed, 99 insertions(+), 60 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index 62a7c83..e7fcca3 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -15,7 +15,7 @@ ) -@st.cache_data(ttl=60 * 3, persist=False) +@st.cache_data(ttl=60 * 10, persist=False) def get_cameras( only_active=True, use_mock_data=False, @@ -97,6 +97,65 @@ def treat_data(response): return cameras_attr, cameras_identifications +def get_filted_cameras_objects( + cameras_attr, cameras_identifications, object_filter, label_filter +): + # 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[ + [ + "bairro", + "snapshot_timestamp", + "timestamp", + "object", + "label", + "label_explanation", + ] + ].sort_values(by=["timestamp", "label"], ascending=False) + + return ( + cameras_identifications_merged, + cameras_filter, + cameras_identifications_filter, + ) + + +def display_camera_details(row, cameras_identifications): + camera_id = row.name + image_url = row["snapshot_url"] + camera_name = row["name"] + 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}") + st.markdown(f"Data Snapshot: {snapshot_timestamp}") + + # get cameras_attr url from selected row by id + if image_url is None: + st.markdown("Falha ao capturar o snapshot da câmera.") + else: + st.image(image_url) + + camera_identifications = cameras_identifications.loc[camera_id] # noqa + get_agrid_table(table=camera_identifications.reset_index()) + + def get_icon_color(label: Union[bool, None]): if label is True: return "red" @@ -173,9 +232,9 @@ def get_table_cameras_with_images(dataframe): return table_data -def get_agrid_table(data_with_image): +def get_agrid_table(table): # Configure AgGrid - gb = GridOptionsBuilder.from_dataframe(data_with_image) # noqa + gb = GridOptionsBuilder.from_dataframe(table) # noqa gb.configure_selection("single", use_checkbox=False) gb.configure_side_bar() # if you need a side bar gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa @@ -185,7 +244,7 @@ def get_agrid_table(data_with_image): # gb.configure_column("emoji", header_name="", pinned="left") gb.configure_column("object", header_name="Identificador") gb.configure_column("label", header_name="Label") - gb.configure_column("timestamp", header_name="Data detecção") + gb.configure_column("timestamp", header_name="Data Identificação") gb.configure_column( "label_explanation", header_name="Descrição", @@ -208,7 +267,7 @@ def get_agrid_table(data_with_image): # Set auto size mode (if you still want to use it, otherwise remove this line) # noqa grid_response = AgGrid( - data_with_image, + table, gridOptions=grid_options, columns_auto_size_mode=ColumnsAutoSizeMode.FIT_CONTENTS, # update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, # noqa diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index e653388..45e0ae5 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -1,9 +1,15 @@ # -*- coding: utf-8 -*- # import folium # noqa -import pandas as pd + import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import get_agrid_table, get_cameras, treat_data +from utils.utils import ( + display_camera_details, + get_agrid_table, + get_cameras, + get_filted_cameras_objects, + treat_data, +) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) @@ -56,68 +62,42 @@ default=labels_default, ) -# 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 -merged_df = pd.merge(cameras_filter, cameras_identifications_filter, on="id") -merged_df = merged_df[ - [ - "bairro", - "snapshot_timestamp", - "timestamp", - "object", - "label", - "label_explanation", - ] -].sort_values(by=["timestamp", "label"], ascending=False) - -# timestamp to datetime BRL+3 with no tz +( + cameras_identifications_merged, + cameras_filter, + cameras_identifications_filter, +) = get_filted_cameras_objects( + cameras_attr, cameras_identifications, object_filter, label_filter +) # make two cols col1, col2 = st.columns(2) with col1: - selected_row = get_agrid_table(merged_df.reset_index()) + selected_row = get_agrid_table(cameras_identifications_merged.reset_index()) # noqa with col2: if selected_row: - row = cameras_filter.loc[selected_row[0]["id"]] - camera_name = row["name"] - snapshot_timestamp = row["snapshot_timestamp"].strftime( - "%d/%m/%Y %H:%M" + camera_id = selected_row[0]["id"] + row = cameras_filter.loc[camera_id] + display_camera_details( + row=row, cameras_identifications=cameras_identifications ) # noqa - - st.markdown(f"### 📷 Camera snapshot") # noqa - st.markdown(f"Endereço: {camera_name}") - st.markdown(f"Data Snapshot: {snapshot_timestamp}") - - # get cameras_attr url from selected row by id - image_url = row["snapshot_url"] - if image_url is None: - st.markdown("Falha ao capturar o snapshot da câmera.") - else: - st.image(image_url) - - camera_identifications = cameras_identifications.loc[ - selected_row[0]["id"] - ] # noqa - - get_agrid_table(camera_identifications.reset_index()) - + else: + st.markdown( + """ + ### 📷 Câmera snapshot + Selecione uma Câmera na tabela para visualizar mais detalhes. + """ + ) + + # for camera_id in cameras_identifications_filter.index: + # row = cameras_filter.loc[camera_id] + # display_camera_details( + # row=row, cameras_identifications=cameras_identifications + # ) + # time.sleep(2) # st.markdown( # f""" diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index f31ee04..90daab3 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:04.933880+00:00", "objects": ["road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "brt_lane", "building_collapse", "image_condition", "image_description", "fire", "water_in_road", "alert_category", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:32:48.774002+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:32:48.995740+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:32:59.234449+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:32:43.978884+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:32:44.763424+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:32:52.770341+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:32:48.237736+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:15.019472+00:00", "label": "null", "label_explanation": "The image shows a wide road with a church on the left side. There are a few cars parked on the side of the road and some trees on either side. The road is wet from rain."}, {"object": "fire", "timestamp": "2024-02-04T08:32:58.757672+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:32:48.517540+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:32:49.560414+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:06.567340+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:20.476975+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "water_in_road", "road_blockade", "brt_lane", "image_description", "image_condition", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:33:15.187811+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:16.464913+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:14.764437+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:33:13.004417+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:12.633370+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.069424+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:16.328346+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.399297+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) on the left side of the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:16.916202+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a red car driving on the road, and there are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:15.808713+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.905156+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:16.705153+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T08:32:14.988163+00:00", "objects": ["building_collapse", "road_blockade", "water_in_road", "fire", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.129789+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.446132+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.145388+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.617578+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.822266+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.851706+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.930083+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:15.023667+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:14.337367+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.323046+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars parked on the side. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.029255+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.728246+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:09.602510+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "fire", "brt_lane", "road_blockade", "image_description", "water_in_road", "image_condition", "landslide", "building_collapse", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.007830+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.003036+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:17.928848+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:12.719071+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:16.739536+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:22.743669+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with concrete walls and a metal railing on the right side. The ground is covered in overgrown grass and debris, and the only light comes from a street lamp in the distance. There is a large amount of graffiti on the walls."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.464805+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road. The puddle is not significant and does not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.192219+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:18.444857+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:17.599550+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.214602+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can easily pass through."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.198296+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}]}, {"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-04T08:32:17.696855+00:00", "objects": ["brt_lane", "image_description", "traffic_ease_vehicle", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:33:17.216841+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:23.253505+00:00", "label": "null", "label_explanation": "The image shows a street intersection with a fallen tree blocking the road. There is a car stopped behind the tree. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:22.606399+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:21.019388+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:22.900679+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:21.319428+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.795913+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:16.486607+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:21.912994+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.517176+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "fire", "timestamp": "2024-02-04T08:33:22.292042+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.689147+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T08:32:06.978346+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "road_blockade", "image_description", "water_in_road", "image_condition", "landslide", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.436526+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.287124+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.478413+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.844549+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.644139+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.765546+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.245833+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.340397+00:00", "label": "null", "label_explanation": "The image shows a street intersection in Rio de Janeiro. There are a few cars and buses on the road, and people are walking on the sidewalks. The buildings are tall and brightly colored. The sky is cloudy and there is a light rain falling."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.925256+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.635663+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.065028+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.586983+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:32:04.023589+00:00", "objects": ["road_blockade", "fire", "alert_category", "building_collapse", "image_condition", "water_in_road", "road_blockade_reason", "inside_tunnel", "image_description", "brt_lane", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.466745+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.662688+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:19.179366+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.438088+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.796106+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.163872+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.920956+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.851431+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.432500+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree partially blocking the right lane. There is a bus lane on the left side of the road, separated by a concrete barrier. The road is wet from rain, but there is no flooding. The surrounding area is urban, with buildings and trees on either side of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.542299+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.941664+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.146259+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:12.354301+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.418409+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.592376+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.960690+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.320669+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.622570+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.338845+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.038816+00:00", "label": "null", "label_explanation": "A wide road with a slight curve to the right. There is a white car driving in the right lane, and no other cars are visible. The road is lined with trees and buildings, and there is a traffic light in the distance. The sky is cloudy and there is a slight haze in the air."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.822401+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.102824+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.619164+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:19.828469+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.596924+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:04.137818+00:00", "objects": ["landslide", "fire", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:33:13.718484+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:33:23.352161+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:22.083442+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:22.572074+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:22.852890+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:21.869419+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:18.486590+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:17.663269+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:22.355381+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:23.569117+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:24.946196+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. There is a building on the left side of the road. The road is clear with no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:23.083182+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:15.091702+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "image_description", "water_in_road", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.278953+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.491619+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:19.008509+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.787373+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.504467+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.289146+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.217157+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.924549+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.013024+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.760348+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.729319+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.819403+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:17.784194+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "road_blockade", "image_description", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.940050+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.077973+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.275223+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:17.563934+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:19.850194+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a bus driving on the left side of the road. There is a fallen tree on the right side of the road. The tree is blocking the road. There are cars parked on the side of the road. There are people walking on the sidewalk. There are buildings in the background."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.071010+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T08:33:18.664452+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.938249+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.345974+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.158229+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:18.375799+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:19.475355+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:31:58.224498+00:00", "objects": ["brt_lane", "landslide", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:33:15.853292+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:21.709741+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:20.429521+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:21.433363+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T08:33:21.215336+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:20.726480+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:20.929464+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:19.661529+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.549402+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.211808+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:41.290555+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of water accumulation. The image is clear and easy to see."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:19.920288+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T08:32:20.446754+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "fire", "landslide", "water_in_road", "image_condition", "image_description", "road_blockade_reason", "brt_lane", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:33:21.029988+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:22.245447+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no water on the surface."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.524718+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:16.437502+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T08:33:21.952255+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:22.514646+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.818560+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.541678+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:35.412198+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bike lane on the left side and a bus lane on the right side. There are trees and buildings on both sides of the road. The traffic lights are green and there are no cars on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:21.245491+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:17.126384+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:21.734500+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:00.211423+00:00", "objects": ["road_blockade", "image_description", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "brt_lane", "inside_tunnel", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:33:17.874498+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.354543+00:00", "label": "null", "label_explanation": "The image is a CCTV image of Rio de Janeiro. The image shows a road with a fallen tree. The tree is blocking the road and there are cars stopped behind it. There is a building in the background."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:18.492875+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.664190+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.245497+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.870614+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.071383+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.288213+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.573275+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:17.423307+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.103491+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.618497+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T08:32:01.437056+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "inside_tunnel", "building_collapse", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "fire", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.382594+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:16.695565+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.043021+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:09.549533+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:17.597104+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:12.738935+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:18.706112+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There is a road with a clear sky and no visible signs of traffic or people."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:18.474064+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.323729+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.161250+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:33:17.849754+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.013843+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:01.596195+00:00", "objects": ["road_blockade_reason", "water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "image_description", "brt_lane", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.407163+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.923559+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:17.995504+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.501535+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:18.728555+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:33:18.217716+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:17.207843+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.700666+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.705076+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:34.540456+00:00", "label": "null", "label_explanation": "A four-lane road with a red car in the foreground. There are trees and buildings on either side of the road. The sky is cloudy."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:13.524270+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.691765+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T08:32:06.926376+00:00", "objects": ["fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "landslide", "image_description", "brt_lane", "water_in_road", "building_collapse", "inside_tunnel", "image_condition", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:33:21.110381+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:20.391363+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:20.606506+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:21.318994+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:21.583318+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:21.858507+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane. There is a bus stop on the right side of the road. There are trees and buildings on both sides of the road. The sky is cloudy and there is a mountain in the background."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:16.393589+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:19.915312+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:20.805260+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:15.513375+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:19.700702+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.186973+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:23.211879+00:00", "objects": ["image_description", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "image_condition", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:33:18.415077+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are a few cars parked on the side of the road and some people walking around. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:17.850700+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:12.999880+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.088401+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.127770+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:16.370526+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:16.846909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:17.592142+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.091689+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:18.159313+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:17.385927+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:16.585240+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:52.071144+00:00", "objects": ["landslide", "road_blockade", "alert_category", "building_collapse", "brt_lane", "water_in_road", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T07:27:45.145873+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T07:27:43.767267+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T07:27:44.191613+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-04T07:27:44.446553+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T07:27:40.297599+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T07:27:43.509366+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T07:27:43.229613+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T07:27:44.674272+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T07:27:45.365607+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are no cars on the road and the traffic lights are red. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T07:27:44.889668+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T07:27:43.960664+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T07:27:39.557521+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:32:43.972378+00:00", "objects": ["image_description", "inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:24:13.740427+00:00", "label": "null", "label_explanation": "The image shows a road with a fallen tree. The tree is large and blocking a significant portion of the road, but vehicles can still pass with caution. There is no water on the road and the surrounding area is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:18.846797+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:24:13.267812+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is completely dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:24.046508+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T08:33:17.825353+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:19.677851+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:22.738135+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:17.456826+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:23.265988+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:23.521588+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:23.028029+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:23.752710+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:15.372214+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:28.385870+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. The tree is large and has fallen across the road, blocking the left lane. There are cars stopped behind the tree, unable to pass. There is a bike lane on the right side of the road, separated by a curb. Trees line both sides of the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.899295+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:21.415847+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:22.499160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:23.805444+00:00", "label": "easy", "label_explanation": "The road is clear, with only small, manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:12.977597+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:21.127483+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.915967+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:15.038467+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.559835+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:33:23.299521+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:14.334149+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:32:12.243673+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "fire", "image_description", "image_condition", "alert_category", "building_collapse", "road_blockade_reason", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.555686+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.775749+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:12.485298+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:20.162540+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.856314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.474669+00:00", "label": "null", "label_explanation": "The image shows a wide road with a slight curve to the right. There are several large buildings on the left side of the road and a few trees on the right side. The road is clear with no visible obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:18.210896+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:19.460744+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.672825+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.982800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:09.092470+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.292027+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:08.326110+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade_reason", "fire", "brt_lane", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:27:37.421502+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:38.928595+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:37.010888+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:38.716007+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:37.237088+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:39.153827+00:00", "label": "null", "label_explanation": "The image shows a wide, empty street with a pedestrian crossing and a traffic light. There are buildings on both sides of the street. The street is lined with trees, and the sky is cloudy."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:37.712997+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-04T08:27:38.507602+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:34.193176+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:38.278906+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:37.925803+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:23.799082+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:33:04.556992+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:28:17.920513+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or issues. The road is surrounded by trees and buildings, and the weather appears to be clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:11.725388+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:16.110750+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:16.403203+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:16.735943+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:12.422711+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:16.927226+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:15.894413+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:28:17.105070+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:15.608344+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:17.314227+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:17.606035+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:05.288205+00:00", "objects": ["image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:33:22.839702+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with buildings on either side. The road is dry and there are no signs of traffic congestion or other issues. The image is clear and there are no obstructions to visibility."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.618282+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:22.303196+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can proceed with ease."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.840788+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:21.630120+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:32:48.339074+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T08:33:21.994836+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.422402+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.233844+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:22.607352+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:32:49.408710+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:21.125356+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:11.663639+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:28:40.515486+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:41.729218+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:37.064407+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:38.746599+00:00", "label": "null", "label_explanation": "The image shows a road scene with a car driving on it. There are trees and buildings on either side of the road. The road is clear and there are no signs of any problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:40.233754+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:36.308622+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:41.228473+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:41.007724+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:28:41.518494+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:42.026103+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:40.016088+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:40.741141+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:09.670295+00:00", "objects": ["road_blockade", "building_collapse", "road_blockade_reason", "brt_lane", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:30:30.132938+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:30.853893+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:30.424657+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:26.678066+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:30:31.126274+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:29.930606+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:31.355115+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:04.184900+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a black car in the right lane, and no other vehicles are visible. The road is bordered by trees and buildings, and the sky is clear. The image is slightly blurred but still clear enough to identify objects and potential issues."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:31.638840+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:30.640796+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:29.687239+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:25.853808+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:32:00.328679+00:00", "objects": ["road_blockade", "fire", "traffic_ease_vehicle", "landslide", "image_condition", "inside_tunnel", "image_description", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:33:18.632099+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.711823+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:19.943394+00:00", "label": "moderate", "label_explanation": "There is a presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.203114+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:18.064050+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:13.852393+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:20.423626+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the road and there is a car stopped behind it. There is a building to the right of the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:18.344636+00:00", "label": "true", "label_explanation": "There is a presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:14.833650+00:00", "label": "false", "label_explanation": "The image is not showing any lanes marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:18.824045+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:19.423726+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:19.118824+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}]}, {"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-04T08:32:09.715188+00:00", "objects": ["image_description", "inside_tunnel", "image_condition", "brt_lane", "building_collapse", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:33:19.715617+00:00", "label": "null", "label_explanation": "The image shows a street corner with a clear road and no visible obstructions. There are trees on either side of the road and buildings in the background. The image is well-lit and the weather is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:12.656256+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:16.887594+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:13.546234+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:18.293278+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:17.419888+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:17.940259+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:19.314619+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:18.757454+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:17.196377+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:18.517948+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:17.632810+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:04.692019+00:00", "objects": ["road_blockade", "road_blockade_reason", "landslide", "alert_category", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "image_description", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:31:27.604490+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely free."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:31:27.911696+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:29.185564+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:31:28.182828+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:31:27.177371+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:31:28.624341+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:28.391352+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:28.904148+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:31:29.396671+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking part of the road. There is a building on the left side of the road and a green traffic light in the distance. The sky is clear, and the sun is shining."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:31:27.391142+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:31:23.499667+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:31:24.219160+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:11.007878+00:00", "objects": ["alert_category", "road_blockade_reason", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "road_blockade", "water_in_road", "fire", "building_collapse", "image_description"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T08:33:10.309378+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:32:59.234873+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:32:46.928930+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:32:58.658024+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:32:48.332149+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:23.732752+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is completely dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:32:49.032847+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:22.426361+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:32:48.820465+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-04T08:32:48.125070+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:23.218262+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:24.322332+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gray fence on the left side and a row of parked cars on the right side. There is a tall building in the background and a clear blue sky with some clouds. The road is dry and there are no visible hazards or obstructions."}]}, {"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-04T08:32:33.184707+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:32.051338+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:28.546502+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:32.244696+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:33.242136+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:29.268635+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:32.958170+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:30:33.432843+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:32.763772+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:33.926727+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:34.142541+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is cloudy and there is a light rain falling."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:33.726548+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:32.546893+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T08:32:56.318517+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:40.839690+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees on either side of the road and a few cars parked on the side. The road is not crowded and traffic is flowing smoothly."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:40.543217+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:40.348433+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:39.627290+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:39.839392+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:38.677428+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:35.056420+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:35.830359+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:38.946015+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:30:40.056570+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:39.150022+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:39.354681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:03.106385+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "building_collapse", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:31:30.045249+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:31.051909+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:31.331473+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:30.545642+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:31:25.743181+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:31:29.823290+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:31:30.323364+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:31:26.539848+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:31:30.815546+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:31:29.342173+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:44.583101+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road, and people are crossing the street. The road is wet from the rain, and there are some puddles on the ground. The buildings in the background are tall and brightly lit."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:31:29.552752+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T08:32:47.844892+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:30:22.282876+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there is no debris on the ground."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:23.261025+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:22.577651+00:00", "label": "null", "label_explanation": "The image is dark and there is not much to see. There is a slight curve in the tunnel and the walls are made of concrete."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:23.695841+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:33:22.988953+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:22.065485+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:21.560586+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:21.783726+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:23.913191+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:22.703419+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:24.232939+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:24.525073+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:33:03.680783+00:00", "objects": ["image_condition", "landslide", "water_in_road", "image_description", "road_blockade", "fire", "brt_lane", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:56.834099+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:59.021586+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:57.140558+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:59.251583+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a fallen tree blocking part of the road. There are cars on the road, and people are walking on the sidewalk. The trees on the side of the road are green, and the sky is cloudy."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:57.425354+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "fire", "timestamp": "2024-02-04T08:30:58.512996+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:54.142289+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:58.247282+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:58.740985+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:53.433449+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:57.941792+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:57.718914+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}]}, {"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-04T08:32:35.822174+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:27.198834+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:22.303525+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:27.711741+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road and a few people walking around. The street is lined with trees and buildings."}, {"object": "fire", "timestamp": "2024-02-04T08:30:26.924893+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:22.922156+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:26.720462+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:25.717790+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:26.414538+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:25.985249+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:25.511792+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:27.454597+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:26.203400+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of 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-04T08:33:13.697556+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "brt_lane", "fire", "image_condition", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T08:31:01.646976+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:24.107310+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars parked on either side and trees on both sides of the road. There is a yellow taxi driving in the center of the street. There are no visible road signs or markings. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:31:01.435081+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:58.135105+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:31:02.124332+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:31:00.819508+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:31:01.027279+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:57.525934+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:02.548563+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:01.915472+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:02.330303+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:31:01.228955+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:27.634069+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:36.745952+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with multiple lanes of traffic. There are buildings and trees on either side of the avenue. The sky is cloudy and there is a slight drizzle. The road is wet but there are no significant puddles. Traffic is moderate and there are no visible obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:21.163438+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T08:33:20.465918+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:23.974310+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:23.730225+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:24.342739+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:22.036648+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:23.245119+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:20.654792+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:21.362147+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:20.245604+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:22.827922+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T08:32:38.426564+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:17:58.522883+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:17:44.252810+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T08:14:53.406023+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian crossing. There are trees and buildings on either side of the road. The road is lit by streetlights. There are two people crossing the road. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:17:53.710052+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:17:43.319104+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:17:53.924092+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:17:56.146577+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T08:17:58.243650+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:17:54.210968+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:17:57.998188+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:17:53.502440+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:17:58.817615+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:58.411545+00:00", "objects": ["inside_tunnel", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:43.671657+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:49.279810+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:50.071839+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:49.596019+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:48.089609+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:50.296146+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:48.698359+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:49.070167+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:48.389799+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:30:49.786713+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:44.478924+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:50.578415+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection in Rio de Janeiro. There are a few cars and buses on the road, and the traffic lights are green. The road is lined with trees and buildings, and there is a clear blue sky with some clouds overhead."}]}, {"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-04T08:32:26.313849+00:00", "objects": ["road_blockade_reason", "landslide", "inside_tunnel", "building_collapse", "water_in_road", "image_condition", "fire", "image_description", "road_blockade", "alert_category", "traffic_ease_vehicle", "brt_lane"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:31.510590+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:32.908454+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:26.630709+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:32.034423+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:30.925122+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:30.615851+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:32.311778+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:11.096350+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:31.228976+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:31.793121+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:32.614277+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:27.428147+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:32.901090+00:00", "objects": ["road_blockade", "inside_tunnel", "image_description", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:30:41.408321+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:37.415270+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:43.014573+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking one lane. There are cars parked on either side of the road and a building in the background."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:42.124253+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:42.525380+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "fire", "timestamp": "2024-02-04T08:30:42.321392+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:41.831769+00:00", "label": "normal", "label_explanation": "There are no minor or major issues. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:38.125338+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:40.904176+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:41.216896+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:41.621644+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:42.800759+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:10.285070+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:28:33.390846+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:32.618582+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:28.910038+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:32.104289+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:34.101227+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with several lanes. There are a few cars and buses on the road, and some people are walking on the sidewalks. There are buildings and trees on either side of the road. The sky is cloudy and there is a slight drizzle."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:31.829298+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:33.862435+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:32.899732+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:28.207398+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:33.106266+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:33.628787+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:32.407813+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:01.942695+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:27:39.987519+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:34.137922+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:38.977237+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:38.472951+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:40.276148+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:35.012800+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:38.704322+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:39.479719+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:40.878342+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:39.768339+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:39.183881+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:40.516012+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:12.925593+00:00", "objects": ["road_blockade_reason", "fire", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "alert_category", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:17.430957+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:28:18.151262+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:13.041421+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:17.162311+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:18.352133+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can pass through the area without difficulty."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:18.863548+00:00", "label": "null", "label_explanation": "The image shows a street intersection with a yellow grid-like structure on the road. There is a white truck in the background and a few parked cars on the side of the road. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:16.943848+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:13.751811+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:17.635670+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:17.853687+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:16.705374+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:18.621847+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:48.080898+00:00", "objects": ["building_collapse", "landslide", "image_description", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:30:52.272873+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:52.889133+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:21.162330+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a bus lane to the left. There is a fallen tree on the right side of the road, blocking the right lane. There are no cars on the road and the sky is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:47.603583+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:51.571892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:51.779641+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:30:52.481546+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:51.984500+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or other issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:52.692118+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no puddles or water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:48.285687+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:51.085619+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:51.298685+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T08:33:05.439931+00:00", "objects": ["inside_tunnel", "landslide", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_condition", "image_description", "road_blockade", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:44.087836+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:49.493567+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:44.774732+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:32.985956+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:47.881842+00:00", "label": "true", "label_explanation": "There is a large oil spill on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:49.295456+00:00", "label": "difficult", "label_explanation": "The oil spill is a minor issue that could affect city life."}, {"object": "fire", "timestamp": "2024-02-04T08:30:49.077049+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:48.795872+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:47.595037+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:49.769308+00:00", "label": "null", "label_explanation": "The image shows a road with cars driving on it. There is a large oil spill on the road. The oil spill is causing traffic to slow down. There are buildings and trees on either side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:48.090249+00:00", "label": "partially_blocked", "label_explanation": "The oil spill is a minor issue that could affect city life."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:48.573105+00:00", "label": "minor", "label_explanation": "The oil spill is a minor issue that could affect city life."}]}, {"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-04T08:32:55.079462+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_description", "image_condition", "building_collapse", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:30:46.165044+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:46.687606+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:45.875965+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:42.195835+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:47.791599+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking the road. The road is partially blocked and there is a car stopped behind the tree. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:45.654171+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:46.887198+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:42.949634+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:47.378640+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:46.374240+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:47.558651+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:30:47.173155+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T08:33:02.751119+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:27:22.272546+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:12.067512+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:21.364763+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:21.121074+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:22.063201+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:20.479744+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:20.830031+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:21.575573+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:08.955486+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:23.729286+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:26.359057+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with a clear sky. There are a few cars on the road and the traffic lights are green. There are trees and buildings on either side of the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:26.158485+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:11.276306+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:20.476245+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:21.582687+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T08:28:21.298283+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:21.820509+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:19.606479+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:16.297716+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:15.422267+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:20.704373+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:19.916103+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:37.555251+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are no cars on the road. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:20.204734+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:21.013536+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:29.854473+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:33:19.593299+00:00", "label": "poor", "label_explanation": "The image is slightly blurred due to rain, but it is still possible to see the details of the scene."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:20.300206+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "fire", "timestamp": "2024-02-04T08:33:19.381507+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.573809+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is partially blocking the road, but vehicles can still pass with caution."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:19.117423+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:19.828813+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:20.086987+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road, but they are not causing any significant traffic disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:20.789949+00:00", "label": "moderate", "label_explanation": "The large puddles of water are causing some difficulty for vehicles, but they are still able to pass."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:21.498761+00:00", "label": "null", "label_explanation": "The image shows a wet road with a fallen tree blocking part of the road. There is a bus rapid transit (BRT) lane on the left side of the road. There are buildings and trees on either side of the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:21.074103+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings in the image are intact."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:18.895553+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:21.300316+00:00", "label": "minor", "label_explanation": "The fallen tree is causing some traffic disruption, but it is not a major issue. There are no other issues that would affect city life."}]}, {"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-04T08:32:43.978035+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "water_in_road", "brt_lane", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:38.124855+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are a few cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:37.622305+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:36.701402+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:36.429706+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:36.229632+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:33.084584+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:30:37.413059+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:37.138454+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:36.921218+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:36.002548+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:32.216493+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:37.838598+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:56.941503+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "image_condition", "image_description", "alert_category", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:30:35.603368+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:40.230083+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:39.322378+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:40.793135+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:39.613505+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:34.902247+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:39.030492+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:38.808193+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:41.310016+00:00", "label": "null", "label_explanation": "A night view of a street with a gas station on the left and a sports court on the right. There is a tree on the right side of the image. The street is empty, with no cars or people visible. The image is well-lit, and the details of the scene are clearly visible."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:39.899889+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:30:40.509437+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:41.003872+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:38.754530+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:30:56.990622+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:57.688743+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are cars parked on either side of the road and buildings in the background. The sky is cloudy and there is a slight haze in the distance."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:56.371244+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:55.677338+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:55.889855+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:57.480138+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:57.273532+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. There is no hindrance to vehicle movement."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:52.993094+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:52.381440+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:56.798521+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:56.158010+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:56.585013+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-04T08:32:55.440998+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "road_blockade_reason", "building_collapse", "road_blockade", "image_description", "water_in_road", "traffic_ease_vehicle", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:30:38.950328+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:30:38.460175+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:37.965336+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:36.868267+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:37.672701+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:38.172442+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:37.456284+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:39.164800+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or issues. The road is surrounded by trees and buildings, and the sky is clear."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:37.152644+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:38.669763+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:33.284902+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:34.042046+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:30.505836+00:00", "objects": ["fire", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "building_collapse", "image_description", "alert_category", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:30:34.124484+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:34.717407+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:29.432544+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:32.541583+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:34.431911+00:00", "label": "moderate", "label_explanation": "The fallen tree is blocking one lane of traffic, but vehicles can still pass. This is a minor issue that should be reported."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:33.323130+00:00", "label": "fallen_tree", "label_explanation": "There is a tree that has fallen onto the road, blocking the left lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:33.105385+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking one lane of traffic, but vehicles can still pass. This is a minor issue that should be reported."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:33.823272+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:30.407012+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road tunnel with graffiti on the walls. The road is dry and there is no traffic. There are no people or vehicles visible in the image."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:33.550433+00:00", "label": "minor", "label_explanation": "The fallen tree is blocking one lane of traffic, but vehicles can still pass. This is a minor issue that should be reported."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:32.817582+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:28.640325+00:00", "label": "false", "label_explanation": "The image shows an elevated road with a clear view of the sky, indicating that it is not inside a tunnel."}]}, {"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-04T08:25:17.057328+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:26:58.057090+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:25:55.747105+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:26:57.798866+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:26:57.122747+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:26:42.861288+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:26:54.177510+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:26:53.969321+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:26:53.749084+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T08:26:58.887025+00:00", "label": "null", "label_explanation": "The image is of a road with a clear sky. There are no cars on the road and the road is in good condition. There are trees on either side of the road and a few buildings in the background. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T08:26:53.495251+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:26:58.300988+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T08:26:58.590840+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:33.563894+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "building_collapse", "fire", "alert_category", "road_blockade", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:20.316460+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:33:21.325715+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:33:19.821835+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:21.611324+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:33:21.899256+00:00", "label": "null", "label_explanation": "The image shows a street corner in Rio de Janeiro. There are a few cars parked on the side of the road and some trees. The street is wet from the rain."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:33:20.813744+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T08:33:21.102641+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:33:20.600981+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:33:20.103180+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:33:15.906178+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:19.582974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:15.132641+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:33:12.129142+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:27:35.279593+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:20.551080+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:35.533286+00:00", "label": "easy", "label_explanation": "There is no water on the road, allowing for easy vehicle movement."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:28.979319+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:29.251762+00:00", "label": "false", "label_explanation": "There are no signs of water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:34.488223+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:35.742515+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:32.231113+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:34.823076+00:00", "label": "normal", "label_explanation": "There are no visible issues that would interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:36.045701+00:00", "label": "null", "label_explanation": "The image shows a wide, two-lane road with a concrete barrier separating the lanes. The road is bordered by a low concrete wall on one side and a grassy area with trees on the other. There is a bridge in the background. The image is clear and well-lit."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:19.760868+00:00", "label": "false", "label_explanation": "The image shows an open road with no visible signs of being inside a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:35.072105+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}]}, {"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-04T08:32:54.265965+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description", "alert_category", "inside_tunnel", "image_condition", "brt_lane", "fire", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:47.879451+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:48.407331+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:48.914162+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:49.331170+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a traffic light at the intersection, and a street sign that says 'Rua da Tijuca'. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:48.120221+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:43.226374+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:47.042340+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:43.949107+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:30:48.621540+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:47.558299+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:49.120075+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:47.279150+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T08:32:43.869771+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "landslide", "road_blockade"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:50.004143+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:53.703782+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:55.566833+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:50.708838+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:54.418024+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:56.010357+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees on either side of the road and buildings in the background. The road is not very busy and there are no cars parked on it. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:55.002285+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:53.928150+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:30:55.210015+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:54.714485+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:55.804656+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:54.201788+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:59.865875+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "building_collapse", "road_blockade_reason", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T08:30:48.238035+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:44.651876+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:48.884904+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:49.144816+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:48.651208+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:49.964159+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a large tree on the left side. The road is lined with trees and shrubs, and there is a building in the background. The road is dry and there is no traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:48.445781+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:49.543139+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:48.036759+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:45.343369+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:49.747601+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:30:49.332709+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T08:33:09.535374+00:00", "objects": ["image_condition", "water_in_road", "image_description", "building_collapse", "fire", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "brt_lane", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:59.149124+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:59.424980+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T08:31:01.317637+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with a fallen tree. The tree is blocking part of the road, but there is still room for vehicles to pass. There is no water on the road and the surrounding area is clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:00.335189+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T08:31:00.542700+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:59.843302+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:31:00.119440+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:55.648305+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:00.847100+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily without any hindrance."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:01.121895+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:56.346259+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:59.635163+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:52.499833+00:00", "objects": ["road_blockade_reason", "landslide", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:37.051023+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:38.275383+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:38.578306+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-way road intersection. There are no cars or pedestrians visible in the image. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:36.769287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:37.976969+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:36.287939+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:37.760024+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:37.272424+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:37.474611+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:36.578181+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:33.269586+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:32.491127+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T08:33:15.629002+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:14.836319+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:15.529255+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:18.740749+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:18.554990+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T08:28:19.644533+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:18.952149+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:19.161402+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:19.869407+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:19.443310+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:18.260335+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:20.357986+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with buildings on the left and right. There is a bus on the right side of the road. The road is partially blocked by a fallen tree."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:20.068934+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:41.389822+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:41.679378+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees on either side of the road and buildings in the background. The road is wet from rain, but there are no puddles. There is a car driving in the right lane."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:40.355025+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:40.141925+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:39.366292+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:40.743923+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:39.639133+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:36.551812+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:39.857534+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:41.230376+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:35.777014+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T08:30:40.966734+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:41.446564+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:33:00.985543+00:00", "objects": ["image_condition", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:45.875254+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:47.704037+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:46.643161+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:41.900622+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:47.086710+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:46.880939+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:47.980753+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through without difficulty."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:42.679866+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:48.283701+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:46.207390+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:48.569112+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a traffic light at the intersection and a street light on the side of the road. There are cars parked on the side of the road and a few trees in the background."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:47.397708+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:33:13.379153+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "landslide", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:28:28.426245+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars driving on the road and people walking on the sidewalks. The buildings are tall and colorful. The sky is clear and the sun is shining."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:31:15.217673+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:31:14.041635+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:31:15.027214+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:31:14.522307+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:31:13.611685+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:31:10.731345+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:31:10.027689+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:31:14.313314+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:31:13.825434+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T08:31:15.426165+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:31:14.736647+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:36.004771+00:00", "objects": ["traffic_ease_vehicle", "fire", "image_condition", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:39.826863+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:33:24.471599+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:33:24.768881+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:33:25.023069+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:40.316423+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gas station on the right side. There are cars parked on the side of the road and a few trees on the left side. The road is wet from rain."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:38.440428+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:39.136184+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:35.530784+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:38.707856+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:39.414877+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:33:23.945179+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:33:24.167182+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T08:32:55.613060+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:30:44.581371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:41.166298+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for buses."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:40.316797+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:45.293276+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All the buildings in the image are intact, with no signs of damage or structural issues."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:44.315566+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:45.506546+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:58.913663+00:00", "label": "null", "label_explanation": "The image shows a road scene with a fallen tree. The tree is large and has fallen across the road, blocking part of it. There is a building to the right of the road, and a street light can be seen in the background. The road is wet from rain."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:44.801984+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:45.021782+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image is clear."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:44.103235+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and focused, with no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:45.810864+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:45.995242+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T08:33:07.758411+00:00", "objects": ["brt_lane", "road_blockade_reason", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T08:28:11.952697+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:15.645188+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:15.133475+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:11.243620+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. The road is not enclosed and there are no tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:15.841348+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:15.352764+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:16.848108+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:16.623955+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water on the surface."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:16.125126+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:17.172164+00:00", "label": "null", "label_explanation": "The image shows a wide road with a concrete fence in the foreground on the left side. There is a row of trees on the right side of the road. In the background, there are tall buildings and a clear blue sky. The road is dry and there is no traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:28:16.340052+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:14.872448+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T08:33:10.931318+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "image_description", "alert_category", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:19.656686+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:31.252848+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:29.281558+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:30.067177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:20.429708+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:30.633338+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:29.788165+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:31.056828+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:31.578683+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees on either side of the road and buildings in the background. The road is dry and there is no traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:30.381464+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:27:30.844989+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:29.536192+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T08:33:06.490454+00:00", "objects": ["fire", "landslide", "image_description", "inside_tunnel", "alert_category", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:30:55.479344+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:55.978785+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:56.296599+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a BRT lane on the left side. There are no cars on the road and the image is clear with no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:49.592455+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:54.964631+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:53.773004+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:55.182940+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:54.077774+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:50.494266+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:54.588832+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:55.688947+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:54.362645+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:05.472282+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "brt_lane", "image_condition", "road_blockade", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:28:23.716444+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:22.105472+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:22.595938+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:24.000660+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are no cars on the road. The traffic lights are green. The road is surrounded by trees and buildings."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:18.312528+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:22.808434+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T08:28:23.289972+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:19.000568+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:21.890503+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:22.312875+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:23.511750+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:23.009183+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T08:32:54.638089+00:00", "objects": ["landslide", "image_condition", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:30:37.398882+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:35.475648+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:36.194015+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:31.911291+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T08:30:36.884180+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:35.964302+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:36.672147+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:32.604135+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:35.684608+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:36.466296+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:37.592659+00:00", "label": "null", "label_explanation": "A night-time image of a wide, empty road with a gas station on the right side. Trees and other vegetation line the road. There is a clear sky with no visible stars or moon."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:37.111324+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T08:32:46.462266+00:00", "objects": ["fire", "alert_category", "building_collapse", "image_condition", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T08:30:47.582787+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:47.153124+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:47.353664+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:46.186467+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:46.870438+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:48.344242+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are a few cars parked on the side of the road and some people walking around. The buildings are mostly residential and commercial, and there are a few trees on either side of the street. The image is taken from a slightly elevated angle, and the sky is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:42.627443+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:48.055535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:47.832106+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:46.437279+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:46.667046+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:43.334340+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:33:07.587782+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:48.343727+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:49.958463+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:44.751801+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T08:30:49.734192+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:48.545517+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:50.461680+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. There are buildings and other structures in the background. The road is clear with no visible obstructions or hazards."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:49.252561+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:48.765763+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:49.467071+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:45.556477+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:50.171958+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:49.050275+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:32:46.599202+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T08:30:32.478286+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:31.270401+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:32.766265+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:28.268819+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:31.763068+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:31.470920+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:33.458030+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are a few small puddles on the road, but they are not significant. The road is bordered by trees and buildings. There is a traffic light in the distance."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:32.967542+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:27.563709+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:32.257796+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:33.252972+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:31.979886+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:07.190135+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T08:27:37.282159+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:27:37.831607+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:27:32.433830+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T08:27:38.040248+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:38.342032+00:00", "label": "easy", "label_explanation": "The road is clear with no water."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:27:36.750387+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:27:33.397955+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:27:37.039618+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:27:38.547839+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:36.548123+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T08:27:37.550127+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:38.765908+00:00", "label": "null", "label_explanation": "A photo of a street with a car driving on it. There are buildings on either side of the street. The sky is clear and the sun is shining."}]}, {"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-04T08:33:04.733720+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "image_condition", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T08:28:35.320819+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:36.025454+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:32.024741+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:36.514445+00:00", "label": "easy", "label_explanation": "There are a couple of small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:36.960172+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are a few cars on the road, and the street lights are on. The buildings along the street are mostly residential, and there are a couple of trees on the sidewalk."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:31.244700+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:34.841966+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:36.746895+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:35.122402+00:00", "label": "true", "label_explanation": "There are a couple of small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:35.815644+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:35.540323+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T08:28:36.240552+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T08:33:09.071334+00:00", "objects": ["landslide", "road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:28:18.167193+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:16.709720+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:17.175558+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:16.439416+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:16.966513+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:17.932143+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:16.162533+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:13.346746+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:28:17.656817+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:17.442069+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:12.656698+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:18.427169+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy urban intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The traffic lights are green in all directions. The buildings in the background are tall and brightly lit. The image is clear and well-lit."}]}, {"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-04T08:32:41.238884+00:00", "objects": ["image_condition", "image_description", "road_blockade", "water_in_road", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T08:30:35.133188+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T08:30:37.290219+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a traffic light at the intersection, showing green for two lanes and red for the other two. There are trees and foliage on either side of the road. There is a silver car driving through the intersection, slightly blurred due to motion. The image is clear and well-lit."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:35.603096+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:35.406479+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:36.779802+00:00", "label": "easy", "label_explanation": "The road is clear with no water."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:36.091370+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:31.390804+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:37.010485+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T08:30:36.571296+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:36.296371+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:35.878489+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:32.274110+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T08:32:49.256622+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "alert_category", "brt_lane", "fire", "road_blockade_reason", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:41.627076+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:45.047066+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:46.848492+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:45.248645+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:46.147340+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:46.632887+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:45.436756+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:45.930153+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:42.319208+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T08:30:46.351288+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:45.666601+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T08:27:46.195378+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There is no water on the road and no road blockades. There are no signs of landslides, fires, or building collapses. The image is of a normal day in the city."}]}, {"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-04T08:32:58.938747+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "alert_category", "traffic_ease_vehicle", "building_collapse", "road_blockade", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T08:30:49.316436+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bike lane and a bus lane. There are trees on either side of the road and buildings in the background. The road is wet from rain, but there are no major puddles or blockages. The image is clear and there are no obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:30:48.618706+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:30:43.720320+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:30:44.418766+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T08:30:49.106096+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T08:30:48.196040+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:30:48.892595+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:30:48.408088+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:30:47.729358+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:30:47.493482+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:30:47.265971+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:30:47.925436+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:12.144633+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "alert_category", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T07:25:46.008479+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, and has small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T07:25:46.307681+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T07:25:45.483197+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T07:25:40.890738+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T07:25:44.189988+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T07:25:44.403082+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T07:25:46.515419+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a tree-lined median. Street lights are on. A white car is driving in the right lane. Parked cars are on the left side of the road. Trees and buildings line the street. The image is clear and well-lit."}, {"object": "fire", "timestamp": "2024-02-04T07:25:45.742301+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T07:25:45.186914+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T07:25:44.680297+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T07:25:40.083355+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T07:25:44.904181+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T08:33:16.325661+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "water_in_road", "inside_tunnel", "fire", "brt_lane", "image_description", "building_collapse", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:27:39.178565+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T08:27:37.269551+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:26.860345+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:26.446734+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:22.639954+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T08:28:27.560568+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:23.361157+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:28.252781+00:00", "label": "null", "label_explanation": "The image shows a wide, multi-lane road with a bus lane on the left side. There are trees and buildings on either side of the road. The road is dry and there is no traffic. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:27.341080+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T08:28:28.042440+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:26.644688+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:27.142463+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T08:33:06.411036+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T08:28:22.239753+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T08:28:20.437633+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T08:28:21.745671+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T08:28:22.037257+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T08:28:17.630165+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T08:28:21.327966+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T08:28:22.457611+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees and buildings on either side of the road. The road is dry and there is no traffic. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T08:28:16.932596+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T08:28:20.636369+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T08:28:21.132227+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T08:28:21.534289+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T08:28:20.844629+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}] \ No newline at end of file +[{"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-04T10:44:38.918766+00:00", "objects": ["brt_lane", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "road_blockade", "image_description", "image_condition", "water_in_road", "landslide", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.041001+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:50.443832+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:50.956128+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:51.455371+00:00", "label": "easy", "label_explanation": "The road surface is mostly clear and dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "fire", "timestamp": "2024-02-04T10:45:51.244286+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:50.741692+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:50.235563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:51.404547+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are cars on the road and buildings on the left and right sides of the intersection. The sky is clear and there are no signs of rain. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:49.667704+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:49.958943+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly clear and dry."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:39.905063+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.192408+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:42.346037+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "water_in_road", "road_blockade", "brt_lane", "image_description", "image_condition", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.173866+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.689590+00:00", "label": "free", "label_explanation": "There are no signs of a road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.961718+00:00", "label": "normal", "label_explanation": "There are no signs of minor or major issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.465579+00:00", "label": "false", "label_explanation": "There are no visible flames, smoke, or signs of burnt areas indicating a fire."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.948439+00:00", "label": "false", "label_explanation": "There are no signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:44.473229+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:44.853921+00:00", "label": "free", "label_explanation": "There are no signs of road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:35.676374+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.165368+00:00", "label": "null", "label_explanation": "The image is blurred and it is not possible to identify any details."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:44.194632+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:31.789191+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.672760+00:00", "label": "easy", "label_explanation": "There are no signs of water on the road."}]}, {"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-04T10:44:33.349680+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:36.885525+00:00", "label": "difficult", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:19.197953+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:15.007783+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:42.842499+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a gas station on the left side of the road and a yellow building on the right side. There are cars parked on the side of the road and a tree in the foreground. The street is wet from rain."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:20.388038+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:15.897513+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:45:34.691678+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:23.315324+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:20.050930+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:34.180906+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:34.430853+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:42.513675+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:48.949576+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "water_in_road", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.866254+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.147633+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:48.631432+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.358175+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.151145+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.935886+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.859773+00:00", "label": "null", "label_explanation": "A photo of a busy road with a yellow bus driving in the left lane. There is a pedestrian walkway over the road and a building in the background."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:47.680533+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:49.650415+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.026381+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.355277+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:41.750859+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T10:44:45.155748+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "fire", "landslide", "water_in_road", "image_condition", "image_description", "brt_lane", "road_blockade_reason", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:45:43.558803+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:44.775558+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet, with small, manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:44.076515+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:36.150573+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T10:45:44.554581+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:44.986791+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:43.286697+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:42.993281+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:45.257420+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a black car driving on the road, and a woman is crossing the street. There are trees and buildings on either side of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:39.571971+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:43.815166+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:44.337085+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:44:31.807857+00:00", "objects": ["building_collapse", "road_blockade", "water_in_road", "fire", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:45:16.839695+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:16.028173+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:15.726299+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:45:17.138063+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:17.680310+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:15.520858+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:16.579379+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:12.536509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:11.715066+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:18.265250+00:00", "label": "null", "label_explanation": "A wide road with a red traffic light on the left. There is a tree with green leaves on the left side of the road. A person is walking on the sidewalk on the left side of the road. There is a white car on the right side of the road. The road is made of asphalt and is in good condition. The weather is clear and sunny."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:18.019703+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:16.225314+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:44:40.866252+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "brt_lane", "road_blockade", "fire", "image_description", "water_in_road", "landslide", "image_condition", "building_collapse", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:44.921683+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:49.712682+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked by a large puddle. The puddle is not deep enough to completely block the road, but it is causing a traffic hazard."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:45.757103+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:49.505529+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a large puddle. The puddle is not deep enough to completely block the road, but it is causing a traffic hazard."}, {"object": "fire", "timestamp": "2024-02-04T10:45:50.503771+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:51.289962+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a road in the foreground with a large puddle of water on the left side. The water is not deep enough to completely block the road, but it is causing a traffic hazard. There are buildings and trees on either side of the road. The sky is cloudy."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:49.241812+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large area and is deep enough to cause a traffic hazard."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:51.010876+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:48.930802+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:50.291990+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.796351+00:00", "label": "difficult", "label_explanation": "The road is partially submerged with high water level. The water is not deep enough to completely block the road, but it is causing a traffic hazard."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:50.006777+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life. The image shows a road partially blocked by a large puddle."}]}, {"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-04T10:44:35.452961+00:00", "objects": ["landslide", "fire", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade", "image_description", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:45:48.890582+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.467160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.284718+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.770892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.979361+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.989089+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.812440+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:43.085252+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:47.485681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.166690+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is clear and the sun is shining."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.689269+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.201482+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:06.679580+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:08.747451+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:05.248764+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:10.455745+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:05.860509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:09.528278+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:10.945587+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several people walking on the sidewalk, and a cyclist is riding in the street. The street is lined with trees, and there are buildings in the background. The weather is clear and sunny."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:09.960734+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:08.956006+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:10.228849+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:09.742085+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:09.279504+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:10.660577+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:39.464965+00:00", "objects": ["road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:49.472422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:45.883363+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:48.985261+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:45.191821+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. The road is surrounded by trees and buildings, and there is no visible tunnel structure."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:49.687688+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and free of any obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:49.256138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:50.666442+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:50.465066+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:49.965897+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:50.893085+00:00", "label": "null", "label_explanation": "The image shows a wide road with a concrete barrier in the center, separating two lanes of traffic. Trees line the side of the road, and buildings can be seen in the background. The sky is clear with a few clouds. The road is dry and there are no visible obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:50.187555+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:48.760076+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible obstructions or distortions."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:39.303153+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:29.801317+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:31.043083+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:26.599837+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:31.569480+00:00", "label": "null", "label_explanation": "The image shows a wide, asphalted road with a pedestrian crossing, surrounded by trees and buildings. There is a traffic sign on the right side of the road. The road is clear with no visible obstructions or signs of accidents or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:29.587703+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:25.968744+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:30.473378+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:30.276849+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T10:46:30.689618+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:31.294276+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:29.363447+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:29.991194+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:44.861689+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:46:28.821848+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are a few cars and bicycles on the road. The road is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:28.298251+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no obstructions or water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:26.923846+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:28.000313+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:26.323800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:27.412466+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:23.320285+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:22.610248+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:27.128081+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:26.613996+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:27.715733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:28.614357+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:31.129698+00:00", "objects": ["fire", "road_blockade_reason", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "water_in_road", "alert_category", "brt_lane", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:21.629534+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:20.838278+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:16.241829+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:20.609362+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:21.832591+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. There is no hindrance to vehicle movement."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:22.332432+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. The road is clear with no visible obstructions or hazards. There are a few parked cars on the side of the road and some trees in the background. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:20.332248+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:21.123535+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:17.045367+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:21.389960+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:20.061705+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:22.133299+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:32.152207+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:42.617244+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.231130+00:00", "label": "difficult", "label_explanation": "There is a fallen tree blocking part of the road, making it difficult for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:46.827827+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.004208+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.405538+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:47.044071+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but vehicles can still pass."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:48.714466+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. There are cars on the road, and some are stopped behind the fallen tree. The road is surrounded by buildings and trees."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.513556+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:47.798121+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.607280+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.502935+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.321235+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:31.273262+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:17.500443+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:19.189857+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:13.970127+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T10:46:18.982236+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:17.796255+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:19.686981+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. There are no cars or people on the road. The sky is clear and sunny."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:18.481938+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:17.984522+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:18.704435+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:14.687995+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:19.400310+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:18.275416+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:44:29.075857+00:00", "objects": ["road_blockade", "fire", "alert_category", "building_collapse", "image_condition", "water_in_road", "road_blockade_reason", "inside_tunnel", "image_description", "brt_lane", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:45:47.340334+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there is no debris on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.424045+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. The image is clear and there is no smoke or flames."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.925777+00:00", "label": "normal", "label_explanation": "The image does not show any problems. The road is clear and there is no debris on the road. The image quality is good."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.127596+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there is no debris on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.861843+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions. The image quality is good."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.122210+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.619402+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there is no debris on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:39.914827+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. The road is surrounded by trees and buildings, and there is a clear view of the sky. The image is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:49.611713+00:00", "label": "null", "label_explanation": "A photo of a road with cars driving on it. There are trees and buildings on either side of the road. The road is wet from the rain."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.244323+00:00", "label": "false", "label_explanation": "There is no BRT lane shown in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.648514+00:00", "label": "easy", "label_explanation": "The road is dry and there is no water on the road. Traffic can flow normally."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.919980+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no debris on the road."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:44:51.561987+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "traffic_ease_vehicle", "landslide", "road_blockade_reason", "water_in_road", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:50.749569+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. There are no signs of road blockades or other issues. The image is clear and there are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:45.788776+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:49.162112+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.333737+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:50.561812+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:49.437650+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:48.940445+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:44.938305+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:49.865192+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:48.693831+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:50.087683+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:49.647507+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-04T10:44:39.919974+00:00", "objects": ["landslide", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:45:16.438182+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:18.468565+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:37.165299+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:37.352308+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T10:45:16.652212+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:20.048501+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:23.335576+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:37.712667+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:17.660395+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:42.285253+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free and clear."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:51.732857+00:00", "label": "null", "label_explanation": "The image shows a car accident on a road. The car is flipped on its side and there is debris scattered around. There is a truck stopped on the road behind the accident. The road is blocked and traffic is backed up."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:37.943911+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T10:45:33.567461+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "brt_lane", "fire", "image_condition", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T10:46:37.898260+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:30.130172+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:37.604689+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:34.012107+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T10:46:38.392393+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:36.902285+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:37.114008+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:33.318379+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:38.833294+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:38.110488+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:38.612636+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:37.393327+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}]}, {"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-04T10:45:34.175321+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "image_condition", "fire", "brt_lane", "road_blockade", "image_description", "water_in_road", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:23.406546+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road, but it is not causing any significant traffic disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:23.869511+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings in the vicinity are intact, with no signs of damage or structural issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:24.292750+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is completely dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:19.287236+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:23.676822+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:22.769140+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:24.082065+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:20.003682+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:23.199225+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:24.805380+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are traffic lights at the intersection, and a sign indicating the direction to Tijuca. There are several cars on the road, and a bus is approaching the intersection. The road is partially blocked by a fallen tree."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:22.984505+00:00", "label": "false", "label_explanation": "There are minimal puddles on the road. The road surface is mostly clear and dry."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:24.568624+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T10:44:54.470250+00:00", "objects": ["landslide", "road_blockade", "building_collapse", "alert_category", "brt_lane", "water_in_road", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:45:50.025105+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.639975+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:49.326629+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:49.114187+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:45.131387+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:48.428825+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:48.211839+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.531932+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:50.229950+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are two cars on the road, one silver and one gray. The silver car is in the foreground, and the gray car is in the background. There are also some trees and buildings in the image. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.811370+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.926371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:44.156970+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:27.212331+00:00", "objects": ["road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "brt_lane", "building_collapse", "image_description", "image_condition", "fire", "water_in_road", "alert_category", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:50.012232+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:49.792892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.977156+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:43.400516+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:44.200984+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:50.481547+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:51.881195+00:00", "label": "null", "label_explanation": "The image shows a wide street with a church on the left side. There are trees and buildings on both sides of the street. The street is clear with no blockades or obstructions. The image quality is good and there are no issues with visibility."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:49.328903+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:50.699776+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:49.581296+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:50.277719+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:51.184175+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:40.027837+00:00", "objects": ["road_blockade_reason", "alert_category", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "road_blockade", "water_in_road", "fire", "building_collapse", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:41.312987+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:41.622079+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:43.497388+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:20.044066+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:40.509927+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:43.291828+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:18.705763+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:41.025301+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:40.781516+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-04T10:45:42.910290+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:42.387523+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:43.711289+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gray fence on the left side and a row of parked cars on the right side. There are also some trees and buildings in the background."}]}, {"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-04T10:44:38.281718+00:00", "objects": ["traffic_ease_vehicle", "image_description", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "image_condition", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.359495+00:00", "label": "easy", "label_explanation": "The road is clear, with no water or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.847333+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several people walking on the street, and cars are parked on the side of the road. There are buildings on both sides of the street, and the sky is clear."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:44.478311+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:43.676849+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:48.541507+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.769789+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.267638+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.146901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:47.547349+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:49.577609+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.745905+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.049791+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:09.053555+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "alert_category", "brt_lane", "fire", "image_description", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:06.415905+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:10.027452+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:11.910722+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:10.236181+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:11.221980+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:11.646541+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:10.454530+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:10.943638+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:07.143796+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:11.429592+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:12.138609+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is not blocked and there are no visible hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:10.723996+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:22.195305+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:07.978315+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:08.884442+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:07.492695+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:09.123171+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:09.412617+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a white van with an open trunk full of orange traffic cones, a dog walking on the sidewalk, and a black parked car on the side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:07.754661+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:08.391746+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "fire", "timestamp": "2024-02-04T10:46:08.593904+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:08.190880+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:04.578740+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:07.289798+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:03.897493+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:47.960832+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "inside_tunnel", "building_collapse", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "fire", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T10:45:48.686702+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is dry, with only a few small puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.882249+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:48.383517+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and focused, with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:42.111857+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The image shows an urban street with buildings, cars, and trees. There are no signs of a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:49.659190+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings in the image are intact, with no signs of damage or structural issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.995434+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no signs or markings indicating that the lane is reserved for buses."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:50.570898+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with cars parked on either side. There are a few trees and buildings in the background. The road is dry and clear, with no signs of water or other obstacles. The image is clear and focused, with no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:50.289002+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:49.383970+00:00", "label": "normal", "label_explanation": "The image shows a clear road with no signs of accidents, fires, or other major incidents. There are no issues that would interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.091651+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water or other obstacles that would impede traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.877622+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:49.162141+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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-04T10:45:36.486634+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_condition", "image_description", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:33.201734+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:27.135297+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:28.012460+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:31.911525+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:31.413825+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:32.920808+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water on the surface. Vehicles can pass without difficulty."}, {"object": "fire", "timestamp": "2024-02-04T10:46:32.710175+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:32.441109+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:31.209543+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:33.421250+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane on the left side. There is a red bridge in the background and several cars and buses on the road. The road is dry and there are no visible hazards or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:31.712063+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:32.199064+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-04T10:45:36.729007+00:00", "objects": ["landslide", "road_blockade", "alert_category", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:35.865555+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of soil displacement, rocks, and debris on or near the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:34.460291+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:34.949554+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking part of the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:34.751221+00:00", "label": "water_puddle", "label_explanation": "There is a large puddle of water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:34.246773+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:35.642833+00:00", "label": "difficult", "label_explanation": "There is a flooded section of the road, causing notable hindrance to vehicles."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:34.029576+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:31.152864+00:00", "label": "false", "label_explanation": "There is no designated bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:35.436301+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:35.163422+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:30.451912+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:36.154667+00:00", "label": "null", "label_explanation": "A wide road with a BRT lane and several other lanes. There is a bus driving in the BRT lane. There is a fallen tree blocking part of the road. There is a large puddle of water on the road. The surrounding buildings are tall and there are trees on either side of the road."}]}, {"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-04T10:44:29.125045+00:00", "objects": ["road_blockade", "fire", "traffic_ease_vehicle", "landslide", "image_condition", "inside_tunnel", "image_description", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:45:45.417823+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:45:46.536399+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:46.725703+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:47.021319+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:44.944423+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:31.825359+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:47.212598+00:00", "label": "null", "label_explanation": "A bus is driving on a road. The bus is blue and white. The road is surrounded by trees. The sky is blue and there are some clouds. The image is clear and bright."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:45.209376+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:36.661529+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:45.794969+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:46.327250+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:46.073648+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T10:27:59.113492+00:00", "objects": ["inside_tunnel", "image_description", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:28:43.770752+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:28:49.453507+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. The road is dry, and there are no signs of water accumulation or puddles. The surrounding buildings are intact, and there are no signs of structural damage or debris. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:28:48.949160+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:28:48.461634+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage or debris."}, {"object": "fire", "timestamp": "2024-02-04T10:28:48.732547+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:28:44.471558+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:28:47.269246+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:28:49.169666+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:28:47.762157+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:28:47.955333+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:28:48.177756+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:28:47.483724+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T10:45:08.110983+00:00", "objects": ["fire", "landslide", "image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_description", "alert_category", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:45:59.399817+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:59.908313+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:57.992927+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:55.070726+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:58.692934+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:58.477336+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:59.681761+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:59.203422+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:00.177005+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible signs of road blockades, water accumulation, or any other issues. The image is of a road with trees on either side and a clear sky."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:58.923542+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:58.195909+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:54.312035+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:44:45.361846+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:42:52.442267+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is not blocked and traffic is flowing smoothly."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:44.420871+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:43.814874+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:47.693550+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:44.880611+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:36.088531+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:51.170569+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:42.508876+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.506369+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:36.578785+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:36.301298+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:42.726117+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:46.132731+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "fire", "image_description", "image_condition", "alert_category", "building_collapse", "road_blockade_reason", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T10:45:46.358754+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:46.636387+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.517506+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.052361+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T10:45:47.831757+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:02.828455+00:00", "label": "null", "label_explanation": "The image shows a wide, curved road with a green building on the left and trees on the right. There is a car driving on the road. The sky is clear and sunny."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.094544+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.266578+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:47.560433+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:46.936471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.542585+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.330270+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:30.847510+00:00", "objects": ["image_description", "road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "brt_lane", "inside_tunnel", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:43.985383+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or issues. The road is surrounded by trees and buildings, and the weather appears to be clear."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:42.155749+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:42.579039+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:41.765815+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:42.382843+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:43.489553+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:43.700571+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:19.918954+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:18.788977+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:41.519858+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:42.842954+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T10:45:43.227485+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:45:28.117335+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:13.650212+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:12.853041+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:09.172591+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:12.365925+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:14.358522+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a bus and a white car on the road. The bus is stopped at a bus stop and the car is driving on the right side of the road. There are trees and buildings on the side of the road. The sky is cloudy and there is a slight bend in the road to the left."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.173448+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:14.070465+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:13.147778+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:08.458049+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:13.360822+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:13.862306+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:12.576190+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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-04T10:45:28.651115+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "road_blockade", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:37:38.000571+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bike lane and a bus lane. There are trees and buildings on either side of the road. The road is clear with no visible blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T10:46:26.226557+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:21.446791+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:22.140858+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:26.714512+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:26.433978+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:25.823796+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:26.030224+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:25.329365+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:25.128828+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:24.922140+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:25.543122+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:04.259636+00:00", "objects": ["building_collapse", "image_condition", "image_description", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:46:11.432305+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:10.229206+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:12.428471+00:00", "label": "null", "label_explanation": "The image shows a tree-lined road with a clear sky. There are no signs of traffic or people. The road is in good condition and there are no visible hazards."}, {"object": "fire", "timestamp": "2024-02-04T10:46:11.730141+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:10.527531+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:11.929986+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:10.730691+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:06.634078+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:11.225744+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:12.141999+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:11.011252+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:07.342026+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}]}, {"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-04T10:44:57.788185+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:55.033237+00:00", "label": "null", "label_explanation": "The image shows a road with a fallen tree. The road is partially blocked and there is a car stopped behind the tree. There are no people visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:53.044205+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are still navigable for most vehicles."}, {"object": "fire", "timestamp": "2024-02-04T10:45:54.253882+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:53.320732+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:54.546552+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are still navigable for most vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:53.542514+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road, but they are still navigable for most vehicles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:49.955188+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:54.025999+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:52.832461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:49.239052+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:54.795889+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are rocks and debris on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:53.755048+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T10:44:36.229865+00:00", "objects": ["fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "landslide", "image_description", "brt_lane", "water_in_road", "building_collapse", "inside_tunnel", "image_condition", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:45:46.929095+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:46.082450+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:46.356798+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:47.261120+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:47.542448+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:47.745484+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a BRT lane on the left side. There is a bus driving in the BRT lane and several cars in the other lanes. There are trees and buildings on either side of the road. The road is partially blocked by a fallen tree. There is a small puddle of water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:39.428749+00:00", "label": "false", "label_explanation": "The right side of the road is not a designated bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:45.318989+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:46.630796+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:36.106817+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:45.123939+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:45.786441+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-04T10:45:36.521061+00:00", "objects": ["image_condition", "water_in_road", "building_collapse", "image_description", "fire", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "road_blockade", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:37.936440+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:38.213147+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:39.049529+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:40.016421+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees on either side of the road, and buildings can be seen in the background. A white car is driving on the road, and a motorcycle is parked on the side of the road. There are no people visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T10:46:39.322785+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:38.636596+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:38.843973+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:34.626976+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:39.526955+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:39.746187+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:38.437544+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:35.249324+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T10:45:38.139137+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "fire", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:24.208879+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:22.336566+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It is not blurred and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:23.945829+00:00", "label": "easy", "label_explanation": "The road is clear and there are no signs of flooding. Vehicles can pass easily."}, {"object": "fire", "timestamp": "2024-02-04T10:46:23.719917+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:19.821443+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:23.232169+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and there are no signs of flooding, accidents, fire, etc."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:45.854457+00:00", "label": "null", "label_explanation": "The image shows a wide road with trees on either side. There is a clear view of the road and the surrounding area. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:19.118454+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:22.612101+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are no puddles or signs of flooding."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:23.034586+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:23.512949+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:22.826855+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}]}, {"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-04T10:45:28.756174+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:18.903119+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:13.929041+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:17.922613+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:17.505572+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:19.120228+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:14.627745+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:17.736096+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:18.412854+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:35.056970+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is clear and there are no visible signs of rain. The road surface is dry and there are no visible signs of damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:18.661914+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:18.206553+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:19.404767+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:31.006000+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:31.547931+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:30.854795+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:27.168000+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:31.330850+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:30.633616+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:30.143547+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:30.370219+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:31.123704+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:26.436974+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:31.829994+00:00", "label": "easy", "label_explanation": "The road surface is mostly clear and dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:32.354866+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a yellow car in the foreground, and a silver car in the background. There are trees and buildings on either side of the road. The traffic lights are green in all directions. The road surface is mostly clear and dry, with small, insignificant puddles. There are no signs of road blockades or other hazards."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:32.038729+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T09:08:16.099627+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T09:09:00.528968+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T09:08:55.440073+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T09:09:00.255693+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T09:09:00.042649+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T09:08:56.139894+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T09:08:59.827659+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T09:08:59.585345+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T09:08:59.142499+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T09:09:01.252841+00:00", "label": "null", "label_explanation": "The image is of a road with a yellow blurred background. There is a tree on the left side of the road and a white building on the right side. There is a car driving on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T09:08:58.929413+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems. There are issues in the image quality, such as blurring or obstructions, that affect its clarity."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T09:09:00.740830+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T09:09:01.026405+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:55.018162+00:00", "objects": ["image_condition", "brt_lane", "fire", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:03.669049+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems. The overall visibility is still acceptable."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:00.578628+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "fire", "timestamp": "2024-02-04T10:46:05.260528+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:05.678689+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:04.178167+00:00", "label": "partially_blocked", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road, making it difficult for vehicles to pass."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:04.465128+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked by water."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:03.871480+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road, making it difficult for vehicles to pass."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:05.468845+00:00", "label": "difficult", "label_explanation": "The road is partially covered with water, making it difficult for vehicles to pass. However, the water is not too deep and most vehicles should be able to pass through."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:05.971748+00:00", "label": "null", "label_explanation": "The image shows a road with a significant amount of water. The water is covering a large portion of the road, making it difficult for vehicles to pass. There are cars and buildings on either side of the road. The image is blurry due to water, focus issues, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:04.963569+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:59.775562+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. The road is clearly visible with buildings and trees on the sides."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:04.689154+00:00", "label": "minor", "label_explanation": "The image shows a road with a significant amount of water. The water is covering a large portion of the road, making it difficult for vehicles to pass. This could cause traffic delays and disruptions."}]}, {"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-04T10:45:23.152870+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:24.523661+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with some puddles but no major obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:21.239887+00:00", "label": "false", "label_explanation": "The right side of the road is not a designated bus rapid transit (BRT) lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:20.524452+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible, with buildings and trees on either side."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:25.225880+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:24.324373+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:25.430853+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:26.128022+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane on the left side. There is a fallen tree blocking part of the road, and there are some puddles on the road. There is a building on the right side of the road, and a pedestrian is crossing the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:24.752586+00:00", "label": "water_puddle", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:24.942796+00:00", "label": "major", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear, with some puddles but no major obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:24.034649+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The road, vehicles, and surrounding areas are clearly visible."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:25.665012+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:25.931833+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There is soil and debris on the road, and the road is blocked."}]}, {"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-04T10:45:28.385296+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:17.472618+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:18.268797+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:14.000014+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:18.786752+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:19.277940+00:00", "label": "null", "label_explanation": "The image shows a wide road with a cyclist riding on the right side. There are trees and buildings on both sides of the road. The sky is clear and there are no visible hazards or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:16.976225+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:13.302106+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:19.028160+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:17.207200+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:17.996029+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:17.719591+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:18.497182+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:44:25.741459+00:00", "objects": ["image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:48.396471+00:00", "label": "null", "label_explanation": "A grayscale image of a road with a motorcyclist. The road is surrounded by trees and buildings. The motorcyclist is wearing a helmet and is riding in the middle of the road. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:43.567880+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:47.907706+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:43.819373+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:44.883072+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:36.212110+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T10:45:47.691167+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:44.405924+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:43.245678+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.108311+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:39.510761+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:44.130079+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:24.982730+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:14.062100+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:13.570405+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.665959+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:13.846898+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:13.362134+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:14.768961+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are a few cars parked on the side of the road and some people walking around. The buildings are tall and colorful, and the sky is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:09.114538+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:14.543725+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:14.271543+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:12.950790+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:13.153944+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:09.766383+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T10:45:05.434296+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:46:00.364619+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:59.169410+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:00.578049+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:56.252374+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:59.656176+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:59.363104+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:01.337713+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking two lanes. There is a bus driving in the right lane and a white car is parked on the side of the road. The sky is cloudy and the image is clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:00.845924+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:00.134160+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:55.558019+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:01.072261+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:59.861627+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}]}, {"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-04T10:44:56.441724+00:00", "objects": ["building_collapse", "landslide", "road_blockade", "inside_tunnel", "image_description", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:45:58.436569+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no debris or damage visible."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:59.156855+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:57.659909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:53.480208+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:59.435483+00:00", "label": "null", "label_explanation": "The image shows a clear road with no signs of accidents, fires, or other disruptions. There are no people or vehicles visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:57.938298+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:45:58.686876+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:58.139855+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no signs of accidents, fires, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:58.927453+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:54.233513+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:57.162819+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:57.434898+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}]}, {"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-04T10:44:36.728368+00:00", "objects": ["road_blockade", "brt_lane", "road_blockade_reason", "building_collapse", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:45:23.331286+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:16.764211+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:34.175768+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:34.729820+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T10:45:36.643641+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:20.389040+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:38.183287+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:40.183724+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with cars driving in both directions. There are trees and buildings on either side of the road. The road is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:39.908668+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:34.425396+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:20.071647+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:16.002112+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:55.860883+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.355059+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.439426+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.750396+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking part of the road. There are cars parked on either side of the street. The buildings are tall and brightly colored. The sky is blue and there are some clouds. The image is clear and there is no interference."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.146595+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.374830+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.827709+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.930255+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:48.557047+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.128137+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:47.697617+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:49.534821+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.348037+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-04T10:45:13.550363+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "fire", "alert_category", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:00.344853+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:56.748759+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:01.641898+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:00.641188+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:57.459563+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:01.895072+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:01.359196+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:01.139438+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:02.352390+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:02.631061+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees and buildings on either side of the road. There are cars parked on the side of the road. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:02.130344+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:00.848492+00:00", "label": "free", "label_explanation": "There are no features that blockade the road."}]}, {"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-04T10:44:51.937644+00:00", "objects": ["landslide", "road_blockade_reason", "inside_tunnel", "building_collapse", "water_in_road", "image_condition", "fire", "image_description", "road_blockade", "alert_category", "traffic_ease_vehicle", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:45:46.087135+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:44.642190+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:39.291900+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:45.213456+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:44.141104+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:43.909120+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:45.466231+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:46.362065+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a fallen tree blocking part of the road. The tree is blocking the right lane, but the left lane is still open for traffic. There is a bus stop on the right side of the road, but it is not affected by the fallen tree. There are no people or cars visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:44.340185+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:44.929865+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:45.740800+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:40.027106+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T10:45:25.905322+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_description", "image_condition", "building_collapse", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:12.473888+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, making it difficult for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:12.961992+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, and there are no signs of accidents, fires, or other disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:12.246510+00:00", "label": "false", "label_explanation": "There are no puddles on the road. The road surface is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:08.447713+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with buildings and foliage on either side."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:14.176789+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking part of the road, making it difficult for vehicles to pass. The road is lined with buildings and foliage, and the sky is clear."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.004311+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The road, buildings, and foliage are clearly visible."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:13.183994+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact, and there are no signs of structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:09.156425+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:13.700448+00:00", "label": "difficult", "label_explanation": "There is a fallen tree blocking part of the road, making it difficult for vehicles to pass."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:12.766040+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:13.891162+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:46:13.477511+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:45:31.441989+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "alert_category", "building_collapse", "landslide", "image_condition", "road_blockade_reason", "road_blockade", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:22.493180+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:27.676855+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can proceed with ease."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:26.994435+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:27.193517+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:27.893794+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:26.009795+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:26.783360+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:26.487006+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:26.283217+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T10:46:27.406373+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:23.193457+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:05.826359+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There is a police car partially blocking the road, which may cause minor traffic disruptions. There are small puddles on the road, but they are not significant enough to cause traffic disruptions. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:01.546458+00:00", "objects": ["image_description", "image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:43:13.735913+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road with a pedestrian crossing. There is a park to the right of the road, separated by a fence. The road is clear with no visible obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:08.093238+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:08.574738+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:09.763799+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:08.361796+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:09.059043+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:04.558466+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:09.985035+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:46:09.550844+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:09.307623+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:08.860740+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:05.280510+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T10:45:31.529208+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "building_collapse", "image_description", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T10:46:14.744773+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:10.735998+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:15.464584+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:15.801721+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:16.852308+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is not crowded and traffic is flowing smoothly."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:15.238124+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:14.940406+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:16.276471+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:14.481491+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:11.451974+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:16.565145+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:46:16.046576+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:45:26.693923+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "image_condition", "image_description", "alert_category", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T10:46:12.068285+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:15.965684+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:15.351478+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:16.444916+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:15.540479+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:11.360918+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:15.066970+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:14.857996+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:13.565898+00:00", "label": "null", "label_explanation": "A wide road with a gas station on the left and a sports court on the right. There is a police car stopped on the side of the road. The road is clear with no visible obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:15.758118+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-04T10:46:16.242655+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:16.659537+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:35.913693+00:00", "objects": ["road_blockade", "road_blockade_reason", "image_description", "landslide", "alert_category", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:18.667048+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:18.940417+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:20.340726+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. The tree is large and has fallen across the road, blocking two lanes of traffic. The remaining two lanes are open to traffic. There is a traffic light at the intersection and a pedestrian crossing. There are buildings and trees on either side of the road. The weather is clear and sunny."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:20.086944+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:19.136724+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:18.239925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:19.620452+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:19.358355+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:19.837827+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:18.445385+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:14.726761+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:15.435130+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T10:45:42.200682+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade_reason", "brt_lane", "fire", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:32.008917+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:33.593336+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:31.497633+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:33.329215+00:00", "label": "easy", "label_explanation": "The road is clear, with small puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:31.719105+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:33.817237+00:00", "label": "null", "label_explanation": "The image shows a wide road with a crosswalk and a traffic light. There are buildings and trees on either side of the road. The sky is cloudy, and the sun is not visible. The road is clear, with small puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:32.314832+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:28.204642+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:33.011842+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:32.804035+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:32.508218+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:27.299716+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:45:11.362190+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "brt_lane", "road_blockade", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:49.909926+00:00", "label": "null", "label_explanation": "The image shows a partially blocked road due to a fallen tree. The road is partially visible, with a clear view of the surrounding buildings and the sky. The image quality is good, with no visible blurring or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.150890+00:00", "label": "moderate", "label_explanation": "The fallen tree is partially blocking the road, but vehicles can still pass with some difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.007328+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:48.308885+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:48.511616+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.828133+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is partially blocking the road, but vehicles can still pass."}, {"object": "fire", "timestamp": "2024-02-04T10:45:47.520698+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:49.409885+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:49.684596+00:00", "label": "minor", "label_explanation": "The fallen tree is partially blocking the road, but vehicles can still pass with some difficulty. This is a minor issue that should be reported."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:47.810020+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:47.022615+00:00", "label": "true", "label_explanation": "The image shows an enclosed space with artificial lighting, concrete walls, and a clear tunnel-like structure."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:47.310536+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T10:45:43.102786+00:00", "objects": ["inside_tunnel", "road_blockade", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "building_collapse", "alert_category", "traffic_ease_vehicle", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:25.012744+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:29.000983+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:25.701605+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:28.799508+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:29.910524+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:29.229439+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:29.707908+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:29.495566+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:30.192960+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:28.521411+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:30.690011+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection in Rio de Janeiro. There are a few cars and a bus on the road, and several buildings in the background. The sky is cloudy and there are some trees on the side of the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:30.411668+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:16.341049+00:00", "objects": ["road_blockade", "inside_tunnel", "image_description", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:02.183791+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:58.120632+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:14.848188+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars, buses, and bicycles on the road. There are also trees and buildings on either side of the road. The sky is clear and the sun is shining."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:02.897110+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:03.413892+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:46:03.196549+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:02.681461+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:58.805211+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:01.697971+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:01.906765+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:02.396824+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:03.694583+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:26.066439+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:46:15.957228+00:00", "label": "null", "label_explanation": "The image shows a road with a green wall and white light fixtures on the ceiling. The road is clear with no visible traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:15.669429+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:15.399667+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:14.681427+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear with no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:14.898484+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:13.775485+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:10.296391+00:00", "label": "true", "label_explanation": "The image is showing a tunnel with a green wall and white light fixtures on the ceiling. The road is clear with no visible traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:11.865898+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:13.984058+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "fire", "timestamp": "2024-02-04T10:46:15.187102+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:14.189511+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no visible obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:14.480693+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no visible obstructions."}]}, {"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-04T10:44:43.601444+00:00", "objects": ["road_blockade_reason", "water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "image_description", "brt_lane", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:45.754613+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:45.256261+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:46.226279+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:46.744227+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:47.063170+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:45:46.443641+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:45.525149+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.164164+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:45.956740+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:52.849953+00:00", "label": "null", "label_explanation": "A four-lane road with a bus lane on the left side. There is a white truck on the right lane and a bus on the bus lane. The road is bordered by trees and buildings. The sky is cloudy and there are no visible signs of rain."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.157271+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:45.040078+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T10:44:33.689631+00:00", "objects": ["image_description", "inside_tunnel", "image_condition", "brt_lane", "building_collapse", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "fire"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:51.934502+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are a few parked cars on the side of the road and a motorcycle driving through the intersection. The buildings along the road are mostly residential, with some commercial buildings as well. The road is in good condition and there are no visible signs of construction or other hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:42.809001+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:49.147280+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.563501+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:50.347071+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:49.647569+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:50.141521+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:51.238814+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.847988+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can easily pass through."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:49.359932+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:49.869521+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:45:50.577388+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:45:33.756240+00:00", "objects": ["landslide", "image_condition", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:30.326506+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:28.311174+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:28.526519+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:28.822067+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:25.228509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:29.906697+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:31.952971+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with multiple lanes of traffic. There are trees on either side of the road and buildings in the background. The road is wet from rain, but there are no major puddles or blockages. Traffic is flowing smoothly."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:29.608396+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:30.112907+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:24.495512+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:29.326660+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:29.105744+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:28.094121+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:46:28.220294+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road and a person is walking on the sidewalk. The buildings are tall and brightly colored. The street is made of cobblestone and there are trees on either side."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:22.745863+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:26.835756+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:27.260247+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:23.423789+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:27.037414+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:26.374108+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:27.539826+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:26.625918+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:26.151966+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:27.749978+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:27.938625+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:47.616307+00:00", "objects": ["fire", "landslide", "image_description", "alert_category", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:29.808273+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:30.293014+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:30.508344+00:00", "label": "null", "label_explanation": "A wide road with a white car driving in the left lane. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:29.324071+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:24.920266+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:28.410841+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:29.596349+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:28.606795+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:25.625564+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:29.102052+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:30.010418+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:28.900630+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}]}, {"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-04T10:45:00.514870+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:03.593114+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:04.310281+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few trees and buildings on either side. There is a motorcyclist riding on the right side of the road. The road is clear and there are no signs of any problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:02.809092+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:01.983977+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:02.284065+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:04.084723+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:03.892606+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:58.892857+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:58.100631+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:03.304116+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:02.589966+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:03.090113+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-04T10:45:35.455175+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:24.124901+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:22.531766+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:23.029084+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:45.197355+00:00", "label": "null", "label_explanation": "The image shows a road intersection with a fallen tree blocking part of the road. There is a traffic light at the intersection and a bus stop on the side of the road. There are cars parked on the side of the road and a few trees in the background."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:18.925527+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:23.244188+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-04T10:46:23.727129+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:22.822945+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:23.932839+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:22.332048+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:19.538517+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:23.517101+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:14.079004+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:14.905827+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:46:14.287227+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.813312+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:13.796208+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:13.582443+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:14.039607+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:13.319795+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:15.136331+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There is a traffic light at the intersection. There are trees and buildings on either side of the road. The sky is clear and it is daytime. There is a green sign on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:14.689512+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:13.090041+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:09.102897+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:09.810107+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T10:44:55.797170+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.345224+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.554293+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.053396+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.356971+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:48.834516+00:00", "label": "null", "label_explanation": "A grayscale image of a road with a few cars and people walking on the sidewalk. The road is clear and there are no signs of any issues."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:46.870657+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.631102+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.962489+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:47.080466+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:47.840193+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:39.491140+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.569129+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:26.628856+00:00", "objects": ["image_condition", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:29.610239+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:30.112289+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:25.922061+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:30.516513+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-04T10:46:31.303119+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:30.306437+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:26.626489+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:31.614335+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:31.913182+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:29.821537+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:32.228314+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with a clear sky. There are a few trees on either side of the road and some buildings in the background. The road is not blocked and there is no water on the road. There are no people or cars visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:31.047781+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:02.853353+00:00", "objects": ["landslide", "image_condition", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:01.980018+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:59.779000+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:00.588680+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:55.709110+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T10:46:01.415017+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:00.304275+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road. The road is partially blocked, but vehicles can still pass with caution."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:01.186486+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:56.602478+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating a BRT lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:00.005802+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:00.825400+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:02.284811+00:00", "label": "null", "label_explanation": "The image shows a busy road with a fallen tree blocking the right lane. The road is partially blocked, but vehicles can still pass with caution. The surrounding buildings are intact with no signs of damage. The image is clear with no interference."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:01.700431+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow freely."}]}, {"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-04T10:45:19.607663+00:00", "objects": ["road_blockade_reason", "landslide", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:15.954311+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:17.205122+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:17.407823+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are no traffic lights or signs visible in the image. The road surface is mostly dry with a few small puddles. There is a single motorbike and a few parked cars on the road. The surrounding buildings are mostly residential and commercial, with a few trees visible in the background."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:15.588971+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:16.908023+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry with minimal water accumulation. There are small, insignificant puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:15.115586+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:16.684712+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:16.180941+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:16.399895+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:15.386607+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:12.182944+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:11.390055+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics in the image."}]}, {"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-04T10:45:16.874543+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "water_in_road", "image_description", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:13.728113+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:08.917156+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:12.238505+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:14.644484+00:00", "label": "null", "label_explanation": "The image shows a wide, two-way street with a pedestrian crossing. There are trees and buildings on either side of the street. The street is mostly clear, with small, insignificant puddles. Traffic flow is not impeded. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:12.459910+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:08.142915+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:12.955976+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T10:46:13.477268+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:12.731176+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:13.241028+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no visible damage or structural issues."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.003962+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:13.954479+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:10.985251+00:00", "objects": ["image_description", "road_blockade_reason", "alert_category", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:43:12.394346+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:03.042257+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:03.330588+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:02.247288+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:03.550969+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:02.535085+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:59.371205+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:02.848200+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:04.114722+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:58.651600+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T10:46:03.834215+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:04.375219+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:33.294252+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "inside_tunnel", "building_collapse", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:20.121337+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:21.109482+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:21.333319+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:15.622969+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:20.609617+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:19.916064+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:20.400409+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:16.410443+00:00", "label": "false", "label_explanation": "The lane on the right side of the image is not a designated bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:20.895525+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:19.396402+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:24.373287+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There is a yellow taxi partially blocking the road, causing minor traffic disruptions. The road is partially wet from recent rain, but there are no significant puddles. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:19.609628+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T10:45:37.447016+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:21.455821+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:26.543234+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:24.750777+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:25.456733+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:22.117569+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:25.927612+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:25.263943+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:25.665623+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:26.340770+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:29.801851+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars driving on it. There are trees and buildings on either side of the road. The sky is hazy and there are some clouds in the distance."}, {"object": "fire", "timestamp": "2024-02-04T10:46:26.128417+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:25.038657+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T10:45:33.744905+00:00", "objects": ["fire", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "alert_category", "road_blockade", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:26.630080+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:26.853595+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:22.517645+00:00", "label": "false", "label_explanation": "There are no signs indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:25.238157+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:25.455671+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:25.948089+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:27.122082+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:26.146377+00:00", "label": "minor", "label_explanation": "The image shows a fallen tree blocking part of the road, which could cause minor traffic disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:25.731032+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:27.331985+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the right lane. There is a car stopped on the side of the road near the fallen tree. The other lanes are open to traffic. The road is surrounded by trees and buildings."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:21.734185+00:00", "label": "false", "label_explanation": "The image shows an open road with no visible signs of being inside a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:26.421430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}]}, {"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-04T10:45:39.738374+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "inside_tunnel", "water_in_road", "fire", "brt_lane", "building_collapse", "image_description", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:29.322475+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:27.702868+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:28.414527+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:23.980947+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:27.903424+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:46:29.114102+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:24.728268+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:28.885804+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:29.823073+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. There is a bus driving on the left side of the road and a car approaching the fallen tree from the right side. The road is surrounded by tall buildings and trees."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:29.596054+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:28.110896+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely free."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:28.612131+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T10:45:40.243254+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "alert_category", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:28.770657+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:29.045015+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:28.361057+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:24.167429+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:27.076788+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:27.350115+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:29.261600+00:00", "label": "null", "label_explanation": "The image shows a wide road with a tree-lined median. There are cars parked on either side of the median. The road is clear of any obstructions and there are no signs of construction or accidents. The image is clear and there are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:28.555477+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:28.094078+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:27.566911+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:23.467274+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:27.852675+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:39.217796+00:00", "objects": ["traffic_ease_vehicle", "road_blockade_reason", "fire", "landslide", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:29.003234+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:27.904427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:28.725403+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:29.318075+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:23.906951+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:27.102892+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:23.097684+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:28.204042+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:27.326567+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:29.526529+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars parked on the side of the road and people walking around. There is a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:27.611422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:28.417535+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:41.932435+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:32.128221+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:32.709418+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:27.022963+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T10:46:32.924373+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:33.228930+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:31.616304+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:27.823270+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:31.898841+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:33.514850+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:31.319876+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:32.425218+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:33.734330+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking the road. A car is driving on the right side of the road. There are buildings and trees on either side of the road. The sky is clear and sunny."}]}] \ No newline at end of file From 92e3cd9bbb6b8573e5382decaf28ed56a7149d69 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 10:54:34 +0000 Subject: [PATCH 22/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- "app/\360\237\223\243 Home.py" | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 45e0ae5..4bbe1ce 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -3,13 +3,8 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import ( - display_camera_details, - get_agrid_table, - get_cameras, - get_filted_cameras_objects, - treat_data, -) +from utils.utils import (display_camera_details, get_agrid_table, get_cameras, + get_filted_cameras_objects, treat_data) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) From 98e90e8c2f89ca29c60175f703bdba5c400d558b Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 12:39:28 -0300 Subject: [PATCH 23/64] chore: update poetry --- app/utils/utils.py | 31 +++++++++++++------------------ data/temp/mock_api_data.json | 2 +- poetry.lock | 2 +- pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 21 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index e7fcca3..484d7cc 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -233,13 +233,9 @@ def get_table_cameras_with_images(dataframe): def get_agrid_table(table): - # Configure AgGrid + gb = GridOptionsBuilder.from_dataframe(table) # noqa - gb.configure_selection("single", use_checkbox=False) - gb.configure_side_bar() # if you need a side bar - gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa - # configure individual columns gb.configure_column("id", header_name="ID Camera", pinned="left") # gb.configure_column("emoji", header_name="", pinned="left") gb.configure_column("object", header_name="Identificador") @@ -248,33 +244,32 @@ def get_agrid_table(table): gb.configure_column( "label_explanation", header_name="Descrição", - cellStyle={"white-space": "normal"}, # This enables text wrapping - autoHeight=True, # Adjusts row height based on content + cellStyle={"white-space": "normal"}, + autoHeight=True, ) gb.configure_column( "snapshot_timestamp", header_name="Data Snapshot", hide=False ) # noqa - # gb.configure_column("bairro", header_name="Bairro") - # gb.configure_column("subprefeitura", header_name="Subprefeitura") - # gb.configure_column("id_bolsao", header_name="ID Bolsão") - # gb.configure_column("bacia", header_name="Bacia") - # gb.configure_column("sub_bacia", header_name="Sub Bacia") - - gb.configure_grid_options(enableCellTextSelection=True) - # Build grid options + + gb.configure_selection("single", use_checkbox=False) + gb.configure_side_bar() + gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa grid_options = gb.build() - # Set auto size mode (if you still want to use it, otherwise remove this line) # noqa grid_response = AgGrid( table, gridOptions=grid_options, columns_auto_size_mode=ColumnsAutoSizeMode.FIT_CONTENTS, # update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, # noqa # fit_columns_on_grid_load=True - # height=400, - # width="50%", + # custom_css=custom_css, + # allow_unsafe_jscode=True, + # height=500, + # theme="streamlit_whitegrid", + # width="100%", ) selected_row = grid_response["selected_rows"] + return selected_row diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index 90daab3..6d7cb92 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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-04T10:44:38.918766+00:00", "objects": ["brt_lane", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "road_blockade", "image_description", "image_condition", "water_in_road", "landslide", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.041001+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:50.443832+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:50.956128+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:51.455371+00:00", "label": "easy", "label_explanation": "The road surface is mostly clear and dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "fire", "timestamp": "2024-02-04T10:45:51.244286+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:50.741692+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:50.235563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:51.404547+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are cars on the road and buildings on the left and right sides of the intersection. The sky is clear and there are no signs of rain. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:49.667704+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:49.958943+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly clear and dry."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:39.905063+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.192408+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:42.346037+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "water_in_road", "road_blockade", "brt_lane", "image_description", "image_condition", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.173866+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.689590+00:00", "label": "free", "label_explanation": "There are no signs of a road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.961718+00:00", "label": "normal", "label_explanation": "There are no signs of minor or major issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.465579+00:00", "label": "false", "label_explanation": "There are no visible flames, smoke, or signs of burnt areas indicating a fire."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.948439+00:00", "label": "false", "label_explanation": "There are no signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:44.473229+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:44.853921+00:00", "label": "free", "label_explanation": "There are no signs of road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:35.676374+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.165368+00:00", "label": "null", "label_explanation": "The image is blurred and it is not possible to identify any details."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:44.194632+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:31.789191+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.672760+00:00", "label": "easy", "label_explanation": "There are no signs of water on the road."}]}, {"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-04T10:44:33.349680+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:36.885525+00:00", "label": "difficult", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:19.197953+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:15.007783+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:42.842499+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a gas station on the left side of the road and a yellow building on the right side. There are cars parked on the side of the road and a tree in the foreground. The street is wet from rain."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:20.388038+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:15.897513+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:45:34.691678+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:23.315324+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:20.050930+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:34.180906+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:34.430853+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:42.513675+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:48.949576+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "water_in_road", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.866254+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.147633+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:48.631432+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.358175+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.151145+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.935886+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.859773+00:00", "label": "null", "label_explanation": "A photo of a busy road with a yellow bus driving in the left lane. There is a pedestrian walkway over the road and a building in the background."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:47.680533+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:49.650415+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.026381+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.355277+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:41.750859+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T10:44:45.155748+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "fire", "landslide", "water_in_road", "image_condition", "image_description", "brt_lane", "road_blockade_reason", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:45:43.558803+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:44.775558+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet, with small, manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:44.076515+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:36.150573+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T10:45:44.554581+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:44.986791+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:43.286697+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:42.993281+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:45.257420+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a black car driving on the road, and a woman is crossing the street. There are trees and buildings on either side of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:39.571971+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:43.815166+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:44.337085+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:44:31.807857+00:00", "objects": ["building_collapse", "road_blockade", "water_in_road", "fire", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:45:16.839695+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:16.028173+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:15.726299+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:45:17.138063+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:17.680310+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:15.520858+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:16.579379+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:12.536509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:11.715066+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:18.265250+00:00", "label": "null", "label_explanation": "A wide road with a red traffic light on the left. There is a tree with green leaves on the left side of the road. A person is walking on the sidewalk on the left side of the road. There is a white car on the right side of the road. The road is made of asphalt and is in good condition. The weather is clear and sunny."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:18.019703+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:16.225314+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:44:40.866252+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "brt_lane", "road_blockade", "fire", "image_description", "water_in_road", "landslide", "image_condition", "building_collapse", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:44.921683+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:49.712682+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked by a large puddle. The puddle is not deep enough to completely block the road, but it is causing a traffic hazard."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:45.757103+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:49.505529+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a large puddle. The puddle is not deep enough to completely block the road, but it is causing a traffic hazard."}, {"object": "fire", "timestamp": "2024-02-04T10:45:50.503771+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:51.289962+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a road in the foreground with a large puddle of water on the left side. The water is not deep enough to completely block the road, but it is causing a traffic hazard. There are buildings and trees on either side of the road. The sky is cloudy."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:49.241812+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large area and is deep enough to cause a traffic hazard."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:51.010876+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:48.930802+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:50.291990+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.796351+00:00", "label": "difficult", "label_explanation": "The road is partially submerged with high water level. The water is not deep enough to completely block the road, but it is causing a traffic hazard."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:50.006777+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life. The image shows a road partially blocked by a large puddle."}]}, {"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-04T10:44:35.452961+00:00", "objects": ["landslide", "fire", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade", "image_description", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:45:48.890582+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.467160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.284718+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.770892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.979361+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.989089+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.812440+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:43.085252+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:47.485681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.166690+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is clear and the sun is shining."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.689269+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.201482+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:06.679580+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:08.747451+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:05.248764+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:10.455745+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:05.860509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:09.528278+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:10.945587+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several people walking on the sidewalk, and a cyclist is riding in the street. The street is lined with trees, and there are buildings in the background. The weather is clear and sunny."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:09.960734+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:08.956006+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:10.228849+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:09.742085+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:09.279504+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:10.660577+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:39.464965+00:00", "objects": ["road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:49.472422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:45.883363+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:48.985261+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:45.191821+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. The road is surrounded by trees and buildings, and there is no visible tunnel structure."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:49.687688+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and free of any obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:49.256138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:50.666442+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:50.465066+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:49.965897+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:50.893085+00:00", "label": "null", "label_explanation": "The image shows a wide road with a concrete barrier in the center, separating two lanes of traffic. Trees line the side of the road, and buildings can be seen in the background. The sky is clear with a few clouds. The road is dry and there are no visible obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:50.187555+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:48.760076+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible obstructions or distortions."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:39.303153+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:29.801317+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:31.043083+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:26.599837+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:31.569480+00:00", "label": "null", "label_explanation": "The image shows a wide, asphalted road with a pedestrian crossing, surrounded by trees and buildings. There is a traffic sign on the right side of the road. The road is clear with no visible obstructions or signs of accidents or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:29.587703+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:25.968744+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:30.473378+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:30.276849+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T10:46:30.689618+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:31.294276+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:29.363447+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:29.991194+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:44.861689+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:46:28.821848+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are a few cars and bicycles on the road. The road is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:28.298251+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no obstructions or water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:26.923846+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:28.000313+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:26.323800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:27.412466+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:23.320285+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:22.610248+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:27.128081+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:26.613996+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:27.715733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:28.614357+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:31.129698+00:00", "objects": ["fire", "road_blockade_reason", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "water_in_road", "alert_category", "brt_lane", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:21.629534+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:20.838278+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:16.241829+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:20.609362+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:21.832591+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. There is no hindrance to vehicle movement."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:22.332432+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. The road is clear with no visible obstructions or hazards. There are a few parked cars on the side of the road and some trees in the background. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:20.332248+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:21.123535+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:17.045367+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:21.389960+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:20.061705+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:22.133299+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:32.152207+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:42.617244+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.231130+00:00", "label": "difficult", "label_explanation": "There is a fallen tree blocking part of the road, making it difficult for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:46.827827+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.004208+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.405538+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:47.044071+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but vehicles can still pass."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:48.714466+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. There are cars on the road, and some are stopped behind the fallen tree. The road is surrounded by buildings and trees."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.513556+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:47.798121+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.607280+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.502935+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.321235+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:31.273262+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:17.500443+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:19.189857+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:13.970127+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T10:46:18.982236+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:17.796255+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:19.686981+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. There are no cars or people on the road. The sky is clear and sunny."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:18.481938+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:17.984522+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:18.704435+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:14.687995+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:19.400310+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:18.275416+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:44:29.075857+00:00", "objects": ["road_blockade", "fire", "alert_category", "building_collapse", "image_condition", "water_in_road", "road_blockade_reason", "inside_tunnel", "image_description", "brt_lane", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:45:47.340334+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there is no debris on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.424045+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. The image is clear and there is no smoke or flames."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.925777+00:00", "label": "normal", "label_explanation": "The image does not show any problems. The road is clear and there is no debris on the road. The image quality is good."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.127596+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there is no debris on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.861843+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions. The image quality is good."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.122210+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.619402+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there is no debris on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:39.914827+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. The road is surrounded by trees and buildings, and there is a clear view of the sky. The image is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:49.611713+00:00", "label": "null", "label_explanation": "A photo of a road with cars driving on it. There are trees and buildings on either side of the road. The road is wet from the rain."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.244323+00:00", "label": "false", "label_explanation": "There is no BRT lane shown in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.648514+00:00", "label": "easy", "label_explanation": "The road is dry and there is no water on the road. Traffic can flow normally."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.919980+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no debris on the road."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:44:51.561987+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "traffic_ease_vehicle", "landslide", "road_blockade_reason", "water_in_road", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:50.749569+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. There are no signs of road blockades or other issues. The image is clear and there are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:45.788776+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:49.162112+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.333737+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:50.561812+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:49.437650+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:48.940445+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:44.938305+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:49.865192+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:48.693831+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:50.087683+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:49.647507+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-04T10:44:39.919974+00:00", "objects": ["landslide", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:45:16.438182+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:18.468565+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:37.165299+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:37.352308+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T10:45:16.652212+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:20.048501+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:23.335576+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:37.712667+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:17.660395+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:42.285253+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free and clear."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:51.732857+00:00", "label": "null", "label_explanation": "The image shows a car accident on a road. The car is flipped on its side and there is debris scattered around. There is a truck stopped on the road behind the accident. The road is blocked and traffic is backed up."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:37.943911+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T10:45:33.567461+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "brt_lane", "fire", "image_condition", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T10:46:37.898260+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:30.130172+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:37.604689+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:34.012107+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T10:46:38.392393+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:36.902285+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:37.114008+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:33.318379+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:38.833294+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:38.110488+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:38.612636+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:37.393327+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}]}, {"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-04T10:45:34.175321+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "image_condition", "fire", "brt_lane", "road_blockade", "image_description", "water_in_road", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:23.406546+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road, but it is not causing any significant traffic disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:23.869511+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings in the vicinity are intact, with no signs of damage or structural issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:24.292750+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is completely dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:19.287236+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:23.676822+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:22.769140+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:24.082065+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:20.003682+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:23.199225+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:24.805380+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are traffic lights at the intersection, and a sign indicating the direction to Tijuca. There are several cars on the road, and a bus is approaching the intersection. The road is partially blocked by a fallen tree."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:22.984505+00:00", "label": "false", "label_explanation": "There are minimal puddles on the road. The road surface is mostly clear and dry."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:24.568624+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T10:44:54.470250+00:00", "objects": ["landslide", "road_blockade", "building_collapse", "alert_category", "brt_lane", "water_in_road", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:45:50.025105+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.639975+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:49.326629+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:49.114187+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:45.131387+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:48.428825+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:48.211839+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.531932+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:50.229950+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are two cars on the road, one silver and one gray. The silver car is in the foreground, and the gray car is in the background. There are also some trees and buildings in the image. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.811370+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.926371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:44.156970+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:27.212331+00:00", "objects": ["road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "brt_lane", "building_collapse", "image_description", "image_condition", "fire", "water_in_road", "alert_category", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:50.012232+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:49.792892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.977156+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:43.400516+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:44.200984+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:50.481547+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:51.881195+00:00", "label": "null", "label_explanation": "The image shows a wide street with a church on the left side. There are trees and buildings on both sides of the street. The street is clear with no blockades or obstructions. The image quality is good and there are no issues with visibility."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:49.328903+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:50.699776+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:49.581296+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:50.277719+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:51.184175+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:40.027837+00:00", "objects": ["road_blockade_reason", "alert_category", "landslide", "brt_lane", "image_condition", "traffic_ease_vehicle", "inside_tunnel", "road_blockade", "water_in_road", "fire", "building_collapse", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:41.312987+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:41.622079+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:43.497388+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:20.044066+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:40.509927+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:43.291828+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:18.705763+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:41.025301+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:40.781516+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-04T10:45:42.910290+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:42.387523+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:43.711289+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gray fence on the left side and a row of parked cars on the right side. There are also some trees and buildings in the background."}]}, {"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-04T10:44:38.281718+00:00", "objects": ["traffic_ease_vehicle", "image_description", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "image_condition", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.359495+00:00", "label": "easy", "label_explanation": "The road is clear, with no water or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.847333+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several people walking on the street, and cars are parked on the side of the road. There are buildings on both sides of the street, and the sky is clear."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:44.478311+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:43.676849+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:48.541507+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.769789+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.267638+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.146901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:47.547349+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:49.577609+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.745905+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.049791+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:45:09.053555+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "alert_category", "brt_lane", "fire", "image_description", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:06.415905+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:10.027452+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:11.910722+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:10.236181+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:11.221980+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:11.646541+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:10.454530+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:10.943638+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:07.143796+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:11.429592+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:12.138609+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is not blocked and there are no visible hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:10.723996+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:22.195305+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:07.978315+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:08.884442+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:07.492695+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:09.123171+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:09.412617+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a white van with an open trunk full of orange traffic cones, a dog walking on the sidewalk, and a black parked car on the side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:07.754661+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:08.391746+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "fire", "timestamp": "2024-02-04T10:46:08.593904+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:08.190880+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:04.578740+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:07.289798+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:03.897493+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:47.960832+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "inside_tunnel", "building_collapse", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "fire", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T10:45:48.686702+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is dry, with only a few small puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.882249+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:48.383517+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and focused, with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:42.111857+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The image shows an urban street with buildings, cars, and trees. There are no signs of a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:49.659190+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings in the image are intact, with no signs of damage or structural issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.995434+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no signs or markings indicating that the lane is reserved for buses."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:50.570898+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with cars parked on either side. There are a few trees and buildings in the background. The road is dry and clear, with no signs of water or other obstacles. The image is clear and focused, with no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:50.289002+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:49.383970+00:00", "label": "normal", "label_explanation": "The image shows a clear road with no signs of accidents, fires, or other major incidents. There are no issues that would interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.091651+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water or other obstacles that would impede traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.877622+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:49.162141+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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-04T10:45:36.486634+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_condition", "image_description", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:33.201734+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:27.135297+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:28.012460+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:31.911525+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:31.413825+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:32.920808+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water on the surface. Vehicles can pass without difficulty."}, {"object": "fire", "timestamp": "2024-02-04T10:46:32.710175+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:32.441109+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:31.209543+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:33.421250+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane on the left side. There is a red bridge in the background and several cars and buses on the road. The road is dry and there are no visible hazards or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:31.712063+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:32.199064+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-04T10:45:36.729007+00:00", "objects": ["landslide", "road_blockade", "alert_category", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:35.865555+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of soil displacement, rocks, and debris on or near the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:34.460291+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:34.949554+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking part of the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:34.751221+00:00", "label": "water_puddle", "label_explanation": "There is a large puddle of water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:34.246773+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:35.642833+00:00", "label": "difficult", "label_explanation": "There is a flooded section of the road, causing notable hindrance to vehicles."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:34.029576+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:31.152864+00:00", "label": "false", "label_explanation": "There is no designated bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:35.436301+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:35.163422+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:30.451912+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:36.154667+00:00", "label": "null", "label_explanation": "A wide road with a BRT lane and several other lanes. There is a bus driving in the BRT lane. There is a fallen tree blocking part of the road. There is a large puddle of water on the road. The surrounding buildings are tall and there are trees on either side of the road."}]}, {"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-04T10:44:29.125045+00:00", "objects": ["road_blockade", "fire", "traffic_ease_vehicle", "landslide", "image_condition", "inside_tunnel", "image_description", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:45:45.417823+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:45:46.536399+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:46.725703+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:47.021319+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:44.944423+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:31.825359+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:47.212598+00:00", "label": "null", "label_explanation": "A bus is driving on a road. The bus is blue and white. The road is surrounded by trees. The sky is blue and there are some clouds. The image is clear and bright."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:45.209376+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:36.661529+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:45.794969+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:46.327250+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:46.073648+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T10:27:59.113492+00:00", "objects": ["inside_tunnel", "image_description", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:28:43.770752+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:28:49.453507+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. The road is dry, and there are no signs of water accumulation or puddles. The surrounding buildings are intact, and there are no signs of structural damage or debris. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:28:48.949160+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:28:48.461634+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage or debris."}, {"object": "fire", "timestamp": "2024-02-04T10:28:48.732547+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:28:44.471558+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:28:47.269246+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:28:49.169666+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:28:47.762157+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:28:47.955333+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:28:48.177756+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:28:47.483724+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T10:45:08.110983+00:00", "objects": ["fire", "landslide", "image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_description", "alert_category", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:45:59.399817+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:59.908313+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:57.992927+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:55.070726+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:58.692934+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:58.477336+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:59.681761+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:59.203422+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:00.177005+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible signs of road blockades, water accumulation, or any other issues. The image is of a road with trees on either side and a clear sky."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:58.923542+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:58.195909+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:54.312035+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T10:44:45.361846+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:42:52.442267+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is not blocked and traffic is flowing smoothly."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:44.420871+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:43.814874+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:47.693550+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:44.880611+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:36.088531+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:51.170569+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:42.508876+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.506369+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:36.578785+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:36.301298+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:42.726117+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:46.132731+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "fire", "image_description", "image_condition", "alert_category", "building_collapse", "road_blockade_reason", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T10:45:46.358754+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:46.636387+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.517506+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.052361+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T10:45:47.831757+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:02.828455+00:00", "label": "null", "label_explanation": "The image shows a wide, curved road with a green building on the left and trees on the right. There is a car driving on the road. The sky is clear and sunny."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.094544+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.266578+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:47.560433+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:46.936471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.542585+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.330270+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:30.847510+00:00", "objects": ["image_description", "road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "brt_lane", "inside_tunnel", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:43.985383+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or issues. The road is surrounded by trees and buildings, and the weather appears to be clear."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:42.155749+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:42.579039+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:41.765815+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:42.382843+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:43.489553+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:43.700571+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:19.918954+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:18.788977+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:41.519858+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:42.842954+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T10:45:43.227485+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:45:28.117335+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:13.650212+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:12.853041+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:09.172591+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:12.365925+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:14.358522+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a bus and a white car on the road. The bus is stopped at a bus stop and the car is driving on the right side of the road. There are trees and buildings on the side of the road. The sky is cloudy and there is a slight bend in the road to the left."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.173448+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:14.070465+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:13.147778+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:08.458049+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:13.360822+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:13.862306+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:12.576190+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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-04T10:45:28.651115+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "road_blockade", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:37:38.000571+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bike lane and a bus lane. There are trees and buildings on either side of the road. The road is clear with no visible blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T10:46:26.226557+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:21.446791+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:22.140858+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:26.714512+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:26.433978+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:25.823796+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:26.030224+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:25.329365+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:25.128828+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:24.922140+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:25.543122+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:04.259636+00:00", "objects": ["building_collapse", "image_condition", "image_description", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:46:11.432305+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:10.229206+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:12.428471+00:00", "label": "null", "label_explanation": "The image shows a tree-lined road with a clear sky. There are no signs of traffic or people. The road is in good condition and there are no visible hazards."}, {"object": "fire", "timestamp": "2024-02-04T10:46:11.730141+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:10.527531+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:11.929986+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:10.730691+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:06.634078+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:11.225744+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:12.141999+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:11.011252+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:07.342026+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}]}, {"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-04T10:44:57.788185+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:55.033237+00:00", "label": "null", "label_explanation": "The image shows a road with a fallen tree. The road is partially blocked and there is a car stopped behind the tree. There are no people visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:53.044205+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are still navigable for most vehicles."}, {"object": "fire", "timestamp": "2024-02-04T10:45:54.253882+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:53.320732+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:54.546552+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are still navigable for most vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:53.542514+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road, but they are still navigable for most vehicles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:49.955188+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:54.025999+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:52.832461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:49.239052+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:54.795889+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are rocks and debris on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:53.755048+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T10:44:36.229865+00:00", "objects": ["fire", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "landslide", "image_description", "brt_lane", "water_in_road", "building_collapse", "inside_tunnel", "image_condition", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:45:46.929095+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:46.082450+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:46.356798+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:47.261120+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:47.542448+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:47.745484+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a BRT lane on the left side. There is a bus driving in the BRT lane and several cars in the other lanes. There are trees and buildings on either side of the road. The road is partially blocked by a fallen tree. There is a small puddle of water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:39.428749+00:00", "label": "false", "label_explanation": "The right side of the road is not a designated bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:45.318989+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:46.630796+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:36.106817+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:45.123939+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:45.786441+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-04T10:45:36.521061+00:00", "objects": ["image_condition", "water_in_road", "building_collapse", "image_description", "fire", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "road_blockade", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:37.936440+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:38.213147+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:39.049529+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:40.016421+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees on either side of the road, and buildings can be seen in the background. A white car is driving on the road, and a motorcycle is parked on the side of the road. There are no people visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T10:46:39.322785+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:38.636596+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:38.843973+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:34.626976+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:39.526955+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:39.746187+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:38.437544+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:35.249324+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T10:45:38.139137+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "fire", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:24.208879+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:22.336566+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It is not blurred and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:23.945829+00:00", "label": "easy", "label_explanation": "The road is clear and there are no signs of flooding. Vehicles can pass easily."}, {"object": "fire", "timestamp": "2024-02-04T10:46:23.719917+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:19.821443+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:23.232169+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and there are no signs of flooding, accidents, fire, etc."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:45.854457+00:00", "label": "null", "label_explanation": "The image shows a wide road with trees on either side. There is a clear view of the road and the surrounding area. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:19.118454+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:22.612101+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are no puddles or signs of flooding."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:23.034586+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:23.512949+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:22.826855+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}]}, {"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-04T10:45:28.756174+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:18.903119+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:13.929041+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:17.922613+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:17.505572+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:19.120228+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:14.627745+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:17.736096+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:18.412854+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:35.056970+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is clear and there are no visible signs of rain. The road surface is dry and there are no visible signs of damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:18.661914+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:18.206553+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:19.404767+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:31.006000+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:31.547931+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:30.854795+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:27.168000+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:31.330850+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:30.633616+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:30.143547+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:30.370219+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:31.123704+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:26.436974+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:31.829994+00:00", "label": "easy", "label_explanation": "The road surface is mostly clear and dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:32.354866+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a yellow car in the foreground, and a silver car in the background. There are trees and buildings on either side of the road. The traffic lights are green in all directions. The road surface is mostly clear and dry, with small, insignificant puddles. There are no signs of road blockades or other hazards."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:32.038729+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T09:08:16.099627+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T09:09:00.528968+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T09:08:55.440073+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T09:09:00.255693+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T09:09:00.042649+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T09:08:56.139894+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T09:08:59.827659+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T09:08:59.585345+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T09:08:59.142499+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T09:09:01.252841+00:00", "label": "null", "label_explanation": "The image is of a road with a yellow blurred background. There is a tree on the left side of the road and a white building on the right side. There is a car driving on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T09:08:58.929413+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems. There are issues in the image quality, such as blurring or obstructions, that affect its clarity."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T09:09:00.740830+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles. There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T09:09:01.026405+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:44:55.018162+00:00", "objects": ["image_condition", "brt_lane", "fire", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:03.669049+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems. The overall visibility is still acceptable."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:00.578628+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "fire", "timestamp": "2024-02-04T10:46:05.260528+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:05.678689+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:04.178167+00:00", "label": "partially_blocked", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road, making it difficult for vehicles to pass."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:04.465128+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked by water."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:03.871480+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road, making it difficult for vehicles to pass."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:05.468845+00:00", "label": "difficult", "label_explanation": "The road is partially covered with water, making it difficult for vehicles to pass. However, the water is not too deep and most vehicles should be able to pass through."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:05.971748+00:00", "label": "null", "label_explanation": "The image shows a road with a significant amount of water. The water is covering a large portion of the road, making it difficult for vehicles to pass. There are cars and buildings on either side of the road. The image is blurry due to water, focus issues, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:04.963569+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:59.775562+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. The road is clearly visible with buildings and trees on the sides."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:04.689154+00:00", "label": "minor", "label_explanation": "The image shows a road with a significant amount of water. The water is covering a large portion of the road, making it difficult for vehicles to pass. This could cause traffic delays and disruptions."}]}, {"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-04T10:45:23.152870+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:24.523661+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with some puddles but no major obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:21.239887+00:00", "label": "false", "label_explanation": "The right side of the road is not a designated bus rapid transit (BRT) lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:20.524452+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible, with buildings and trees on either side."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:25.225880+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:24.324373+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:25.430853+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:26.128022+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane on the left side. There is a fallen tree blocking part of the road, and there are some puddles on the road. There is a building on the right side of the road, and a pedestrian is crossing the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:24.752586+00:00", "label": "water_puddle", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:24.942796+00:00", "label": "major", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear, with some puddles but no major obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:24.034649+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The road, vehicles, and surrounding areas are clearly visible."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:25.665012+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:25.931833+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There is soil and debris on the road, and the road is blocked."}]}, {"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-04T10:45:28.385296+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:17.472618+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:18.268797+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:14.000014+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:18.786752+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:19.277940+00:00", "label": "null", "label_explanation": "The image shows a wide road with a cyclist riding on the right side. There are trees and buildings on both sides of the road. The sky is clear and there are no visible hazards or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:16.976225+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:13.302106+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:19.028160+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:17.207200+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:17.996029+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:17.719591+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:18.497182+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:44:25.741459+00:00", "objects": ["image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:48.396471+00:00", "label": "null", "label_explanation": "A grayscale image of a road with a motorcyclist. The road is surrounded by trees and buildings. The motorcyclist is wearing a helmet and is riding in the middle of the road. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:43.567880+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:47.907706+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:43.819373+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:44.883072+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:36.212110+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T10:45:47.691167+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:44.405924+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:43.245678+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.108311+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:39.510761+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:44.130079+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:24.982730+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:14.062100+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:13.570405+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.665959+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:13.846898+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:13.362134+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:14.768961+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are a few cars parked on the side of the road and some people walking around. The buildings are tall and colorful, and the sky is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:09.114538+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:14.543725+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:14.271543+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:12.950790+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:13.153944+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:09.766383+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T10:45:05.434296+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:46:00.364619+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:59.169410+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:00.578049+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:56.252374+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:59.656176+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:59.363104+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:01.337713+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking two lanes. There is a bus driving in the right lane and a white car is parked on the side of the road. The sky is cloudy and the image is clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:00.845924+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:00.134160+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:55.558019+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:01.072261+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:59.861627+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}]}, {"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-04T10:44:56.441724+00:00", "objects": ["building_collapse", "landslide", "road_blockade", "inside_tunnel", "image_description", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T10:45:58.436569+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no debris or damage visible."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:59.156855+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:57.659909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:53.480208+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:59.435483+00:00", "label": "null", "label_explanation": "The image shows a clear road with no signs of accidents, fires, or other disruptions. There are no people or vehicles visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:57.938298+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:45:58.686876+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:58.139855+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no signs of accidents, fires, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:58.927453+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:54.233513+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:57.162819+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:57.434898+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}]}, {"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-04T10:44:36.728368+00:00", "objects": ["road_blockade", "brt_lane", "road_blockade_reason", "building_collapse", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:45:23.331286+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:16.764211+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:34.175768+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:34.729820+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T10:45:36.643641+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:20.389040+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:38.183287+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:40.183724+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with cars driving in both directions. There are trees and buildings on either side of the road. The road is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:39.908668+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:34.425396+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:20.071647+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:16.002112+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:44:55.860883+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.355059+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.439426+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:49.750396+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking part of the road. There are cars parked on either side of the street. The buildings are tall and brightly colored. The sky is blue and there are some clouds. The image is clear and there is no interference."}, {"object": "fire", "timestamp": "2024-02-04T10:45:49.146595+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.374830+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:48.827709+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:47.930255+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:48.557047+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.128137+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:47.697617+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:49.534821+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.348037+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-04T10:45:13.550363+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "fire", "alert_category", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:00.344853+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:56.748759+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:01.641898+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:00.641188+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:57.459563+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:01.895072+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:01.359196+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:01.139438+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:02.352390+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:02.631061+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees and buildings on either side of the road. There are cars parked on the side of the road. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:02.130344+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:00.848492+00:00", "label": "free", "label_explanation": "There are no features that blockade the road."}]}, {"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-04T10:44:51.937644+00:00", "objects": ["landslide", "road_blockade_reason", "inside_tunnel", "building_collapse", "water_in_road", "image_condition", "fire", "image_description", "road_blockade", "alert_category", "traffic_ease_vehicle", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:45:46.087135+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:44.642190+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:39.291900+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:45.213456+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:44.141104+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:43.909120+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:45.466231+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:46.362065+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a fallen tree blocking part of the road. The tree is blocking the right lane, but the left lane is still open for traffic. There is a bus stop on the right side of the road, but it is not affected by the fallen tree. There are no people or cars visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:44.340185+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:44.929865+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:45.740800+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:40.027106+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T10:45:25.905322+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_description", "image_condition", "building_collapse", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:12.473888+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, making it difficult for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:12.961992+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, and there are no signs of accidents, fires, or other disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:12.246510+00:00", "label": "false", "label_explanation": "There are no puddles on the road. The road surface is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:08.447713+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with buildings and foliage on either side."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:14.176789+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking part of the road, making it difficult for vehicles to pass. The road is lined with buildings and foliage, and the sky is clear."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.004311+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The road, buildings, and foliage are clearly visible."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:13.183994+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact, and there are no signs of structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:09.156425+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:13.700448+00:00", "label": "difficult", "label_explanation": "There is a fallen tree blocking part of the road, making it difficult for vehicles to pass."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:12.766040+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:13.891162+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:46:13.477511+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:45:31.441989+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "alert_category", "building_collapse", "landslide", "image_condition", "road_blockade_reason", "road_blockade", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:22.493180+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:27.676855+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can proceed with ease."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:26.994435+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:27.193517+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:27.893794+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:26.009795+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:26.783360+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:26.487006+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:26.283217+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T10:46:27.406373+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:23.193457+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:05.826359+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There is a police car partially blocking the road, which may cause minor traffic disruptions. There are small puddles on the road, but they are not significant enough to cause traffic disruptions. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:01.546458+00:00", "objects": ["image_description", "image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:43:13.735913+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road with a pedestrian crossing. There is a park to the right of the road, separated by a fence. The road is clear with no visible obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:08.093238+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:08.574738+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:09.763799+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:08.361796+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:09.059043+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:04.558466+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:09.985035+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:46:09.550844+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:09.307623+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:08.860740+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:05.280510+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T10:45:31.529208+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "building_collapse", "image_description", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T10:46:14.744773+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:10.735998+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:15.464584+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:15.801721+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:16.852308+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is not crowded and traffic is flowing smoothly."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:15.238124+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:14.940406+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:16.276471+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:14.481491+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:11.451974+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:16.565145+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:46:16.046576+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:45:26.693923+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "image_condition", "image_description", "alert_category", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T10:46:12.068285+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:15.965684+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:15.351478+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:16.444916+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:15.540479+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:11.360918+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:15.066970+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:14.857996+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:13.565898+00:00", "label": "null", "label_explanation": "A wide road with a gas station on the left and a sports court on the right. There is a police car stopped on the side of the road. The road is clear with no visible obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:15.758118+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-04T10:46:16.242655+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:16.659537+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:35.913693+00:00", "objects": ["road_blockade", "road_blockade_reason", "image_description", "landslide", "alert_category", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:18.667048+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:18.940417+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:20.340726+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. The tree is large and has fallen across the road, blocking two lanes of traffic. The remaining two lanes are open to traffic. There is a traffic light at the intersection and a pedestrian crossing. There are buildings and trees on either side of the road. The weather is clear and sunny."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:20.086944+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:19.136724+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:18.239925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:19.620452+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:19.358355+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:19.837827+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:18.445385+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:14.726761+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:15.435130+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T10:45:42.200682+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade_reason", "brt_lane", "fire", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:32.008917+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:33.593336+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:31.497633+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:33.329215+00:00", "label": "easy", "label_explanation": "The road is clear, with small puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:31.719105+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:33.817237+00:00", "label": "null", "label_explanation": "The image shows a wide road with a crosswalk and a traffic light. There are buildings and trees on either side of the road. The sky is cloudy, and the sun is not visible. The road is clear, with small puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:32.314832+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:28.204642+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:33.011842+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:32.804035+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:32.508218+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:27.299716+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T10:45:11.362190+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "brt_lane", "road_blockade", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:49.909926+00:00", "label": "null", "label_explanation": "The image shows a partially blocked road due to a fallen tree. The road is partially visible, with a clear view of the surrounding buildings and the sky. The image quality is good, with no visible blurring or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:49.150890+00:00", "label": "moderate", "label_explanation": "The fallen tree is partially blocking the road, but vehicles can still pass with some difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:48.007328+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:48.308885+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:48.511616+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:48.828133+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is partially blocking the road, but vehicles can still pass."}, {"object": "fire", "timestamp": "2024-02-04T10:45:47.520698+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:49.409885+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:49.684596+00:00", "label": "minor", "label_explanation": "The fallen tree is partially blocking the road, but vehicles can still pass with some difficulty. This is a minor issue that should be reported."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:47.810020+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:47.022615+00:00", "label": "true", "label_explanation": "The image shows an enclosed space with artificial lighting, concrete walls, and a clear tunnel-like structure."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:47.310536+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T10:45:43.102786+00:00", "objects": ["inside_tunnel", "road_blockade", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "building_collapse", "alert_category", "traffic_ease_vehicle", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:25.012744+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:29.000983+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:25.701605+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:28.799508+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:29.910524+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:29.229439+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:29.707908+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:29.495566+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:30.192960+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:28.521411+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:30.690011+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection in Rio de Janeiro. There are a few cars and a bus on the road, and several buildings in the background. The sky is cloudy and there are some trees on the side of the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:30.411668+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:16.341049+00:00", "objects": ["road_blockade", "inside_tunnel", "image_description", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T10:46:02.183791+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:58.120632+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:14.848188+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars, buses, and bicycles on the road. There are also trees and buildings on either side of the road. The sky is clear and the sun is shining."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:02.897110+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:03.413892+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:46:03.196549+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:02.681461+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:58.805211+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:01.697971+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:01.906765+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:02.396824+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:03.694583+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:26.066439+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:46:15.957228+00:00", "label": "null", "label_explanation": "The image shows a road with a green wall and white light fixtures on the ceiling. The road is clear with no visible traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:15.669429+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:15.399667+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:14.681427+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear with no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:14.898484+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:13.775485+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:10.296391+00:00", "label": "true", "label_explanation": "The image is showing a tunnel with a green wall and white light fixtures on the ceiling. The road is clear with no visible traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:11.865898+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:13.984058+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "fire", "timestamp": "2024-02-04T10:46:15.187102+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:14.189511+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no visible obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:14.480693+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no visible obstructions."}]}, {"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-04T10:44:43.601444+00:00", "objects": ["road_blockade_reason", "water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "image_description", "brt_lane", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:45.754613+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:45.256261+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:46.226279+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:46.744227+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:47.063170+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:45:46.443641+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:45.525149+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:41.164164+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:45.956740+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T10:42:52.849953+00:00", "label": "null", "label_explanation": "A four-lane road with a bus lane on the left side. There is a white truck on the right lane and a bus on the bus lane. The road is bordered by trees and buildings. The sky is cloudy and there are no visible signs of rain."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.157271+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:45.040078+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T10:44:33.689631+00:00", "objects": ["image_description", "inside_tunnel", "image_condition", "brt_lane", "building_collapse", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "fire"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:45:51.934502+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are a few parked cars on the side of the road and a motorcycle driving through the intersection. The buildings along the road are mostly residential, with some commercial buildings as well. The road is in good condition and there are no visible signs of construction or other hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:42.809001+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:49.147280+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:43.563501+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:50.347071+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:49.647569+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:50.141521+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:51.238814+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:50.847988+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can easily pass through."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:49.359932+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:49.869521+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:45:50.577388+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T10:45:33.756240+00:00", "objects": ["landslide", "image_condition", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:30.326506+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:28.311174+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:28.526519+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:28.822067+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:25.228509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:29.906697+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:31.952971+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with multiple lanes of traffic. There are trees on either side of the road and buildings in the background. The road is wet from rain, but there are no major puddles or blockages. Traffic is flowing smoothly."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:29.608396+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:30.112907+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:24.495512+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:29.326660+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:29.105744+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:28.094121+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:46:28.220294+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road and a person is walking on the sidewalk. The buildings are tall and brightly colored. The street is made of cobblestone and there are trees on either side."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:22.745863+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:26.835756+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:27.260247+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:23.423789+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:27.037414+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:26.374108+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:27.539826+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:26.625918+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:26.151966+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:27.749978+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:27.938625+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:47.616307+00:00", "objects": ["fire", "landslide", "image_description", "alert_category", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:29.808273+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:30.293014+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:30.508344+00:00", "label": "null", "label_explanation": "A wide road with a white car driving in the left lane. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:29.324071+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:24.920266+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:28.410841+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:29.596349+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:28.606795+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:25.625564+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:29.102052+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:30.010418+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:28.900630+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}]}, {"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-04T10:45:00.514870+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:03.593114+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:04.310281+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few trees and buildings on either side. There is a motorcyclist riding on the right side of the road. The road is clear and there are no signs of any problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:02.809092+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:01.983977+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:02.284065+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:04.084723+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:03.892606+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:58.892857+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:58.100631+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:03.304116+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:02.589966+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:03.090113+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-04T10:45:35.455175+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:24.124901+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:22.531766+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:23.029084+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:45.197355+00:00", "label": "null", "label_explanation": "The image shows a road intersection with a fallen tree blocking part of the road. There is a traffic light at the intersection and a bus stop on the side of the road. There are cars parked on the side of the road and a few trees in the background."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:18.925527+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:23.244188+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-04T10:46:23.727129+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:22.822945+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:23.932839+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:22.332048+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:19.538517+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:23.517101+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:14.079004+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:14.905827+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T10:46:14.287227+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.813312+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:13.796208+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:13.582443+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:14.039607+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:13.319795+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:15.136331+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There is a traffic light at the intersection. There are trees and buildings on either side of the road. The sky is clear and it is daytime. There is a green sign on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:14.689512+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:13.090041+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:09.102897+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:09.810107+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T10:44:55.797170+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:45:48.345224+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:46.554293+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:45:48.053396+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:45:47.356971+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:45:48.834516+00:00", "label": "null", "label_explanation": "A grayscale image of a road with a few cars and people walking on the sidewalk. The road is clear and there are no signs of any issues."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:45:46.870657+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-04T10:45:47.631102+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:42.962489+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:45:47.080466+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:45:47.840193+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:39.491140+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-04T10:45:48.569129+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:26.628856+00:00", "objects": ["image_condition", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T10:46:29.610239+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:30.112289+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:25.922061+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:30.516513+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-04T10:46:31.303119+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:30.306437+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:26.626489+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:31.614335+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:31.913182+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:29.821537+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:32.228314+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with a clear sky. There are a few trees on either side of the road and some buildings in the background. The road is not blocked and there is no water on the road. There are no people or cars visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:31.047781+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:02.853353+00:00", "objects": ["landslide", "image_condition", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T10:46:01.980018+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:45:59.779000+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:00.588680+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:55.709110+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T10:46:01.415017+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:00.304275+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road. The road is partially blocked, but vehicles can still pass with caution."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:01.186486+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:56.602478+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating a BRT lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:00.005802+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear and dry."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:00.825400+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:02.284811+00:00", "label": "null", "label_explanation": "The image shows a busy road with a fallen tree blocking the right lane. The road is partially blocked, but vehicles can still pass with caution. The surrounding buildings are intact with no signs of damage. The image is clear with no interference."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:01.700431+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow freely."}]}, {"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-04T10:45:19.607663+00:00", "objects": ["road_blockade_reason", "landslide", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:15.954311+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:17.205122+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:17.407823+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are no traffic lights or signs visible in the image. The road surface is mostly dry with a few small puddles. There is a single motorbike and a few parked cars on the road. The surrounding buildings are mostly residential and commercial, with a few trees visible in the background."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:15.588971+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:16.908023+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry with minimal water accumulation. There are small, insignificant puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:15.115586+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:16.684712+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:16.180941+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:16.399895+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:15.386607+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:12.182944+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:11.390055+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics in the image."}]}, {"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-04T10:45:16.874543+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "water_in_road", "image_description", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:13.728113+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:08.917156+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:12.238505+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:14.644484+00:00", "label": "null", "label_explanation": "The image shows a wide, two-way street with a pedestrian crossing. There are trees and buildings on either side of the street. The street is mostly clear, with small, insignificant puddles. Traffic flow is not impeded. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:12.459910+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:08.142915+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:12.955976+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T10:46:13.477268+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:12.731176+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:13.241028+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no visible damage or structural issues."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:12.003962+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:13.954479+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:10.985251+00:00", "objects": ["image_description", "road_blockade_reason", "alert_category", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T10:43:12.394346+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:03.042257+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:03.330588+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:02.247288+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:03.550969+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:02.535085+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:45:59.371205+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:02.848200+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:04.114722+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:45:58.651600+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T10:46:03.834215+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:04.375219+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T10:45:33.294252+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "inside_tunnel", "building_collapse", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:20.121337+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:21.109482+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:21.333319+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:15.622969+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:20.609617+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:19.916064+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:20.400409+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:16.410443+00:00", "label": "false", "label_explanation": "The lane on the right side of the image is not a designated bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-04T10:46:20.895525+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:19.396402+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:24.373287+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There is a yellow taxi partially blocking the road, causing minor traffic disruptions. The road is partially wet from recent rain, but there are no significant puddles. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:19.609628+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T10:45:37.447016+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:21.455821+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:26.543234+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:24.750777+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:25.456733+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:22.117569+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:25.927612+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:25.263943+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:25.665623+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:26.340770+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T10:43:29.801851+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars driving on it. There are trees and buildings on either side of the road. The sky is hazy and there are some clouds in the distance."}, {"object": "fire", "timestamp": "2024-02-04T10:46:26.128417+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:25.038657+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-04T10:45:33.744905+00:00", "objects": ["fire", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "alert_category", "road_blockade", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:46:26.630080+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:26.853595+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:22.517645+00:00", "label": "false", "label_explanation": "There are no signs indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:25.238157+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:25.455671+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:25.948089+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:27.122082+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:26.146377+00:00", "label": "minor", "label_explanation": "The image shows a fallen tree blocking part of the road, which could cause minor traffic disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:25.731032+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:27.331985+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the right lane. There is a car stopped on the side of the road near the fallen tree. The other lanes are open to traffic. The road is surrounded by trees and buildings."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:21.734185+00:00", "label": "false", "label_explanation": "The image shows an open road with no visible signs of being inside a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:26.421430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}]}, {"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-04T10:45:39.738374+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "inside_tunnel", "water_in_road", "fire", "brt_lane", "building_collapse", "image_description", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:29.322475+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:27.702868+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:28.414527+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:23.980947+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:27.903424+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T10:46:29.114102+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:24.728268+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:28.885804+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:29.823073+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. There is a bus driving on the left side of the road and a car approaching the fallen tree from the right side. The road is surrounded by tall buildings and trees."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:29.596054+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:28.110896+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely free."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:28.612131+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T10:45:40.243254+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "alert_category", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:28.770657+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:29.045015+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:28.361057+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:24.167429+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:27.076788+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:27.350115+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:29.261600+00:00", "label": "null", "label_explanation": "The image shows a wide road with a tree-lined median. There are cars parked on either side of the median. The road is clear of any obstructions and there are no signs of construction or accidents. The image is clear and there are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T10:46:28.555477+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:28.094078+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:27.566911+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:23.467274+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:27.852675+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T10:45:39.217796+00:00", "objects": ["traffic_ease_vehicle", "road_blockade_reason", "fire", "landslide", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:29.003234+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:27.904427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T10:46:28.725403+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:29.318075+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:23.906951+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:27.102892+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:23.097684+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:28.204042+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:27.326567+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:29.526529+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars parked on the side of the road and people walking around. There is a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:27.611422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:28.417535+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T10:45:41.932435+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T10:46:32.128221+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:46:32.709418+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:46:27.022963+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T10:46:32.924373+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:46:33.228930+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:46:31.616304+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:46:27.823270+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:46:31.898841+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T10:46:33.514850+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T10:46:31.319876+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T10:46:32.425218+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T10:46:33.734330+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking the road. A car is driving on the right side of the road. There are buildings and trees on either side of the road. The sky is clear and sunny."}]}] \ No newline at end of file +[{"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-04T15:29:43.541422+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:30:49.277966+00:00", "label": "easy", "label_explanation": "The road is clear with no water."}, {"object": "image_condition", "timestamp": "2024-02-04T15:30:47.485974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:30:42.166598+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:30:49.788579+00:00", "label": "null", "label_explanation": "A screenshot of a traffic camera. In the foreground, there is a silver SUV driving on the right side of the road. There is a white car driving in the opposite direction. There are trees and buildings on either side of the road. The sky is clear and blue."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:30:48.058422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:30:44.293021+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T15:30:49.066642+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:30:48.359263+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:30:47.774547+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:30:48.561862+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:30:48.764847+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:30:49.552469+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:35:34.170215+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "road_blockade", "image_description", "image_condition", "water_in_road", "landslide", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T15:36:40.856794+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:48.229696+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.664477+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.823821+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-04T15:36:48.610314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.941513+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.416005+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:33:53.022194+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The buildings in the background are tall and brightly colored. The sky is clear and sunny."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.861264+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:47.139726+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:49.039484+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:34.240861+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:35:43.456358+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "water_in_road", "image_description", "image_condition", "landslide", "road_blockade_reason", "inside_tunnel", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.107661+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:46.378702+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:46.879556+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:47.674860+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.405559+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.172784+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:48.090117+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian bridge crossing over it. There is a silver car driving on the road and a person walking on the pedestrian bridge. The road is lined with trees and buildings."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:45.912939+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:47.879473+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:46.662832+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.188226+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.081735+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T15:35:30.301667+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason", "fire", "image_condition", "image_description", "brt_lane", "landslide", "water_in_road", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:36:42.803808+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:44.156938+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet, with small, insignificant puddles. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:43.332384+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.434778+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:43.093987+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:36:43.905766+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:42.311061+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:44.733241+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bus lane on the left side. There are trees and buildings on both sides of the road. The road is clear with no visible obstructions. The image is clear and has good visibility."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.190732+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:44.425757+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:42.549602+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:43.683446+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T15:35:40.605396+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:41.949569+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:47.608407+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow freely."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.021495+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.241369+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:42.728131+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:46.261525+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:33:44.615683+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. There are cars on the road, a bus, and a motorcycle. The road is partially blocked and there is a traffic jam. The image is clear and there are no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:46.772020+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.036955+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:45.826086+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:47.856454+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:46.542765+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T15:36:03.378157+00:00", "objects": ["image_description", "road_blockade_reason", "alert_category", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:51.801972+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The road is clear and there are no signs of any issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.303370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:50.514487+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:49.574975+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:50.796729+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:49.793797+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:46.547170+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.090837+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.288310+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can pass easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:45.806174+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.008198+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:51.503118+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:35:59.295201+00:00", "objects": ["traffic_ease_vehicle", "fire", "image_condition", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:10.301122+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T15:37:10.015840+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:08.516244+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:09.317121+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:10.815609+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a gas station on the right side. There is a car driving on the left side of the road. The road is clear with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:08.797651+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:09.517163+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:09.011613+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:05.509804+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:09.803707+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:04.725956+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:10.526744+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:30:08.353407+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:31:15.003328+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:31:09.915778+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:31:15.502645+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian crossing. There are trees and buildings on either side of the road. The road is clear with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:31:13.305789+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:31:13.673115+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:31:09.137574+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:31:14.232149+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T15:31:14.762479+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:31:13.958463+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:31:14.498542+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:31:13.008964+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:31:15.235095+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:30:17.218213+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "alert_category", "fire", "landslide", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:31:20.400806+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:31:16.790688+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:31:21.543403+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:31:20.630366+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:31:17.529609+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T15:31:21.330624+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T15:31:21.744398+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:31:22.250241+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:31:21.043837+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:31:22.478112+00:00", "label": "null", "label_explanation": "The image shows a wide road with a yellow taxi driving in the right lane. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:31:22.020117+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:31:20.846394+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:28.515289+00:00", "objects": ["fire", "road_blockade_reason", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "alert_category", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:22.132072+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:21.421551+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:21.143316+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:17.019167+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:22.337920+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow smoothly."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:22.822557+00:00", "label": "null", "label_explanation": "A screenshot of a traffic camera. The camera is mounted on a street corner and is pointed down at the intersection. There is a motorcyclist stopped at the intersection, waiting for the light to change. There are no other cars in the intersection. The street is lined with trees and buildings."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:20.938770+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:17.733571+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:21.628452+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:21.868319+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:20.655819+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:22.549798+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:37.538596+00:00", "objects": ["image_condition", "water_in_road", "building_collapse", "fire", "image_description", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "brt_lane", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:29.600381+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:29.808141+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:30.781227+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:37:30.990247+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:31.706154+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are people walking on the street, cars driving, and street vendors selling goods. The street is lined with trees and buildings."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:30.293417+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:30.501534+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a normal scene with people walking, cars driving, and street vendors."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:25.977941+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:31.270294+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:31.489137+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:26.679313+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:30.076141+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:41.613869+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "inside_tunnel", "water_in_road", "fire", "brt_lane", "building_collapse", "image_description", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:32.532209+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow normally."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:30.941916+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:31.636483+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:27.458060+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:31.153089+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T15:37:32.266461+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:28.076366+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:32.059387+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:25:32.910392+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. The tree is large and has fallen across the road, blocking both lanes of traffic. There is a car stopped behind the tree, and a person is walking on the sidewalk next to the tree."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:32.754943+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:31.362863+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:31.841066+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T15:36:28.147525+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:12.105161+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:13.809052+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:08.199518+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:37:13.585056+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:12.380390+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:14.474166+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. There are no cars on the road and the sidewalks are empty. The buildings are tall and mostly made of concrete. The sky is blue and there are some clouds in the distance."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:13.087404+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:12.601039+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:13.314246+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:08.901254+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:14.079605+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:12.808920+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:55.798563+00:00", "objects": ["building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "image_description", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:51.084039+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:51.774723+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:46.247841+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.391656+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.668187+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:51.988887+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There are no signs of water, landslides, fires, or building collapses. The image quality is good and there are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.300636+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:50.892994+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.498167+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:47.005678+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:49.980017+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:50.197573+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T15:35:43.401836+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "brt_lane", "road_blockade", "fire", "image_description", "water_in_road", "image_condition", "landslide", "building_collapse", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:30.840798+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:44.468587+00:00", "label": "water_puddle", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road and is causing a traffic jam."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:37.420603+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:43.968518+00:00", "label": "partially_blocked", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road and is causing a traffic jam."}, {"object": "fire", "timestamp": "2024-02-04T15:36:45.332786+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:46.173439+00:00", "label": "null", "label_explanation": "A screenshot of a road with a canal on the left side. The road is partially flooded and a motorcyclist is riding on the right side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:30.533011+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road and is causing a traffic jam."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:29.729399+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:45.940059+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:44.980856+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:45.614379+00:00", "label": "difficult", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road and is causing a traffic jam."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:44.686173+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T15:35:45.359926+00:00", "objects": ["building_collapse", "road_blockade", "water_in_road", "fire", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:50.099306+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:49.394304+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:49.187219+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:36:50.300302+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:50.565785+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:48.974064+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:49.873937+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:45.965158+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:45.067873+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:50.992049+00:00", "label": "null", "label_explanation": "A wide road with a pedestrian crossing. There is a tree on the left side of the road and a person crossing the road. The road is clear with no visible obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:50.782111+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:49.674546+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-04T15:36:44.368388+00:00", "objects": ["road_blockade", "image_description", "road_blockade_reason", "alert_category", "landslide", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:31.147458+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:32.673963+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There are cars, buses, and people crossing the road. The road is partially blocked by a fallen tree."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:31.347227+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:31.564747+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:32.454796+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:30.648068+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:32.054180+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:31.831810+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:32.232213+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:30.865319+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:27.265720+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:27.948044+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T15:36:41.686853+00:00", "objects": ["inside_tunnel", "road_blockade", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:26.486686+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:30.563827+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:27.200723+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:30.286341+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:31.473038+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:30.768532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:30.985967+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:31.261965+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:31.682546+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:30.076300+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:32.185917+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection in Rio de Janeiro. There are a few cars on the road, but traffic is light. The buildings along the road are mostly residential and commercial, and there are a few trees on the side of the road. The weather is clear and sunny."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:31.893078+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:31.147568+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "building_collapse", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:27.988308+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:29.019631+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:29.298477+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:28.488733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:23.476490+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:27.773502+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:28.281251+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:24.189198+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T15:37:28.769379+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:27.274713+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:29.566883+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are trees and buildings in the background. The traffic light is green for cars going straight and yellow for cars turning left. There is a bus in the bus lane and several cars on the road. The road is dry and there are no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:27.486551+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}]}, {"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-04T15:35:25.301390+00:00", "objects": ["image_description", "road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "brt_lane", "inside_tunnel", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:45.948671+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, landslides, fires, or other disruptions. The road is dry and there are no signs of water accumulation. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:44.269296+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:44.757058+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, landslides, fires, or other disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:44.043760+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:44.517241+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:45.451852+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:45.669837+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:40.748170+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:31.064897+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:43.838495+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:44.981843+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:36:45.260000+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T15:36:33.911347+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:49.560327+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:48.782098+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:45.251137+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:48.272712+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:50.262577+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The buildings in the background are tall and brightly colored. The sky is clear and blue."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:48.058348+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:49.975447+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:49.068082+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:44.555779+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:49.276468+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:49.768650+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:48.556681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:19.064626+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:37:13.148970+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:12.692679+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:11.236445+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:12.233656+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:11.963729+00:00", "label": "water_puddle", "label_explanation": "There are larger puddles, but the road is still passable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:12.440112+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:11.725734+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is free."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:13.346390+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars, buses, and people on the street. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:12.935188+00:00", "label": "moderate", "label_explanation": "There are larger puddles, but the road is still passable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:11.522287+00:00", "label": "true", "label_explanation": "There are larger puddles, but the road is still passable for most vehicles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:07.729240+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:08.357680+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T15:35:40.884063+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "image_condition", "building_collapse", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:33:58.583144+00:00", "label": "null", "label_explanation": "A wide road with cars parked on the side. Trees can be seen on both sides of the road. There is a building with blue and purple stripes on one side of the road. The road is dry and there are no visible signs of water."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:46.033658+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:46.733743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:50.020814+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:51.218297+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.519829+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:50.949936+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:10.619136+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.646453+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:50.237561+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.435241+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.731951+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:54.537968+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:37:04.451703+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a slight curve to the left. The tunnel is well-lit and there are no visible obstructions. There is a fallen tree blocking the road, making it impassable for vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:03.385828+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:37:00.060356+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:03.701229+00:00", "label": "totally_blocked", "label_explanation": "The fallen tree is blocking the road, making it impassable for vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:34:02.941666+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:03.928788+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:01.044833+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:01.951033+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:03.062940+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:59.626786+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a slight curve to the left. The tunnel is well-lit and there are no visible obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:59.861332+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:01.528182+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T15:36:07.325399+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:05.114747+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:05.910539+00:00", "label": "null", "label_explanation": "The image shows a wide road with cars driving in both directions. There are trees and buildings on either side of the road. The weather is clear and sunny."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:04.407493+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:03.647961+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:03.935668+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:05.670436+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:05.320758+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:00.398802+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:59.711530+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:04.896893+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:04.198921+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:04.613724+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-04T15:36:10.117040+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:06.596727+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:01.285401+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:07.024199+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road, a few people walking around, and a bus driving down the street. The street is lined with trees, and there are buildings in the background."}, {"object": "fire", "timestamp": "2024-02-04T15:37:06.321693+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:01.931136+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:06.116853+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:05.115764+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:05.884989+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:05.403052+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:04.900133+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:06.822778+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:05.663910+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}]}, {"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-04T15:36:06.198517+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.639972+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.559249+00:00", "label": "easy", "label_explanation": "The road is clear with no water."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:50.155144+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:51.770053+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:52.049867+00:00", "label": "null", "label_explanation": "The image shows a street corner with a few parked cars. There are trees and buildings on either side of the street. The street is made of asphalt and is in good condition. There are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.354302+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:51.057835+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.345932+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:50.851535+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:46.571389+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:49.868792+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:45.911369+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:35:35.539322+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "building_collapse", "inside_tunnel", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "fire", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T15:36:43.745220+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:44.009399+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:43.540160+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:44.657791+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:35.940310+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:36.857374+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:45.707430+00:00", "label": "null", "label_explanation": "A cyclist is riding on a bike lane next to a busy road. There are cars parked on the side of the road and a few trees in the background. The cyclist is wearing a helmet and casual clothes. The road is clear and there are no signs of accidents or other disruptions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:45.442700+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:44.442191+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no signs of accidents, fires, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:45.229032+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water or other obstructions. Vehicles can pass through the area without difficulty."}, {"object": "fire", "timestamp": "2024-02-04T15:36:44.934901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:44.232571+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:46.212784+00:00", "objects": ["traffic_ease_vehicle", "image_description", "image_condition", "brt_lane", "alert_category", "inside_tunnel", "water_in_road", "road_blockade_reason", "fire", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.372968+00:00", "label": "easy", "label_explanation": "The road is dry with only a few small puddles. The road is easily passable for vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:48.857360+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are cars parked on either side of the road and a few people crossing the street. The buildings are mostly commercial with a few residential buildings mixed in. The weather is clear and sunny."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.487413+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and there are no visible obstructions or distortions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.296885+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no signs or markings indicating that the lane is reserved for buses."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.688189+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The road is clear and there are no signs of any obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.677257+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with buildings and cars on either side."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.820724+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road is dry with only a few small puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.418331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:48.129885+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:48.582877+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no sign of soil, rocks, or debris on or near the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.881272+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.112985+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any obstructions."}]}, {"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-04T15:36:10.931206+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "landslide", "road_blockade"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:10.219343+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:13.750277+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:15.515014+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:10.925707+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:14.522968+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:16.055632+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few small puddles. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:15.023375+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:14.063256+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:15.279621+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:14.742420+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:15.737100+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:14.323163+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:28.229975+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "road_blockade", "image_description", "traffic_ease_vehicle", "inside_tunnel", "fire", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:36:48.329879+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.609926+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.071654+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.322078+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:43.541901+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:36.933145+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:46.820646+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:29:48.693134+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a bus driving on the road, and there are cars parked on the side of the road. There are also people walking on the sidewalk. The buildings are tall and brightly colored. The sky is blue and there are some clouds. The image is clear and bright."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.132073+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:30.527434+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.841869+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.595976+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T15:36:35.308810+00:00", "objects": ["image_condition", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:23.124059+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:23.592349+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:19.531023+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:24.010018+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a normal scene with no minor or major issues."}, {"object": "fire", "timestamp": "2024-02-04T15:37:24.497549+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.819773+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:24.836085+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface. Vehicles can pass through without difficulty."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:20.234402+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:25.095966+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:23.325613+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:25.307645+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There are trees and buildings on either side of the road. The traffic lights are green in all directions. There are a few cars and pedestrians at the intersection. The weather is clear and sunny."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:24.292013+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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-04T15:35:45.163369+00:00", "objects": ["alert_category", "landslide", "brt_lane", "image_condition", "inside_tunnel", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T15:36:43.856671+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:45.009688+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:36.307977+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:42.782815+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:35.386608+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:43.366664+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:43.128040+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:36:44.387922+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:43.657805+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:44.151374+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:44.689626+00:00", "label": "easy", "label_explanation": "The road is completely dry with no puddles."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:45.335707+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gray metal fence on the left side and a yellow taxi driving on the right side. There are trees and buildings in the background."}]}, {"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-04T15:36:28.300890+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "fire", "brt_lane", "image_description", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:14.808562+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:16.713820+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:15.018889+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:15.290331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:16.226927+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:11.924672+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:17.035196+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with multiple lanes of traffic separated by a central median. Trees line both sides of the avenue, and buildings can be seen in the background. The image is clear and there are no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:15.999225+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:16.516884+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:15.790555+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:11.210597+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:15.514112+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with 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-04T15:36:35.893668+00:00", "objects": ["road_blockade", "image_condition", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "image_description", "brt_lane", "fire", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:27.032315+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:26.551148+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:28.337781+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:28.158663+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:26.765360+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:27.247221+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:28.555293+00:00", "label": "null", "label_explanation": "The image shows a street scene with a black car driving on the right side of the road. There are trees and buildings on either side of the road. The sky is clear and there are no visible signs of rain. The image is clear and there are no visible obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:23.760168+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T15:37:27.948728+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:27.667459+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:27.466442+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:23.067959+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T14:36:58.323835+00:00", "objects": ["landslide", "road_blockade", "alert_category", "building_collapse", "water_in_road", "brt_lane", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T14:37:56.590211+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T14:37:54.987224+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T14:37:55.568950+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T14:37:55.783154+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T14:37:54.693661+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T14:37:51.203696+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T14:37:54.486912+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T14:37:56.074305+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T14:37:00.452927+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with cars driving in both directions. There are trees and buildings on either side of the road. The traffic lights are green in both directions. The road is dry and there are no signs of construction or accidents. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T14:37:56.285879+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through without difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T14:37:55.296782+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T14:37:50.181662+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:35:32.785925+00:00", "objects": ["road_blockade", "fire", "building_collapse", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "traffic_ease_vehicle", "image_description", "road_blockade_reason", "alert_category", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:36:45.360084+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}, {"object": "fire", "timestamp": "2024-02-04T15:36:46.328064+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:46.128122+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:44.756815+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:45.065537+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:36.323954+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:37.167198+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:46.565917+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:47.113676+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. There is a car accident on the right side of the road. The road is partially blocked and there is a water puddle on the left side of the road. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:45.643872+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:45.865475+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:46.856217+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}]}, {"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-04T15:36:34.091937+00:00", "objects": ["fire", "image_description", "alert_category", "landslide", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:27.268575+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:27.891466+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gray car driving in the center. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:26.771896+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:27.685415+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:22.479537+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:25.868477+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:26.994886+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:26.086629+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:23.090600+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:26.558358+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:27.478271+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:26.298819+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:27.465088+00:00", "objects": ["landslide", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:36:48.374670+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.472282+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.002712+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.102812+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.837318+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.296164+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.569170+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.247265+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.692680+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:46.796793+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:48.607321+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a fallen tree on the side. The tree is blocking part of the road, but there is still room for vehicles to pass. There are no people or other objects visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.532939+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T15:35:26.748582+00:00", "objects": ["image_description", "road_blockade", "fire", "traffic_ease_vehicle", "landslide", "image_condition", "inside_tunnel", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:33:55.040806+00:00", "label": "null", "label_explanation": "The image is of a red car driving on a road. The car is in the center of the image and is surrounded by trees. The road is bordered by a white line. The sky is blue and there are some clouds in the distance."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.099519+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:36:48.020878+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.453596+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:48.806220+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.597239+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.414865+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.829080+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.033938+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.313286+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.744575+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.517426+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or hazards."}]}, {"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-04T15:35:24.908695+00:00", "objects": ["road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "image_description", "building_collapse", "image_condition", "fire", "brt_lane", "water_in_road", "alert_category", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.557732+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.295608+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:46.522930+00:00", "label": "easy", "label_explanation": "The road is clear, with no water or puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:32.721156+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:33:43.351090+00:00", "label": "null", "label_explanation": "The image shows a road with cars parked on the side. The road is clear with no visible obstructions or signs of accidents or hazards. The image quality is good with clear visibility."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.980946+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.796455+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:54.488487+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:33.549685+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:47.006802+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.778211+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:27.427523+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:33:38.185613+00:00", "objects": ["image_description", "inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:34:45.441754+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road scene with trees on the left side and buildings on the right side. There is a bus driving on the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:34:39.929171+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:34:44.962143+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:34:44.526467+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:34:44.756595+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:34:40.547468+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:34:43.351324+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:34:45.230273+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:34:43.858327+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:34:44.044656+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:34:44.256696+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:34:43.552725+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T15:36:24.026751+00:00", "objects": ["road_blockade_reason", "landslide", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:22.615180+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:23.824463+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:24.030211+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a red car driving through the intersection, and a cyclist is riding on the right side of the road. There are several people walking on the sidewalks, and there are a few trees and buildings in the background. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.405356+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:23.522675+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:21.935496+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:23.325259+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:22.820963+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:23.072286+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.111214+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:19.313235+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.525504+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:35:48.179745+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "image_description", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:49.358250+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:48.852812+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:49.138598+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T15:36:49.561883+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:50.058654+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:48.589115+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:48.374156+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:45.066685+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:48.157598+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:50.264319+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees and buildings on either side of the road. The road is relatively busy, with cars and buses traveling in both directions. There are no visible signs of construction or accidents. The image is clear and easy to see."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:41.618388+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:49.757132+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through."}]}, {"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-04T15:35:35.381147+00:00", "objects": ["image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:53.575226+00:00", "label": "null", "label_explanation": "The image shows a street intersection in Rio de Janeiro. There are a few people crossing the street, and a few cars parked on the side of the road. There is a building on the left side of the image, and a tree on the right side. The sky is clear and the sun is shining."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:51.696308+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:53.088330+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can easily pass through."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:51.976352+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:52.601406+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:36.611549+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:36:52.882085+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:52.395842+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:51.391176+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:53.302282+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:44.487335+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:52.186746+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:57.351101+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:08.685282+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:05.523515+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T15:37:10.217333+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:09.207757+00:00", "label": "partially_blocked", "label_explanation": "There is presence of features that might interfere in traffic but still allow vehicles to pass. There are larger puddles that could cause minor traffic disruptions but are still navigable."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:10.712230+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:09.507700+00:00", "label": "fallen_tree", "label_explanation": "The road is partially blocked due to a fallen tree. The tree has fallen across the road and is blocking one lane of traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:08.908739+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:10.503470+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:11.006259+00:00", "label": "null", "label_explanation": "The image shows a partially flooded road with a fallen tree blocking one lane of traffic. The other lane is still passable. The image is blurred due to water, focus issues, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:09.987173+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:04.793864+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:09.725790+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life. The road is partially blocked due to a fallen tree, but the other lane is still passable."}]}, {"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-04T15:35:36.094885+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "traffic_ease_vehicle", "landslide", "road_blockade_reason", "water_in_road", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:46.571738+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a traffic light at the intersection, and a street sign that says 'Rua Silva Freire'. There are several cars parked on the side of the road, and a few trees."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:41.071688+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:44.757233+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:46.046546+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:46.324923+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:45.066162+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:44.519768+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.601003+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:45.582065+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:44.268981+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:45.838992+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:45.365331+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-04T15:35:53.242416+00:00", "objects": ["fire", "landslide", "brt_lane", "image_condition", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_description", "water_in_road", "alert_category", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:36:53.549246+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:54.051384+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:49.075944+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:52.050552+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:52.768387+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:52.473633+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:53.771085+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:53.248013+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:54.266376+00:00", "label": "null", "label_explanation": "A red SUV is driving on a road. There is a fallen tree blocking part of the road. A person is walking on the sidewalk next to the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:52.260152+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:52.968785+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:48.130800+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:36:02.105392+00:00", "objects": ["fire", "alert_category", "building_collapse", "image_condition", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:06.098270+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:05.519585+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:05.737528+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:04.532137+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:05.240810+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:06.838926+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road and a few people walking around. The street is lined with trees and buildings."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:00.537194+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:06.612343+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:06.331217+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:04.739855+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:05.017071+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:01.238018+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T15:36:29.998386+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "image_description", "alert_category", "image_condition", "fire", "brt_lane", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:21.512177+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:22.010194+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:22.515744+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:17.199482+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:22.933790+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a traffic light at the intersection. There are cars on the road. There are trees on the side of the road. There are buildings in the background."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:21.809570+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:20.821088+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:22.217161+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:18.003323+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:21.323201+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:22.704030+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:21.112766+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T15:35:38.262595+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "brt_lane", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T15:36:45.647062+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:46.729934+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:47.354708+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:47.685142+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.097534+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:45.910039+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:41.053493+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:46.439281+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:46.136806+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:41.848511+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:47.937607+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete median. There are trees and buildings on either side of the road. The sky is clear and there is a lot of sunlight. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:45.360043+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T15:35:38.815696+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "image_description", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T15:36:48.083197+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:48.309380+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:41.914336+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:49.499258+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:49.916068+00:00", "label": "null", "label_explanation": "The image shows a wide road with a green building on the left and trees on the right. There are cars parked on the side of the road and a bus driving in the right lane. The road is clear and there are no signs of construction or accidents."}, {"object": "fire", "timestamp": "2024-02-04T15:36:49.229794+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:47.792826+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:48.816757+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:48.615612+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:49.017259+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:41.046880+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:49.720939+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:35:31.412082+00:00", "objects": ["fire", "alert_category", "traffic_ease_vehicle", "landslide", "brt_lane", "image_description", "water_in_road", "building_collapse", "image_condition", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:36:41.621817+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:46.952082+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:49.034140+00:00", "label": "moderate", "label_explanation": "There are larger puddles, but the road is still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:35.997943+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:46.250374+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-04T15:33:56.811045+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane on the left side. There are cars and buses driving on the road. The road is surrounded by buildings and trees. The weather is clear and sunny."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:49.605266+00:00", "label": "true", "label_explanation": "There are larger puddles, but the road is still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.449286+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:49.243662+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:48.152252+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:45.479920+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:48.810355+00:00", "label": "free", "label_explanation": "The road is clear and there are no blockades."}]}, {"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-04T15:36:21.076319+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:37:18.774433+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:17.388925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:19.942909+00:00", "label": "null", "label_explanation": "The image shows a tree-lined road with a clear sky. There are no cars on the road and the sidewalks are empty. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:17.598490+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T15:37:19.093962+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:19.303565+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:17.892587+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:13.407591+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:18.505080+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:19.599702+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:18.188776+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:14.108550+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}]}, {"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-04T15:36:18.462204+00:00", "objects": ["inside_tunnel", "alert_category", "traffic_ease_vehicle", "building_collapse", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:00.079673+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:04.696069+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a normal scene with people crossing the road and cars driving."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:05.401639+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:04.983111+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:05.672567+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:03.739577+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:04.274457+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:04.493747+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:03.980988+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T15:37:05.198270+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:00.784686+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:05.888216+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are people crossing the road, cars driving, and buildings in the background. The image is clear and there are no obstructions."}]}, {"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-04T15:36:32.336331+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "road_blockade_reason", "image_description", "building_collapse", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T15:37:21.476331+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:17.514893+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:22.119932+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:21.911631+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:34:28.581190+00:00", "label": "null", "label_explanation": "The image shows a wide road with a large tree on the left side. There is a white truck parked on the side of the road. The road is bordered by a sidewalk and trees on both sides. In the background, there is a building and a bridge."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:22.399905+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:21.692660+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:22.887840+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:21.193252+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:18.220504+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:23.099457+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:22.615853+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T15:36:25.587667+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "image_description", "image_condition", "alert_category", "landslide", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T15:37:07.011881+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:11.011959+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:10.213592+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:11.499630+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:10.509143+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:10.013455+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:06.304288+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:11.983636+00:00", "label": "null", "label_explanation": "The image is of a road with a clear sky. There are no cars on the road. The road is surrounded by trees and buildings."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:09.793966+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:10.802706+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:11.717030+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:11.283210+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}]}, {"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-04T15:36:26.818513+00:00", "objects": ["fire", "inside_tunnel", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "building_collapse", "road_blockade", "water_in_road", "road_blockade_reason", "image_condition"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:22.014062+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:16.461838+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:17.305261+00:00", "label": "false", "label_explanation": "The lane on the right side of the road is not a designated bus rapid transit (BRT) lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:22.778127+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a BRT lane on the left side. There are cars, buses, and bicycles on the road. There are also trees and buildings on either side of the road. The weather is clear and sunny."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:22.516539+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:21.541144+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:22.288894+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:21.799568+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:21.003381+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:20.785298+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:21.283188+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:20.514456+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T15:36:29.485136+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_description", "image_condition", "building_collapse", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:19.680008+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:20.281040+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:19.473357+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:14.971460+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:21.678040+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a portion of a road with a white car in the center. The road is surrounded by trees and buildings. The sky is clear and blue."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:19.189969+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:20.595181+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:21.149428+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:15.779293+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:20.020606+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:21.377904+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:20.880495+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}]}, {"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-04T15:36:16.269575+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "water_in_road", "brt_lane", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:37:13.933425+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees on either side of the road and buildings in the background. The road is not very busy and there are no visible hazards."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:13.649847+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:13.464632+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:12.738727+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:12.945294+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:11.758945+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:08.352394+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:12.042265+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:09.037206+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T15:37:13.238727+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:12.240481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:12.498216+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:36.217136+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:37:24.531312+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.149947+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:23.948855+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:24.221966+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:18.860108+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:23.359587+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:24.740748+00:00", "label": "null", "label_explanation": "A black SUV is driving on a paved road next to a body of water. There are trees and foliage on either side of the road, and a person is walking on the sidewalk on the right side of the road. The weather is clear and sunny."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.025355+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.441340+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.073540+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:23.722972+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.744584+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}]}, {"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-04T15:36:27.391164+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:31:21.505170+00:00", "label": "null", "label_explanation": "The image shows a tree that has fallen onto a road, blocking traffic. The tree is large and has fallen across the entire width of the road, making it impossible for vehicles to pass. There are no people or other objects visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:00.637313+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:05.238413+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:05.524750+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:01.352742+00:00", "label": "false", "label_explanation": "There are no signs or indications of a bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:05.737015+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:04.738630+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:37:05.949701+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:05.021637+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:04.528989+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:06.255528+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:06.453453+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:13.605747+00:00", "objects": ["image_condition", "landslide", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:12.171846+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:14.167103+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:12.964718+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:08.454475+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:37:13.671691+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:12.699089+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:13.462563+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:09.169164+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:12.454986+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:13.244432+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:14.450027+00:00", "label": "null", "label_explanation": "A photo of a road with a fallen tree. The road is partially blocked, and there is a gas station on the right side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:13.950507+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-04T15:36:00.824348+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "water_in_road", "road_blockade", "image_description", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:51.430945+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:50.237827+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.639142+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:47.357579+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:50.522697+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.723764+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:52.344254+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars, buses, and people crossing. There are buildings and trees on either side of the road. The road is partially blocked by a fallen tree."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.919262+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:51.142573+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:46.650924+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:52.138090+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.939363+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}]}, {"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-04T15:36:37.545827+00:00", "objects": ["brt_lane", "road_blockade_reason", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T15:37:23.723174+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:27.700784+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:27.113888+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:22.998857+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:27.947742+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:27.399848+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:28.912704+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:28.712294+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:28.210564+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:29.206054+00:00", "label": "null", "label_explanation": "The image shows a wide road with a concrete barrier separating the two lanes. Trees line the right side of the road, and buildings can be seen in the background. The road is clear of traffic and there are no visible hazards."}, {"object": "fire", "timestamp": "2024-02-04T15:37:28.428866+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:26.825353+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T10:53:03.463113+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:53:48.670351+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:53:43.601290+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:53:48.399836+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:53:48.181153+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:53:44.321765+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:53:47.963231+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:53:47.700806+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:53:47.407207+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T10:53:52.537759+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are no signs of accidents, fires, or other incidents. The road is dry and there is no visible water."}, {"object": "image_condition", "timestamp": "2024-02-04T10:53:47.175649+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:53:49.293803+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T10:53:49.495210+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:15.709869+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "alert_category", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:59.261964+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:02.946461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:04.925854+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:03.948172+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:03.184649+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:04.155110+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:04.648465+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:03.396444+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:59.921456+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T15:37:04.443971+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:03.675706+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:05.149240+00:00", "label": "null", "label_explanation": "The image shows a busy street in Rio de Janeiro. There are cars, buses, and people crossing the street. The buildings are tall and colorful. The street is lined with trees."}]}, {"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-04T15:36:43.662230+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "landslide", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:31:55.400544+00:00", "label": "null", "label_explanation": "The image shows a busy street scene in Rio de Janeiro. There are cars, buses, and people crossing the street. The buildings are tall and colorful. The sky is blue and there are some clouds. The image is clear and bright."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:23.438264+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.943798+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:19.330978+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.455247+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:21.252303+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:20.826209+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:20.339990+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.157105+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.736177+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:19.037845+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:21.762648+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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-04T15:36:35.371977+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "alert_category", "road_blockade", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:26.095821+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:21.711109+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:26.315640+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:24.693463+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It is sharp and focused, with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:24.912182+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:25.398723+00:00", "label": "water_puddle", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:26.604451+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There is soil and debris on the road, blocking traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:25.612227+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:25.142393+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:26.887243+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete barrier separating the two directions. There is a large amount of graffiti on the wall to the left of the road. Trees can be seen on both sides of the road, and buildings and mountains can be seen in the background. The image is clear and well-lit."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:20.998428+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:25.840158+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}]}, {"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-04T15:35:39.806434+00:00", "objects": ["road_blockade", "road_blockade_reason", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "alert_category", "inside_tunnel", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:33:56.797355+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:44.371065+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and there are no signs of traffic congestion."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:36.586977+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:33:58.617222+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:36:26.373130+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:33:59.710177+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:35.392744+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant enough to cause any traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-04T15:30:43.829951+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro. There are cars, motorcycles, and people crossing the street. The street is lined with trees and buildings."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:26.167535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:33:58.108518+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:35.659788+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:32.370674+00:00", "label": "poor", "label_explanation": "The image is slightly blurred but still clear enough to identify objects. There are no visible distortions or obstructions."}]}, {"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-04T15:36:28.952453+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:19.523560+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:14.530922+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:18.553106+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:18.054398+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:19.737483+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:15.219551+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:18.333391+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:19.029092+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:20.249341+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is not crowded and traffic is flowing smoothly."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:19.251448+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:18.756317+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:20.024602+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:31.197753+00:00", "objects": ["alert_category", "road_blockade_reason", "image_description", "brt_lane", "image_condition", "fire", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T15:37:20.477980+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:20.271845+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:21.716237+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars and motorcycles on the road, as well as people walking on the sidewalk. The buildings are tall and brightly colored. The sky is clear and the sun is shining."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:16.490139+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:19.491986+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:20.905512+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:19.704927+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:15.869023+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:21.394568+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:20.685887+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:21.178754+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:19.973333+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:04.618087+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:37:07.756278+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with cars parked on either side. There are a few small puddles on the road, but they are not significant enough to cause any traffic disruptions. The buildings on either side of the road are in good condition and there are no signs of any structural damage. The image is clear and there is no interference from any other objects."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:07.329991+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:06.353120+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:02.951408+00:00", "label": "false", "label_explanation": "There is no evidence of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:06.133427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:05.943599+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:07.125848+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:06.845103+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings in the image are intact and there are no signs of structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:06.635889+00:00", "label": "normal", "label_explanation": "The image does not show any major or minor issues that might affect city life. The road is clear, there are no blockades, and there is no evidence of any accidents or other incidents."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:05.719243+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The road, buildings, and vehicles are clearly visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:02.329827+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is an open-air thoroughfare with buildings and overpasses visible on either side."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:07.532931+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T15:36:40.145723+00:00", "objects": ["traffic_ease_vehicle", "road_blockade_reason", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:27.379909+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:26.473877+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:27.171369+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:27.589491+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:25.872001+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:23.101400+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:22.403180+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:26.686466+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:26.083863+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:27.793076+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several people walking on the sidewalk and a few cars parked on the side of the road. In the background, there is a building with a sign that says \"Escola\". The road is clear and there are no signs of any problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:26.291586+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:26.896547+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T15:36:38.707655+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:23.707824+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:28.998475+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:27.195745+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:27.876570+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:24.402047+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:28.301854+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:27.608417+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:28.090225+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:28.797805+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:29.276108+00:00", "label": "null", "label_explanation": "A wide road with a few cars and a motorcycle driving on it. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "fire", "timestamp": "2024-02-04T15:37:28.576028+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:27.398483+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T15:36:32.734031+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.575838+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:19.203289+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.504379+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:23.279246+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.384372+00:00", "label": "false", "label_explanation": "There are small puddles on the road. The puddles are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:23.481708+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:34:30.699629+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a bus driving in the foreground. There are cars parked on the side of the road and a few trees on either side. In the background, there is a building with a blue wall and a sign that says 'Vovo Maria Conga'. The sky is cloudy and there is a slight bend in the road to the right."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:22.798919+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:23.071079+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.121709+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:23.769500+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet, with small, manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:23.978632+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}]}, {"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-04T15:36:12.916836+00:00", "objects": ["image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:09.744056+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:11.828095+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road with a pedestrian crossing. There are cars parked on either side of the road and a few people crossing the street. The road is in good condition and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:10.220182+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:11.345548+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:09.940616+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:10.650692+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:06.332870+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:11.620574+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:11.148551+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:10.929988+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:10.444203+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:07.038041+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T15:35:58.769468+00:00", "objects": ["road_blockade_reason", "landslide", "inside_tunnel", "building_collapse", "image_condition", "fire", "road_blockade", "image_description", "alert_category", "traffic_ease_vehicle", "water_in_road", "brt_lane"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:54.452622+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:55.667448+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:50.166453+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:54.950894+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:53.760650+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:55.237101+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:54.247870+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:55.936743+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars, buses, and people crossing the street. There are trees and buildings on either side of the road. The sky is cloudy and there is a mountain in the background."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:54.739301+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:55.442047+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:53.975416+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:50.860360+00:00", "label": "false", "label_explanation": "The lane on the right side of the road is not a designated bus rapid transit (BRT) lane."}]}, {"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-04T15:35:50.561901+00:00", "objects": ["image_description", "building_collapse", "traffic_ease_vehicle", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "road_blockade_reason", "alert_category", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:49.306232+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road with a clear sky. There are cars parked on either side of the road and a few people walking. The road is in good condition and there are no visible signs of construction or other hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:48.189405+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.803198+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:49.084851+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.434371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:47.138539+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:40.747205+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.811362+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.699582+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.913931+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T15:36:48.596172+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:36.315293+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T14:37:49.147521+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "alert_category", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T14:38:33.691345+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T14:38:33.896931+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T14:38:33.196791+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T14:38:29.296390+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T14:38:32.102391+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T14:38:32.298115+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T14:38:34.111925+00:00", "label": "null", "label_explanation": "The image shows a tree-lined street with a row of parked cars on the right side of the road. On the left side of the road, a white car is driving in the opposite direction. There are no people visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T14:38:33.419137+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T14:38:32.989045+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T14:38:32.512714+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T14:38:28.589513+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T14:38:32.792597+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of 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-04T15:36:46.536446+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:38:00.141764+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:38:00.634111+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:55.910713+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:38:00.838696+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:38:01.140134+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:59.629801+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:56.542470+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:59.929510+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:38:01.326157+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:59.416046+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:38:00.412210+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T15:38:01.561288+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several buildings on either side of the street, and a few cars parked on the side of the road. The street is relatively narrow, and there are no sidewalks. The image is taken from a slightly elevated perspective, and the sky is clear."}]}, {"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-04T15:36:36.804116+00:00", "objects": ["landslide", "road_blockade", "alert_category", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:37:28.128401+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:26.605382+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:27.116515+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:26.828422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:26.321454+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:27.927150+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:26.043897+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:22.833787+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a sign indicating 'BRT'."}, {"object": "fire", "timestamp": "2024-02-04T15:37:27.628427+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:27.425629+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:22.014524+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:28.415542+00:00", "label": "null", "label_explanation": "The image shows a busy urban intersection with cars, buses, and people crossing the road. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The buildings in the background are tall and imposing, and the trees are lush and green. The sky is blue and there are a few clouds in the distance."}]}, {"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-04T15:36:28.273019+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "image_condition", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.131876+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:22.825332+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All the buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:18.868893+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:23.246411+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:23.733453+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a fallen tree blocking part of the road. There are cars on the road and a bus approaching the fallen tree. There are trees and buildings on either side of the road. The sky is clear with a few clouds. The image is clear and the colors are vibrant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.223812+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:21.719873+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:23.517882+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:21.918850+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:22.605485+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:22.338071+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:37:23.023755+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T15:35:54.619134+00:00", "objects": ["road_blockade", "inside_tunnel", "image_description", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:07.725691+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:03.756638+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:09.327593+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a yellow taxi driving on the left side of the road. There is a fallen tree blocking the road ahead. There are cars parked on the side of the road. There are buildings and trees on either side of the road. The sky is clear and sunny."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:08.340160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:08.857067+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T15:37:08.609726+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:08.139922+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:04.516283+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:07.236494+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:07.442405+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:07.919539+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:09.037041+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:40.374759+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:30.171514+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:31.376940+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:26.878848+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:31.871098+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation and trees on either side. There are cars parked on both sides of the road and a bus stop on the right side. The road is clear and there are no signs of any issues."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:29.956138+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:26.174791+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:30.948616+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:30.668319+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "fire", "timestamp": "2024-02-04T15:37:31.171070+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:31.660709+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:29.744579+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:30.453552+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:36.566624+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_condition", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:37:24.816255+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:23.112310+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.580076+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:25.121900+00:00", "label": "null", "label_explanation": "The image shows a busy urban street with cars, buses, and pedestrians. There are buildings and trees on either side of the street. The street is wet from rain, but there are no major puddles or flooding. The traffic is moving smoothly."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:19.194144+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:23.829660+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T15:37:24.300767+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:24.590231+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:19.902193+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:23.323432+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.884825+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:24.085699+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T15:36:27.969484+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:23.970301+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:19.595193+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.192145+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road, but it is small and insignificant and does not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.963746+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:23.746836+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All the buildings in the image are intact."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.484566+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.687194+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:23.481201+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.893615+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:24.194583+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:31:25.517913+00:00", "label": "null", "label_explanation": "The image shows a busy urban street with cars, buses, and people crossing the road. There is a fallen tree and a flooded area blocking part of the road, causing traffic disruption. In the background, there are tall buildings and lush trees."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:24.481543+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:40.268440+00:00", "objects": ["inside_tunnel", "landslide", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition", "image_description", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:21.687770+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:27.546728+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:22.525134+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:26.342715+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:25.854055+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:27.348483+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-04T15:37:27.120230+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:25.641466+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:27.845201+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete barrier in the center. There are cars driving in both directions. The road is dry and there are no visible obstructions. The image is clear and there are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:26.869279+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:26.131723+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:26.625849+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}] \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index 95e99fb..5477e99 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2008,4 +2008,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "bc97bd14f624e41e58a1f3a9c12be68849ad251136b7f328199d16a3233fed5c" +content-hash = "69f3cecbac03a758c87cd0c84c6d8a0a65aa6f8d10b8d9db9dd82cf2f434333b" diff --git a/pyproject.toml b/pyproject.toml index 5245764..969867c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ streamlit-folium = "^0.15.1" streamlit-extras = "^0.3.5" streamlit-autorefresh = "^1.0.1" pillow = "^10.1.0" -streamlit-aggrid = "^0.3.4.post3" +streamlit-aggrid = "0.3.4.post3" [build-system] From d0920b3d8a0ed1bc303045fb879219fea1651a75 Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 12:47:45 -0300 Subject: [PATCH 24/64] chore: update aggrid --- app/utils/utils.py | 7 ++++--- "app/\360\237\223\243 Home.py" | 9 +++++++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index 484d7cc..069dde6 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,7 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode from utils.api import APIVisionAI vision_api = APIVisionAI( @@ -261,11 +261,12 @@ def get_agrid_table(table): table, gridOptions=grid_options, columns_auto_size_mode=ColumnsAutoSizeMode.FIT_CONTENTS, - # update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, # noqa + update_mode=GridUpdateMode.MODEL_CHANGED + | GridUpdateMode.COLUMN_RESIZED, # noqa # fit_columns_on_grid_load=True # custom_css=custom_css, # allow_unsafe_jscode=True, - # height=500, + # height="600px", # theme="streamlit_whitegrid", # width="100%", ) diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 4bbe1ce..45e0ae5 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -3,8 +3,13 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import (display_camera_details, get_agrid_table, get_cameras, - get_filted_cameras_objects, treat_data) +from utils.utils import ( + display_camera_details, + get_agrid_table, + get_cameras, + get_filted_cameras_objects, + treat_data, +) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) From 374cdb2dff1a0bc11285208ca1098c0a33d354cf Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 20:48:06 -0300 Subject: [PATCH 25/64] chore: add map --- app/utils/utils.py | 42 ++++++------ "app/\360\237\223\243 Home.py" | 116 +++++++++------------------------ data/temp/mock_api_data.json | 2 +- 3 files changed, 52 insertions(+), 108 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index 069dde6..c168fcc 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -15,7 +15,7 @@ ) -@st.cache_data(ttl=60 * 10, persist=False) +@st.cache_data(ttl=60 * 2, persist=False) def get_cameras( only_active=True, use_mock_data=False, @@ -118,16 +118,9 @@ def get_filted_cameras_objects( cameras_identifications_merged = pd.merge( cameras_filter, cameras_identifications_filter, on="id" ) - cameras_identifications_merged = cameras_identifications_merged[ - [ - "bairro", - "snapshot_timestamp", - "timestamp", - "object", - "label", - "label_explanation", - ] - ].sort_values(by=["timestamp", "label"], ascending=False) + cameras_identifications_merged = cameras_identifications_merged.sort_values( # noqa + by=["timestamp", "label"], ascending=False + ) return ( cameras_identifications_merged, @@ -157,9 +150,18 @@ def display_camera_details(row, cameras_identifications): def get_icon_color(label: Union[bool, None]): - if label is True: + if label in [ + "major", + "totally_blocked", + "impossible", + "impossibe", + "poor", + "true", + ]: # noqa return "red" - elif label is False: + elif label in ["minor", "partially_blocked", "difficult"]: + return "orange" + elif label in ["normal", "free", "easy", "moderate", "clean", "false"]: return "green" else: return "gray" @@ -168,31 +170,30 @@ def get_icon_color(label: Union[bool, None]): def create_map(chart_data, location=None): chart_data = chart_data.fillna("") # center map on the mean of the coordinates - if location is not None: - m = folium.Map(location=location, zoom_start=18) + m = folium.Map(location=location, zoom_start=16) elif len(chart_data) > 0: m = folium.Map( location=[ chart_data["latitude"].mean(), chart_data["longitude"].mean(), ], # noqa - zoom_start=11, + zoom_start=10.0, ) else: - m = folium.Map(location=[-22.917690, -43.413861], zoom_start=11) + m = folium.Map(location=[-22.917690, -43.413861], zoom_start=10) for _, row in chart_data.iterrows(): icon_color = get_icon_color(row["label"]) folium.Marker( location=[row["latitude"], row["longitude"]], # Adicionar id_camera ao tooltip - tooltip=f"ID: {row['id_camera']}", + tooltip=f"ID: {row['id']}", # Alterar a cor do ícone de acordo com o status icon=folium.features.DivIcon( icon_size=(15, 15), icon_anchor=(7, 7), - html=f'
', # noqa + html=f'
', # noqa ), ).add_to(m) return m @@ -237,7 +238,6 @@ def get_agrid_table(table): gb = GridOptionsBuilder.from_dataframe(table) # noqa gb.configure_column("id", header_name="ID Camera", pinned="left") - # gb.configure_column("emoji", header_name="", pinned="left") gb.configure_column("object", header_name="Identificador") gb.configure_column("label", header_name="Label") gb.configure_column("timestamp", header_name="Data Identificação") @@ -254,6 +254,7 @@ def get_agrid_table(table): gb.configure_selection("single", use_checkbox=False) gb.configure_side_bar() + gb.configure_grid_options(enableCellTextSelection=True) gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa grid_options = gb.build() @@ -267,7 +268,6 @@ def get_agrid_table(table): # custom_css=custom_css, # allow_unsafe_jscode=True, # height="600px", - # theme="streamlit_whitegrid", # width="100%", ) diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 45e0ae5..2127dba 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -4,6 +4,7 @@ import streamlit as st from streamlit_folium import st_folium # noqa from utils.utils import ( + create_map, display_camera_details, get_agrid_table, get_cameras, @@ -71,16 +72,35 @@ cameras_attr, cameras_identifications, object_filter, label_filter ) + # make two cols col1, col2 = st.columns(2) +folium_map = create_map(cameras_identifications_merged.reset_index()) with col1: - selected_row = get_agrid_table(cameras_identifications_merged.reset_index()) # noqa + selected_cols = [ + "bairro", + "snapshot_timestamp", + "timestamp", + "object", + "label", + "label_explanation", + ] + selected_row = get_agrid_table( + cameras_identifications_merged[selected_cols].reset_index() + ) # 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 + ) + display_camera_details( row=row, cameras_identifications=cameras_identifications ) # noqa @@ -92,88 +112,12 @@ """ ) - # for camera_id in cameras_identifications_filter.index: - # row = cameras_filter.loc[camera_id] - # display_camera_details( - # row=row, cameras_identifications=cameras_identifications - # ) - # time.sleep(2) - -# st.markdown( -# f""" - -# ---- - -# ### Status snapshots: -# - **Ultima atualização**: {str(last_update)} -# - Total: {len(chart_data)} -# - Sucessos: {len(data_with_image)} -# - Falhas:{len(chart_data) - len(data_with_image)} - -# ---- - -# ### Tabela de Status de Alagamentos -# """, -# ) - -# selected_row = get_agrid_table(data_with_image) -# st.markdown("----") -# st.markdown("### Mapa de Câmeras") -# st.markdown("Selecione uma Câmera na tabela visualizar no mapa.") - -# if selected_row: -# selected_camera_id = selected_row[0]["id_camera"] -# camera_data = chart_data[chart_data["id_camera"] == selected_camera_id] -# if not camera_data.empty: -# camera_location = [ -# camera_data.iloc[0]["latitude"], -# camera_data.iloc[0]["longitude"], -# ] -# folium_map = create_map(chart_data, location=camera_location) -# map_data = st_folium(folium_map, key="fig1", height=600, width=1200) - -# image_url = camera_data.iloc[0]["image_url"] -# st.markdown("----") -# st.markdown("### 📷 Câmera snapshot") -# st.markdown("Selecione uma Câmera na tabela visualizar o snapshot.") - -# if image_url is None: -# st.markdown("Falha ao capturar o snapshot da câmera.") -# else: -# st.image(image_url) - - -# else: -# map_data = st_folium(folium_map, key="fig1", height=600, width=1200) - -# st.markdown("----") -# st.markdown("### 📷 Câmera snapshot") -# st.markdown("Selecione uma Câmera na tabela visualizar o snapshot.") - -# # select chart_data obj based on last_object_clicked coordinates -# obj_coord = map_data["last_object_clicked"] - - -# if obj_coord is None: -# st.write("Clique no marcador para ver mais detalhes.") -# else: -# selected_data = chart_data[ -# (chart_data["latitude"] == obj_coord["lat"]) -# & (chart_data["longitude"] == obj_coord["lng"]) -# ] - -# image_url = selected_data["image_url"].values[0] -# selected_data = ( -# selected_data[["id_camera", "url_camera"]] -# .rename( -# columns={ -# "id_camera": "ID", -# "url_camera": "🎥 Feed", -# } -# ) -# .T -# ) - -# selected_data.columns = ["Informações"] - -# selected_data +with col1: + st_folium(folium_map, key="fig1", height=600, width=800) + + # for camera_id in cameras_identifications_filter.index: + # row = cameras_filter.loc[camera_id] + # display_camera_details( + # row=row, cameras_identifications=cameras_identifications + # ) + # time.sleep(2) diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index 6d7cb92..bb40b57 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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-04T15:29:43.541422+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:30:49.277966+00:00", "label": "easy", "label_explanation": "The road is clear with no water."}, {"object": "image_condition", "timestamp": "2024-02-04T15:30:47.485974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:30:42.166598+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:30:49.788579+00:00", "label": "null", "label_explanation": "A screenshot of a traffic camera. In the foreground, there is a silver SUV driving on the right side of the road. There is a white car driving in the opposite direction. There are trees and buildings on either side of the road. The sky is clear and blue."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:30:48.058422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:30:44.293021+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T15:30:49.066642+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:30:48.359263+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:30:47.774547+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:30:48.561862+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:30:48.764847+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:30:49.552469+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:35:34.170215+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "road_blockade", "image_description", "image_condition", "water_in_road", "landslide", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T15:36:40.856794+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:48.229696+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.664477+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.823821+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-04T15:36:48.610314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.941513+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.416005+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:33:53.022194+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The buildings in the background are tall and brightly colored. The sky is clear and sunny."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.861264+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:47.139726+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:49.039484+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:34.240861+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:35:43.456358+00:00", "objects": ["building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "fire", "water_in_road", "image_description", "image_condition", "landslide", "road_blockade_reason", "inside_tunnel", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.107661+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:46.378702+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:46.879556+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:47.674860+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.405559+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.172784+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:48.090117+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian bridge crossing over it. There is a silver car driving on the road and a person walking on the pedestrian bridge. The road is lined with trees and buildings."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:45.912939+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:47.879473+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:46.662832+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.188226+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.081735+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T15:35:30.301667+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason", "fire", "image_condition", "image_description", "brt_lane", "landslide", "water_in_road", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:36:42.803808+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:44.156938+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet, with small, insignificant puddles. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:43.332384+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.434778+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:43.093987+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:36:43.905766+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:42.311061+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:44.733241+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bus lane on the left side. There are trees and buildings on both sides of the road. The road is clear with no visible obstructions. The image is clear and has good visibility."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.190732+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:44.425757+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:42.549602+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:43.683446+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T15:35:40.605396+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:41.949569+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:47.608407+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow freely."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.021495+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.241369+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:42.728131+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:46.261525+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:33:44.615683+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. There are cars on the road, a bus, and a motorcycle. The road is partially blocked and there is a traffic jam. The image is clear and there are no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:46.772020+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.036955+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:45.826086+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:47.856454+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:46.542765+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T15:36:03.378157+00:00", "objects": ["image_description", "road_blockade_reason", "alert_category", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:51.801972+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The road is clear and there are no signs of any issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.303370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:50.514487+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:49.574975+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:50.796729+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:49.793797+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:46.547170+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.090837+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.288310+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can pass easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:45.806174+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.008198+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:51.503118+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:35:59.295201+00:00", "objects": ["traffic_ease_vehicle", "fire", "image_condition", "road_blockade_reason", "image_description", "water_in_road", "alert_category", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:10.301122+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T15:37:10.015840+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:08.516244+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:09.317121+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:10.815609+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a gas station on the right side. There is a car driving on the left side of the road. The road is clear with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:08.797651+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:09.517163+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:09.011613+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:05.509804+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:09.803707+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:04.725956+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:10.526744+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:30:08.353407+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:31:15.003328+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:31:09.915778+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:31:15.502645+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian crossing. There are trees and buildings on either side of the road. The road is clear with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:31:13.305789+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:31:13.673115+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:31:09.137574+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:31:14.232149+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T15:31:14.762479+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:31:13.958463+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:31:14.498542+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:31:13.008964+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:31:15.235095+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:30:17.218213+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "alert_category", "fire", "landslide", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:31:20.400806+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:31:16.790688+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:31:21.543403+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:31:20.630366+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:31:17.529609+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T15:31:21.330624+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T15:31:21.744398+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:31:22.250241+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:31:21.043837+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:31:22.478112+00:00", "label": "null", "label_explanation": "The image shows a wide road with a yellow taxi driving in the right lane. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:31:22.020117+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:31:20.846394+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:28.515289+00:00", "objects": ["fire", "road_blockade_reason", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "alert_category", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:22.132072+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:21.421551+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:21.143316+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:17.019167+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:22.337920+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow smoothly."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:22.822557+00:00", "label": "null", "label_explanation": "A screenshot of a traffic camera. The camera is mounted on a street corner and is pointed down at the intersection. There is a motorcyclist stopped at the intersection, waiting for the light to change. There are no other cars in the intersection. The street is lined with trees and buildings."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:20.938770+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:17.733571+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:21.628452+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:21.868319+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:20.655819+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:22.549798+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:37.538596+00:00", "objects": ["image_condition", "water_in_road", "building_collapse", "fire", "image_description", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "brt_lane", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:29.600381+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:29.808141+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:30.781227+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:37:30.990247+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:31.706154+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are people walking on the street, cars driving, and street vendors selling goods. The street is lined with trees and buildings."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:30.293417+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:30.501534+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a normal scene with people walking, cars driving, and street vendors."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:25.977941+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:31.270294+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:31.489137+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:26.679313+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:30.076141+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:41.613869+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "inside_tunnel", "water_in_road", "fire", "brt_lane", "building_collapse", "image_description", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:32.532209+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow normally."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:30.941916+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:31.636483+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:27.458060+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:31.153089+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T15:37:32.266461+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:28.076366+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:32.059387+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:25:32.910392+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. The tree is large and has fallen across the road, blocking both lanes of traffic. There is a car stopped behind the tree, and a person is walking on the sidewalk next to the tree."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:32.754943+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:31.362863+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:31.841066+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T15:36:28.147525+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:12.105161+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:13.809052+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:08.199518+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:37:13.585056+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:12.380390+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:14.474166+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. There are no cars on the road and the sidewalks are empty. The buildings are tall and mostly made of concrete. The sky is blue and there are some clouds in the distance."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:13.087404+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:12.601039+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:13.314246+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:08.901254+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:14.079605+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:12.808920+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:55.798563+00:00", "objects": ["building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "image_description", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:51.084039+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:51.774723+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:46.247841+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.391656+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.668187+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:51.988887+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There are no signs of water, landslides, fires, or building collapses. The image quality is good and there are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.300636+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:50.892994+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.498167+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:47.005678+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:49.980017+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:50.197573+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T15:35:43.401836+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "brt_lane", "road_blockade", "fire", "image_description", "water_in_road", "image_condition", "landslide", "building_collapse", "traffic_ease_vehicle", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:30.840798+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:44.468587+00:00", "label": "water_puddle", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road and is causing a traffic jam."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:37.420603+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:43.968518+00:00", "label": "partially_blocked", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road and is causing a traffic jam."}, {"object": "fire", "timestamp": "2024-02-04T15:36:45.332786+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:46.173439+00:00", "label": "null", "label_explanation": "A screenshot of a road with a canal on the left side. The road is partially flooded and a motorcyclist is riding on the right side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:30.533011+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road and is causing a traffic jam."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:29.729399+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:45.940059+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:44.980856+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:45.614379+00:00", "label": "difficult", "label_explanation": "There is a significant amount of water on the road. The water is covering a large portion of the road and is causing a traffic jam."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:44.686173+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T15:35:45.359926+00:00", "objects": ["building_collapse", "road_blockade", "water_in_road", "fire", "traffic_ease_vehicle", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:50.099306+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:49.394304+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:49.187219+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:36:50.300302+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:50.565785+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:48.974064+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:49.873937+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:45.965158+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:45.067873+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:50.992049+00:00", "label": "null", "label_explanation": "A wide road with a pedestrian crossing. There is a tree on the left side of the road and a person crossing the road. The road is clear with no visible obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:50.782111+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:49.674546+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-04T15:36:44.368388+00:00", "objects": ["road_blockade", "image_description", "road_blockade_reason", "alert_category", "landslide", "image_condition", "fire", "building_collapse", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:31.147458+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:32.673963+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There are cars, buses, and people crossing the road. The road is partially blocked by a fallen tree."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:31.347227+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:31.564747+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:32.454796+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:30.648068+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:32.054180+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:31.831810+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:32.232213+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:30.865319+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:27.265720+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:27.948044+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T15:36:41.686853+00:00", "objects": ["inside_tunnel", "road_blockade", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:26.486686+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:30.563827+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:27.200723+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:30.286341+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:31.473038+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:30.768532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:30.985967+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:31.261965+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:31.682546+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:30.076300+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:32.185917+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection in Rio de Janeiro. There are a few cars on the road, but traffic is light. The buildings along the road are mostly residential and commercial, and there are a few trees on the side of the road. The weather is clear and sunny."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:31.893078+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:31.147568+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "building_collapse", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:27.988308+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:29.019631+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:29.298477+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:28.488733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:23.476490+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:27.773502+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:28.281251+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:24.189198+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T15:37:28.769379+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:27.274713+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:29.566883+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are trees and buildings in the background. The traffic light is green for cars going straight and yellow for cars turning left. There is a bus in the bus lane and several cars on the road. The road is dry and there are no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:27.486551+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}]}, {"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-04T15:35:25.301390+00:00", "objects": ["image_description", "road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "brt_lane", "inside_tunnel", "image_condition", "building_collapse", "fire"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:45.948671+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, landslides, fires, or other disruptions. The road is dry and there are no signs of water accumulation. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:44.269296+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:44.757058+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, landslides, fires, or other disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:44.043760+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:44.517241+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:45.451852+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:45.669837+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:40.748170+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:31.064897+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:43.838495+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:44.981843+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:36:45.260000+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T15:36:33.911347+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:49.560327+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:48.782098+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:45.251137+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:48.272712+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:50.262577+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The buildings in the background are tall and brightly colored. The sky is clear and blue."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:48.058348+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:49.975447+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:49.068082+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:44.555779+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:49.276468+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:49.768650+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:48.556681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:19.064626+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:37:13.148970+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:12.692679+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:11.236445+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:12.233656+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:11.963729+00:00", "label": "water_puddle", "label_explanation": "There are larger puddles, but the road is still passable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:12.440112+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:11.725734+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is free."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:13.346390+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars, buses, and people on the street. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:12.935188+00:00", "label": "moderate", "label_explanation": "There are larger puddles, but the road is still passable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:11.522287+00:00", "label": "true", "label_explanation": "There are larger puddles, but the road is still passable for most vehicles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:07.729240+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:08.357680+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-04T15:35:40.884063+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "image_condition", "building_collapse", "road_blockade", "alert_category", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:33:58.583144+00:00", "label": "null", "label_explanation": "A wide road with cars parked on the side. Trees can be seen on both sides of the road. There is a building with blue and purple stripes on one side of the road. The road is dry and there are no visible signs of water."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:46.033658+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:46.733743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:50.020814+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:51.218297+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.519829+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:50.949936+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:10.619136+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.646453+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:50.237561+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.435241+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.731951+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:54.537968+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:37:04.451703+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a slight curve to the left. The tunnel is well-lit and there are no visible obstructions. There is a fallen tree blocking the road, making it impassable for vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:03.385828+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:37:00.060356+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:03.701229+00:00", "label": "totally_blocked", "label_explanation": "The fallen tree is blocking the road, making it impassable for vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:34:02.941666+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:03.928788+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:01.044833+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:01.951033+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:03.062940+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:59.626786+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a slight curve to the left. The tunnel is well-lit and there are no visible obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:59.861332+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:01.528182+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T15:36:07.325399+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:05.114747+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:05.910539+00:00", "label": "null", "label_explanation": "The image shows a wide road with cars driving in both directions. There are trees and buildings on either side of the road. The weather is clear and sunny."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:04.407493+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:03.647961+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:03.935668+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:05.670436+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:05.320758+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:00.398802+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:59.711530+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:04.896893+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:04.198921+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:04.613724+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-04T15:36:10.117040+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:06.596727+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:01.285401+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:07.024199+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road, a few people walking around, and a bus driving down the street. The street is lined with trees, and there are buildings in the background."}, {"object": "fire", "timestamp": "2024-02-04T15:37:06.321693+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:01.931136+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:06.116853+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:05.115764+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:05.884989+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:05.403052+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:04.900133+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:06.822778+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:05.663910+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}]}, {"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-04T15:36:06.198517+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.639972+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.559249+00:00", "label": "easy", "label_explanation": "The road is clear with no water."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:50.155144+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:51.770053+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:52.049867+00:00", "label": "null", "label_explanation": "The image shows a street corner with a few parked cars. There are trees and buildings on either side of the street. The street is made of asphalt and is in good condition. There are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.354302+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:51.057835+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.345932+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:50.851535+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:46.571389+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:49.868792+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:45.911369+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:35:35.539322+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "building_collapse", "inside_tunnel", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "fire", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T15:36:43.745220+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:44.009399+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:43.540160+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:44.657791+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:35.940310+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:36.857374+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:45.707430+00:00", "label": "null", "label_explanation": "A cyclist is riding on a bike lane next to a busy road. There are cars parked on the side of the road and a few trees in the background. The cyclist is wearing a helmet and casual clothes. The road is clear and there are no signs of accidents or other disruptions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:45.442700+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:44.442191+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no signs of accidents, fires, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:45.229032+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water or other obstructions. Vehicles can pass through the area without difficulty."}, {"object": "fire", "timestamp": "2024-02-04T15:36:44.934901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:44.232571+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:46.212784+00:00", "objects": ["traffic_ease_vehicle", "image_description", "image_condition", "brt_lane", "alert_category", "inside_tunnel", "water_in_road", "road_blockade_reason", "fire", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.372968+00:00", "label": "easy", "label_explanation": "The road is dry with only a few small puddles. The road is easily passable for vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:48.857360+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are cars parked on either side of the road and a few people crossing the street. The buildings are mostly commercial with a few residential buildings mixed in. The weather is clear and sunny."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.487413+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and there are no visible obstructions or distortions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.296885+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no signs or markings indicating that the lane is reserved for buses."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.688189+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The road is clear and there are no signs of any obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.677257+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with buildings and cars on either side."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.820724+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road is dry with only a few small puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.418331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:48.129885+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:48.582877+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no sign of soil, rocks, or debris on or near the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.881272+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.112985+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any obstructions."}]}, {"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-04T15:36:10.931206+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "landslide", "road_blockade"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:10.219343+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:13.750277+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:15.515014+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:10.925707+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:14.522968+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:16.055632+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few small puddles. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:15.023375+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:14.063256+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:15.279621+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:14.742420+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:15.737100+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:14.323163+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:28.229975+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "road_blockade", "image_description", "traffic_ease_vehicle", "inside_tunnel", "fire", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:36:48.329879+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.609926+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.071654+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.322078+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:43.541901+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:36.933145+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:46.820646+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:29:48.693134+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a bus driving on the road, and there are cars parked on the side of the road. There are also people walking on the sidewalk. The buildings are tall and brightly colored. The sky is blue and there are some clouds. The image is clear and bright."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.132073+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:30.527434+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.841869+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.595976+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T15:36:35.308810+00:00", "objects": ["image_condition", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:23.124059+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:23.592349+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:19.531023+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:24.010018+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a normal scene with no minor or major issues."}, {"object": "fire", "timestamp": "2024-02-04T15:37:24.497549+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.819773+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:24.836085+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface. Vehicles can pass through without difficulty."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:20.234402+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:25.095966+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:23.325613+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:25.307645+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There are trees and buildings on either side of the road. The traffic lights are green in all directions. There are a few cars and pedestrians at the intersection. The weather is clear and sunny."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:24.292013+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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-04T15:35:45.163369+00:00", "objects": ["alert_category", "landslide", "brt_lane", "image_condition", "inside_tunnel", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T15:36:43.856671+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:45.009688+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:36.307977+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:42.782815+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:35.386608+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:43.366664+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:43.128040+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:36:44.387922+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:43.657805+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:44.151374+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:44.689626+00:00", "label": "easy", "label_explanation": "The road is completely dry with no puddles."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:45.335707+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gray metal fence on the left side and a yellow taxi driving on the right side. There are trees and buildings in the background."}]}, {"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-04T15:36:28.300890+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "fire", "brt_lane", "image_description", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:14.808562+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:16.713820+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:15.018889+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:15.290331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:16.226927+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:11.924672+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:17.035196+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with multiple lanes of traffic separated by a central median. Trees line both sides of the avenue, and buildings can be seen in the background. The image is clear and there are no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:15.999225+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:16.516884+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:15.790555+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:11.210597+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:15.514112+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with 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-04T15:36:35.893668+00:00", "objects": ["road_blockade", "image_condition", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "image_description", "brt_lane", "fire", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:27.032315+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:26.551148+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:28.337781+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:28.158663+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:26.765360+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:27.247221+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:28.555293+00:00", "label": "null", "label_explanation": "The image shows a street scene with a black car driving on the right side of the road. There are trees and buildings on either side of the road. The sky is clear and there are no visible signs of rain. The image is clear and there are no visible obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:23.760168+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T15:37:27.948728+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:27.667459+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:27.466442+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:23.067959+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T14:36:58.323835+00:00", "objects": ["landslide", "road_blockade", "alert_category", "building_collapse", "water_in_road", "brt_lane", "image_condition", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T14:37:56.590211+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T14:37:54.987224+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T14:37:55.568950+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T14:37:55.783154+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T14:37:54.693661+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T14:37:51.203696+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T14:37:54.486912+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T14:37:56.074305+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T14:37:00.452927+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with cars driving in both directions. There are trees and buildings on either side of the road. The traffic lights are green in both directions. The road is dry and there are no signs of construction or accidents. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T14:37:56.285879+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through without difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T14:37:55.296782+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T14:37:50.181662+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:35:32.785925+00:00", "objects": ["road_blockade", "fire", "building_collapse", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "traffic_ease_vehicle", "image_description", "road_blockade_reason", "alert_category", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:36:45.360084+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}, {"object": "fire", "timestamp": "2024-02-04T15:36:46.328064+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:46.128122+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:44.756815+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:45.065537+00:00", "label": "true", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:36.323954+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:37.167198+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:46.565917+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:47.113676+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. There is a car accident on the right side of the road. The road is partially blocked and there is a water puddle on the left side of the road. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:45.643872+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:45.865475+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:46.856217+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}]}, {"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-04T15:36:34.091937+00:00", "objects": ["fire", "image_description", "alert_category", "landslide", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:27.268575+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:27.891466+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gray car driving in the center. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:26.771896+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:27.685415+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:22.479537+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:25.868477+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:26.994886+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:26.086629+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:23.090600+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:26.558358+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:27.478271+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:26.298819+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:27.465088+00:00", "objects": ["landslide", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:36:48.374670+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.472282+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.002712+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.102812+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.837318+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.296164+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.569170+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.247265+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.692680+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:46.796793+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:48.607321+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a fallen tree on the side. The tree is blocking part of the road, but there is still room for vehicles to pass. There are no people or other objects visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.532939+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-04T15:35:26.748582+00:00", "objects": ["image_description", "road_blockade", "fire", "traffic_ease_vehicle", "landslide", "image_condition", "inside_tunnel", "water_in_road", "brt_lane", "road_blockade_reason", "building_collapse", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:33:55.040806+00:00", "label": "null", "label_explanation": "The image is of a red car driving on a road. The car is in the center of the image and is surrounded by trees. The road is bordered by a white line. The sky is blue and there are some clouds in the distance."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.099519+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:36:48.020878+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.453596+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:48.806220+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.597239+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.414865+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:46.829080+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:38.033938+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.313286+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.744575+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.517426+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or hazards."}]}, {"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-04T15:35:24.908695+00:00", "objects": ["road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "image_description", "building_collapse", "image_condition", "fire", "brt_lane", "water_in_road", "alert_category", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.557732+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.295608+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:46.522930+00:00", "label": "easy", "label_explanation": "The road is clear, with no water or puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:32.721156+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:33:43.351090+00:00", "label": "null", "label_explanation": "The image shows a road with cars parked on the side. The road is clear with no visible obstructions or signs of accidents or hazards. The image quality is good with clear visibility."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.980946+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.796455+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:54.488487+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:33.549685+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:47.006802+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.778211+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:27.427523+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:33:38.185613+00:00", "objects": ["image_description", "inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:34:45.441754+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road scene with trees on the left side and buildings on the right side. There is a bus driving on the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:34:39.929171+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:34:44.962143+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:34:44.526467+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:34:44.756595+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:34:40.547468+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:34:43.351324+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:34:45.230273+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:34:43.858327+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:34:44.044656+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:34:44.256696+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:34:43.552725+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T15:36:24.026751+00:00", "objects": ["road_blockade_reason", "landslide", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:22.615180+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:23.824463+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:24.030211+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a red car driving through the intersection, and a cyclist is riding on the right side of the road. There are several people walking on the sidewalks, and there are a few trees and buildings in the background. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.405356+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:23.522675+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:21.935496+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:23.325259+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:22.820963+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:23.072286+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.111214+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:19.313235+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.525504+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:35:48.179745+00:00", "objects": ["building_collapse", "road_blockade_reason", "alert_category", "fire", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "image_description", "inside_tunnel", "traffic_ease_vehicle"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:49.358250+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:48.852812+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:49.138598+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T15:36:49.561883+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:50.058654+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:48.589115+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:48.374156+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:45.066685+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:48.157598+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:50.264319+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees and buildings on either side of the road. The road is relatively busy, with cars and buses traveling in both directions. There are no visible signs of construction or accidents. The image is clear and easy to see."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:41.618388+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:49.757132+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through."}]}, {"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-04T15:35:35.381147+00:00", "objects": ["image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:53.575226+00:00", "label": "null", "label_explanation": "The image shows a street intersection in Rio de Janeiro. There are a few people crossing the street, and a few cars parked on the side of the road. There is a building on the left side of the image, and a tree on the right side. The sky is clear and the sun is shining."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:51.696308+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:53.088330+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can easily pass through."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:51.976352+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:52.601406+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:36.611549+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:36:52.882085+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:52.395842+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:51.391176+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:53.302282+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:44.487335+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:52.186746+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:35:57.351101+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:08.685282+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:05.523515+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T15:37:10.217333+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:09.207757+00:00", "label": "partially_blocked", "label_explanation": "There is presence of features that might interfere in traffic but still allow vehicles to pass. There are larger puddles that could cause minor traffic disruptions but are still navigable."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:10.712230+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:09.507700+00:00", "label": "fallen_tree", "label_explanation": "The road is partially blocked due to a fallen tree. The tree has fallen across the road and is blocking one lane of traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:08.908739+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:10.503470+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:11.006259+00:00", "label": "null", "label_explanation": "The image shows a partially flooded road with a fallen tree blocking one lane of traffic. The other lane is still passable. The image is blurred due to water, focus issues, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:09.987173+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:04.793864+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:09.725790+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life. The road is partially blocked due to a fallen tree, but the other lane is still passable."}]}, {"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-04T15:35:36.094885+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "traffic_ease_vehicle", "landslide", "road_blockade_reason", "water_in_road", "inside_tunnel", "building_collapse", "image_condition", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:46.571738+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a traffic light at the intersection, and a street sign that says 'Rua Silva Freire'. There are several cars parked on the side of the road, and a few trees."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:41.071688+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:44.757233+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:46.046546+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:46.324923+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:45.066162+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:44.519768+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:37.601003+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:45.582065+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:44.268981+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:45.838992+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:45.365331+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-04T15:35:53.242416+00:00", "objects": ["fire", "landslide", "brt_lane", "image_condition", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_description", "water_in_road", "alert_category", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:36:53.549246+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:54.051384+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:49.075944+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:52.050552+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:52.768387+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:52.473633+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:53.771085+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:53.248013+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:54.266376+00:00", "label": "null", "label_explanation": "A red SUV is driving on a road. There is a fallen tree blocking part of the road. A person is walking on the sidewalk next to the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:52.260152+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:52.968785+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:48.130800+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T15:36:02.105392+00:00", "objects": ["fire", "alert_category", "building_collapse", "image_condition", "road_blockade_reason", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:06.098270+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:05.519585+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:05.737528+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:04.532137+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:05.240810+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:06.838926+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road and a few people walking around. The street is lined with trees and buildings."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:00.537194+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:06.612343+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:06.331217+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:04.739855+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:05.017071+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:01.238018+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T15:36:29.998386+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "image_description", "alert_category", "image_condition", "fire", "brt_lane", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:21.512177+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:22.010194+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:22.515744+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:17.199482+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:22.933790+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a traffic light at the intersection. There are cars on the road. There are trees on the side of the road. There are buildings in the background."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:21.809570+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:20.821088+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:22.217161+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:18.003323+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:21.323201+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:22.704030+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:21.112766+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T15:35:38.262595+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "brt_lane", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T15:36:45.647062+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:46.729934+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:47.354708+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:47.685142+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:36:47.097534+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:45.910039+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:41.053493+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:46.439281+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:46.136806+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:41.848511+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:47.937607+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete median. There are trees and buildings on either side of the road. The sky is clear and there is a lot of sunlight. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:45.360043+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T15:35:38.815696+00:00", "objects": ["water_in_road", "road_blockade", "brt_lane", "traffic_ease_vehicle", "image_description", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "inside_tunnel", "landslide"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T15:36:48.083197+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:48.309380+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:41.914336+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:49.499258+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:49.916068+00:00", "label": "null", "label_explanation": "The image shows a wide road with a green building on the left and trees on the right. There are cars parked on the side of the road and a bus driving in the right lane. The road is clear and there are no signs of construction or accidents."}, {"object": "fire", "timestamp": "2024-02-04T15:36:49.229794+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:47.792826+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:48.816757+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:48.615612+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:49.017259+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:41.046880+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:49.720939+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:35:31.412082+00:00", "objects": ["fire", "alert_category", "traffic_ease_vehicle", "landslide", "brt_lane", "image_description", "water_in_road", "building_collapse", "image_condition", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:36:41.621817+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:46.952082+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:49.034140+00:00", "label": "moderate", "label_explanation": "There are larger puddles, but the road is still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:35.997943+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:46.250374+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-04T15:33:56.811045+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane on the left side. There are cars and buses driving on the road. The road is surrounded by buildings and trees. The weather is clear and sunny."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:49.605266+00:00", "label": "true", "label_explanation": "There are larger puddles, but the road is still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:47.449286+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:49.243662+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:48.152252+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a fallen tree."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:45.479920+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:48.810355+00:00", "label": "free", "label_explanation": "The road is clear and there are no blockades."}]}, {"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-04T15:36:21.076319+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:37:18.774433+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:17.388925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:19.942909+00:00", "label": "null", "label_explanation": "The image shows a tree-lined road with a clear sky. There are no cars on the road and the sidewalks are empty. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:17.598490+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T15:37:19.093962+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:19.303565+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:17.892587+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:13.407591+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:18.505080+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:19.599702+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:18.188776+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:14.108550+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}]}, {"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-04T15:36:18.462204+00:00", "objects": ["inside_tunnel", "alert_category", "traffic_ease_vehicle", "building_collapse", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:00.079673+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:04.696069+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a normal scene with people crossing the road and cars driving."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:05.401639+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:04.983111+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:05.672567+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:03.739577+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:04.274457+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:04.493747+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:03.980988+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T15:37:05.198270+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:00.784686+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:05.888216+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are people crossing the road, cars driving, and buildings in the background. The image is clear and there are no obstructions."}]}, {"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-04T15:36:32.336331+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "road_blockade_reason", "image_description", "building_collapse", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T15:37:21.476331+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:17.514893+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:22.119932+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:21.911631+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:34:28.581190+00:00", "label": "null", "label_explanation": "The image shows a wide road with a large tree on the left side. There is a white truck parked on the side of the road. The road is bordered by a sidewalk and trees on both sides. In the background, there is a building and a bridge."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:22.399905+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:21.692660+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:22.887840+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:21.193252+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:18.220504+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:23.099457+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:22.615853+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T15:36:25.587667+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "image_description", "image_condition", "alert_category", "landslide", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T15:37:07.011881+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:11.011959+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:10.213592+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:11.499630+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:10.509143+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:10.013455+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:06.304288+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:11.983636+00:00", "label": "null", "label_explanation": "The image is of a road with a clear sky. There are no cars on the road. The road is surrounded by trees and buildings."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:09.793966+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:10.802706+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:11.717030+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:11.283210+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}]}, {"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-04T15:36:26.818513+00:00", "objects": ["fire", "inside_tunnel", "brt_lane", "image_description", "landslide", "alert_category", "traffic_ease_vehicle", "building_collapse", "road_blockade", "water_in_road", "road_blockade_reason", "image_condition"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:22.014062+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:16.461838+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:17.305261+00:00", "label": "false", "label_explanation": "The lane on the right side of the road is not a designated bus rapid transit (BRT) lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:22.778127+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a BRT lane on the left side. There are cars, buses, and bicycles on the road. There are also trees and buildings on either side of the road. The weather is clear and sunny."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:22.516539+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:21.541144+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:22.288894+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:21.799568+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:21.003381+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:20.785298+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:21.283188+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:20.514456+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T15:36:29.485136+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_description", "image_condition", "building_collapse", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:19.680008+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:20.281040+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:19.473357+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:14.971460+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:21.678040+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a portion of a road with a white car in the center. The road is surrounded by trees and buildings. The sky is clear and blue."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:19.189969+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:20.595181+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:21.149428+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:15.779293+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:20.020606+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:21.377904+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:20.880495+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}]}, {"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-04T15:36:16.269575+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "water_in_road", "brt_lane", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:37:13.933425+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees on either side of the road and buildings in the background. The road is not very busy and there are no visible hazards."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:13.649847+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:13.464632+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:12.738727+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:12.945294+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:11.758945+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:08.352394+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:12.042265+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:09.037206+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T15:37:13.238727+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:12.240481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:12.498216+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:36.217136+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:37:24.531312+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.149947+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:23.948855+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:24.221966+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:18.860108+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:23.359587+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:24.740748+00:00", "label": "null", "label_explanation": "A black SUV is driving on a paved road next to a body of water. There are trees and foliage on either side of the road, and a person is walking on the sidewalk on the right side of the road. The weather is clear and sunny."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.025355+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.441340+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.073540+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:23.722972+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.744584+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}]}, {"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-04T15:36:27.391164+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:31:21.505170+00:00", "label": "null", "label_explanation": "The image shows a tree that has fallen onto a road, blocking traffic. The tree is large and has fallen across the entire width of the road, making it impossible for vehicles to pass. There are no people or other objects visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:00.637313+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:05.238413+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:05.524750+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:01.352742+00:00", "label": "false", "label_explanation": "There are no signs or indications of a bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:05.737015+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:04.738630+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:37:05.949701+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:05.021637+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:04.528989+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:06.255528+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:06.453453+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:13.605747+00:00", "objects": ["image_condition", "landslide", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:12.171846+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:14.167103+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:12.964718+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:08.454475+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:37:13.671691+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:12.699089+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:13.462563+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:09.169164+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:12.454986+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:13.244432+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:14.450027+00:00", "label": "null", "label_explanation": "A photo of a road with a fallen tree. The road is partially blocked, and there is a gas station on the right side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:13.950507+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-04T15:36:00.824348+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "water_in_road", "road_blockade", "image_description", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T15:36:51.430945+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:50.237827+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:51.639142+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:47.357579+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:50.522697+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:50.723764+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:52.344254+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars, buses, and people crossing. There are buildings and trees on either side of the road. The road is partially blocked by a fallen tree."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:51.919262+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:51.142573+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:46.650924+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:52.138090+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:50.939363+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road."}]}, {"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-04T15:36:37.545827+00:00", "objects": ["brt_lane", "road_blockade_reason", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T15:37:23.723174+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:27.700784+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:27.113888+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:22.998857+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:27.947742+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:27.399848+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:28.912704+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:28.712294+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:28.210564+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:29.206054+00:00", "label": "null", "label_explanation": "The image shows a wide road with a concrete barrier separating the two lanes. Trees line the right side of the road, and buildings can be seen in the background. The road is clear of traffic and there are no visible hazards."}, {"object": "fire", "timestamp": "2024-02-04T15:37:28.428866+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:26.825353+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T10:53:03.463113+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T10:53:48.670351+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T10:53:43.601290+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T10:53:48.399836+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T10:53:48.181153+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T10:53:44.321765+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T10:53:47.963231+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T10:53:47.700806+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T10:53:47.407207+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T10:53:52.537759+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are no signs of accidents, fires, or other incidents. The road is dry and there is no visible water."}, {"object": "image_condition", "timestamp": "2024-02-04T10:53:47.175649+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T10:53:49.293803+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T10:53:49.495210+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:15.709869+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "alert_category", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:59.261964+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:02.946461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:04.925854+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:03.948172+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:03.184649+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:04.155110+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:04.648465+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:03.396444+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:59.921456+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T15:37:04.443971+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:03.675706+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:05.149240+00:00", "label": "null", "label_explanation": "The image shows a busy street in Rio de Janeiro. There are cars, buses, and people crossing the street. The buildings are tall and colorful. The street is lined with trees."}]}, {"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-04T15:36:43.662230+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "landslide", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:31:55.400544+00:00", "label": "null", "label_explanation": "The image shows a busy street scene in Rio de Janeiro. There are cars, buses, and people crossing the street. The buildings are tall and colorful. The sky is blue and there are some clouds. The image is clear and bright."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:23.438264+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.943798+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:19.330978+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.455247+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:21.252303+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:20.826209+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:20.339990+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.157105+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.736177+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:19.037845+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:21.762648+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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-04T15:36:35.371977+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "alert_category", "road_blockade", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:26.095821+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:21.711109+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:26.315640+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:24.693463+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It is sharp and focused, with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:24.912182+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:25.398723+00:00", "label": "water_puddle", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:26.604451+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There is soil and debris on the road, blocking traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:25.612227+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:25.142393+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:26.887243+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete barrier separating the two directions. There is a large amount of graffiti on the wall to the left of the road. Trees can be seen on both sides of the road, and buildings and mountains can be seen in the background. The image is clear and well-lit."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:20.998428+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:25.840158+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}]}, {"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-04T15:35:39.806434+00:00", "objects": ["road_blockade", "road_blockade_reason", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "alert_category", "inside_tunnel", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:33:56.797355+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:44.371065+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and there are no signs of traffic congestion."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:36.586977+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:33:58.617222+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T15:36:26.373130+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:33:59.710177+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:35.392744+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant enough to cause any traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-04T15:30:43.829951+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro. There are cars, motorcycles, and people crossing the street. The street is lined with trees and buildings."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:26.167535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T15:33:58.108518+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:35.659788+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:32.370674+00:00", "label": "poor", "label_explanation": "The image is slightly blurred but still clear enough to identify objects. There are no visible distortions or obstructions."}]}, {"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-04T15:36:28.952453+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:19.523560+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:14.530922+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:18.553106+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:18.054398+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:19.737483+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:15.219551+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:18.333391+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:19.029092+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:20.249341+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is not crowded and traffic is flowing smoothly."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:19.251448+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:18.756317+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:20.024602+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:31.197753+00:00", "objects": ["alert_category", "road_blockade_reason", "image_description", "brt_lane", "image_condition", "fire", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T15:37:20.477980+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:20.271845+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:21.716237+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars and motorcycles on the road, as well as people walking on the sidewalk. The buildings are tall and brightly colored. The sky is clear and the sun is shining."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:16.490139+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:19.491986+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:20.905512+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:19.704927+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:15.869023+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:21.394568+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:20.685887+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:21.178754+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:19.973333+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:04.618087+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:37:07.756278+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with cars parked on either side. There are a few small puddles on the road, but they are not significant enough to cause any traffic disruptions. The buildings on either side of the road are in good condition and there are no signs of any structural damage. The image is clear and there is no interference from any other objects."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:07.329991+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:06.353120+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:02.951408+00:00", "label": "false", "label_explanation": "There is no evidence of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:06.133427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:05.943599+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "fire", "timestamp": "2024-02-04T15:37:07.125848+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:06.845103+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings in the image are intact and there are no signs of structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:06.635889+00:00", "label": "normal", "label_explanation": "The image does not show any major or minor issues that might affect city life. The road is clear, there are no blockades, and there is no evidence of any accidents or other incidents."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:05.719243+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The road, buildings, and vehicles are clearly visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:02.329827+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is an open-air thoroughfare with buildings and overpasses visible on either side."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:07.532931+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T15:36:40.145723+00:00", "objects": ["traffic_ease_vehicle", "road_blockade_reason", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:27.379909+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:26.473877+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:27.171369+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:27.589491+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:25.872001+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:23.101400+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:22.403180+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:26.686466+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:26.083863+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:27.793076+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several people walking on the sidewalk and a few cars parked on the side of the road. In the background, there is a building with a sign that says \"Escola\". The road is clear and there are no signs of any problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:26.291586+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:26.896547+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T15:36:38.707655+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:23.707824+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:28.998475+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:27.195745+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:27.876570+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:24.402047+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:28.301854+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:27.608417+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:28.090225+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:28.797805+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:29.276108+00:00", "label": "null", "label_explanation": "A wide road with a few cars and a motorcycle driving on it. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "fire", "timestamp": "2024-02-04T15:37:28.576028+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:27.398483+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T15:36:32.734031+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.575838+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:19.203289+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.504379+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:23.279246+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.384372+00:00", "label": "false", "label_explanation": "There are small puddles on the road. The puddles are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T15:37:23.481708+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T15:34:30.699629+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a bus driving in the foreground. There are cars parked on the side of the road and a few trees on either side. In the background, there is a building with a blue wall and a sign that says 'Vovo Maria Conga'. The sky is cloudy and there is a slight bend in the road to the right."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:22.798919+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:23.071079+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.121709+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:23.769500+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet, with small, manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:23.978632+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}]}, {"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-04T15:36:12.916836+00:00", "objects": ["image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T15:37:09.744056+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:11.828095+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road with a pedestrian crossing. There are cars parked on either side of the road and a few people crossing the street. The road is in good condition and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:10.220182+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:11.345548+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:09.940616+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:10.650692+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:06.332870+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:11.620574+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T15:37:11.148551+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:10.929988+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:10.444203+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:07.038041+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T15:35:58.769468+00:00", "objects": ["road_blockade_reason", "landslide", "inside_tunnel", "building_collapse", "image_condition", "fire", "road_blockade", "image_description", "alert_category", "traffic_ease_vehicle", "water_in_road", "brt_lane"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:54.452622+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:55.667448+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:50.166453+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:54.950894+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:53.760650+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T15:36:55.237101+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:54.247870+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:36:55.936743+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars, buses, and people crossing the street. There are trees and buildings on either side of the road. The sky is cloudy and there is a mountain in the background."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:54.739301+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:55.442047+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:53.975416+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:50.860360+00:00", "label": "false", "label_explanation": "The lane on the right side of the road is not a designated bus rapid transit (BRT) lane."}]}, {"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-04T15:35:50.561901+00:00", "objects": ["image_description", "building_collapse", "traffic_ease_vehicle", "landslide", "road_blockade", "water_in_road", "brt_lane", "image_condition", "road_blockade_reason", "alert_category", "fire", "inside_tunnel"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T15:36:49.306232+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road with a clear sky. There are cars parked on either side of the road and a few people walking. The road is in good condition and there are no visible signs of construction or other hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:36:48.189405+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:36:48.803198+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:36:49.084851+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:36:47.434371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:36:47.138539+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:36:40.747205+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:36:46.811362+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:36:47.699582+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:36:47.913931+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T15:36:48.596172+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:36:36.315293+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T14:37:49.147521+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "alert_category", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T14:38:33.691345+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T14:38:33.896931+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T14:38:33.196791+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T14:38:29.296390+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T14:38:32.102391+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T14:38:32.298115+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T14:38:34.111925+00:00", "label": "null", "label_explanation": "The image shows a tree-lined street with a row of parked cars on the right side of the road. On the left side of the road, a white car is driving in the opposite direction. There are no people visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T14:38:33.419137+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T14:38:32.989045+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T14:38:32.512714+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T14:38:28.589513+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T14:38:32.792597+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of 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-04T15:36:46.536446+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T15:38:00.141764+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:38:00.634111+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:55.910713+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T15:38:00.838696+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:38:01.140134+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:59.629801+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:56.542470+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:59.929510+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T15:38:01.326157+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:59.416046+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T15:38:00.412210+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T15:38:01.561288+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several buildings on either side of the street, and a few cars parked on the side of the road. The street is relatively narrow, and there are no sidewalks. The image is taken from a slightly elevated perspective, and the sky is clear."}]}, {"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-04T15:36:36.804116+00:00", "objects": ["landslide", "road_blockade", "alert_category", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:37:28.128401+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:26.605382+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:27.116515+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:26.828422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:26.321454+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:27.927150+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:26.043897+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:22.833787+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a sign indicating 'BRT'."}, {"object": "fire", "timestamp": "2024-02-04T15:37:27.628427+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:27.425629+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:22.014524+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:28.415542+00:00", "label": "null", "label_explanation": "The image shows a busy urban intersection with cars, buses, and people crossing the road. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The buildings in the background are tall and imposing, and the trees are lush and green. The sky is blue and there are a few clouds in the distance."}]}, {"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-04T15:36:28.273019+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "image_condition", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.131876+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:22.825332+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All the buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:18.868893+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:23.246411+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:23.733453+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a fallen tree blocking part of the road. There are cars on the road and a bus approaching the fallen tree. There are trees and buildings on either side of the road. The sky is clear with a few clouds. The image is clear and the colors are vibrant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.223812+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:21.719873+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:23.517882+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:21.918850+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:22.605485+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:22.338071+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}, {"object": "fire", "timestamp": "2024-02-04T15:37:23.023755+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T15:35:54.619134+00:00", "objects": ["road_blockade", "inside_tunnel", "image_description", "building_collapse", "traffic_ease_vehicle", "fire", "alert_category", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:07.725691+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:03.756638+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:09.327593+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a yellow taxi driving on the left side of the road. There is a fallen tree blocking the road ahead. There are cars parked on the side of the road. There are buildings and trees on either side of the road. The sky is clear and sunny."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:08.340160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:08.857067+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T15:37:08.609726+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:08.139922+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:04.516283+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:07.236494+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:07.442405+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:07.919539+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:09.037041+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:40.374759+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T15:37:30.171514+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:31.376940+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:26.878848+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:31.871098+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation and trees on either side. There are cars parked on both sides of the road and a bus stop on the right side. The road is clear and there are no signs of any issues."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:29.956138+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:26.174791+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:30.948616+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:30.668319+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "fire", "timestamp": "2024-02-04T15:37:31.171070+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:31.660709+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:29.744579+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:30.453552+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T15:36:36.566624+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_condition", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T15:37:24.816255+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:23.112310+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.580076+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:25.121900+00:00", "label": "null", "label_explanation": "The image shows a busy urban street with cars, buses, and pedestrians. There are buildings and trees on either side of the street. The street is wet from rain, but there are no major puddles or flooding. The traffic is moving smoothly."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:19.194144+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:23.829660+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T15:37:24.300767+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:24.590231+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:19.902193+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:23.323432+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.884825+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:24.085699+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T15:36:27.969484+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T15:37:23.970301+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:19.595193+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:23.192145+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road, but it is small and insignificant and does not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:22.963746+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:23.746836+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All the buildings in the image are intact."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:22.484566+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:22.687194+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:23.481201+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:18.893615+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:24.194583+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T15:31:25.517913+00:00", "label": "null", "label_explanation": "The image shows a busy urban street with cars, buses, and people crossing the road. There is a fallen tree and a flooded area blocking part of the road, causing traffic disruption. In the background, there are tall buildings and lush trees."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:24.481543+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T15:36:40.268440+00:00", "objects": ["inside_tunnel", "landslide", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition", "image_description", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T15:37:21.687770+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T15:37:27.546728+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T15:37:22.525134+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T15:37:26.342715+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T15:37:25.854055+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T15:37:27.348483+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-04T15:37:27.120230+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T15:37:25.641466+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T15:37:27.845201+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete barrier in the center. There are cars driving in both directions. The road is dry and there are no visible obstructions. The image is clear and there are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T15:37:26.869279+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T15:37:26.131723+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T15:37:26.625849+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}] \ No newline at end of file +[{"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "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-04T23:41:02.913954+00:00", "objects": ["brt_lane", "fire", "traffic_ease_vehicle", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "road_blockade", "landslide", "alert_category", "inside_tunnel", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:41:55.691878+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:09.219500+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:09.427853+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:09.931994+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. The intersection is well-lit and there are cars and people crossing the road. There are also buildings and trees on either side of the road. The image is clear and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:08.531379+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:07.822376+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:08.041589+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:08.248938+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:09.687053+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:08.726866+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.723296+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:08.953747+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:14.525794+00:00", "objects": ["building_collapse", "fire", "alert_category", "brt_lane", "traffic_ease_vehicle", "image_condition", "road_blockade", "water_in_road", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:09.289308+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:42:09.575766+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:08.992368+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:04.611997+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:09.792371+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:07.978579+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:08.496318+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:08.265682+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:03.793145+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:10.335435+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a green traffic light on the left side of the image and a white car is driving on the right side of the image. There are trees and buildings on either side of the street. The street is wet from the rain."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:10.075609+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:08.781040+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:09.095325+00:00", "objects": ["inside_tunnel", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_description", "alert_category", "road_blockade_reason", "building_collapse", "landslide", "image_condition", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:58.787972+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:05.443757+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:05.715597+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:02.214735+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a bus currently occupying the lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:14.139762+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:06.230646+00:00", "label": "null", "label_explanation": "The image shows a busy intersection at night. There are cars, buses, and people crossing the intersection. The road is wet from the rain, but there are no major puddles or blockages. The traffic lights are on and there are street signs visible."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.960800+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:04.679441+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:05.230904+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.944865+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:03.944577+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:04.243118+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-04T23:41:06.405101+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:08.204363+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.950911+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:01.649321+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:08.521288+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street with cars driving in both directions. There are street lights and buildings on either side of the street. The road is wet from the rain and there are some puddles on the road. There is a gas station on the right side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:07.302437+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:04.745694+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:08.013002+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.437418+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:07.130378+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.634882+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:07.821482+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:08.326856+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:17.301893+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:11.587723+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few cars and motorbikes on the road. The buildings are tall and brightly lit. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:11.144946+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry with minimal water accumulation. There are small, insignificant puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:09.452699+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:06.641206+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:05.891661+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:10.452282+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:09.675543+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:10.167623+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:10.887128+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:11.360798+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:10.675112+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:09.959037+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:40:55.853484+00:00", "objects": ["inside_tunnel", "brt_lane", "fire", "image_description", "landslide", "water_in_road", "road_blockade_reason", "image_condition", "road_blockade", "traffic_ease_vehicle", "alert_category", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:04.613717+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:05.418242+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating BRT use."}, {"object": "fire", "timestamp": "2024-02-04T23:42:09.617495+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:10.298243+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars, buses, and people on the street. The street is lit by streetlights. There are buildings and trees on either side of the street."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:10.092746+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:08.479654+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:08.901680+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:08.205458+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:08.697780+00:00", "label": "free", "label_explanation": "The road is clear with no blockades or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:09.894828+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:09.179069+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:09.403768+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}]}, {"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-04T23:41:11.860684+00:00", "objects": ["inside_tunnel", "water_in_road", "brt_lane", "road_blockade", "image_condition", "road_blockade_reason", "building_collapse", "landslide", "traffic_ease_vehicle", "image_description", "alert_category", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.631529+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:57.673115+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:57.976064+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:41:58.255596+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:57.065434+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:57.395893+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:01.632546+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:41:56.640878+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:41:58.598401+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:02.233886+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image. The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:01.867742+00:00", "label": "minor", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass. This could cause traffic delays and inconvenience for motorists."}, {"object": "fire", "timestamp": "2024-02-04T23:41:56.853021+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}]}, {"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-04T23:41:10.644560+00:00", "objects": ["alert_category", "fire", "landslide", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "water_in_road", "building_collapse"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:42:05.683904+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that interfere with city life. The road is clear, there are no blockades, and the water puddles are manageable."}, {"object": "fire", "timestamp": "2024-02-04T23:42:06.169188+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:06.677564+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:58.796653+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:06.900471+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. It is raining and the street is wet. There are cars parked on the side of the street and a few trees. The street lights are on."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:04.658508+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:05.464523+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to large puddles of water."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:05.207760+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:57.579172+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:06.453376+00:00", "label": "moderate", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:04.929896+00:00", "label": "true", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:05.960758+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:40:54.828664+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:07.418549+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:06.716392+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:07.916335+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:07.641505+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:06.518465+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.214886+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:08.411406+00:00", "label": "null", "label_explanation": "The image shows a wet road with some puddles. There is a bridge in the background and a yellow car driving on the right side of the road. There are trees and buildings on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.229647+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:08.147800+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:38.542656+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.007321+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:42.809187+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:40:54.869748+00:00", "objects": ["brt_lane", "image_description", "road_blockade", "traffic_ease_vehicle", "landslide", "water_in_road", "inside_tunnel", "road_blockade_reason", "image_condition", "fire", "alert_category", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:41:46.291617+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:41:58.291241+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a car driving on the right side of the road. There are no other cars on the road. The street is lit by streetlights. There are buildings and trees on either side of the road. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:41:52.594435+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:41:56.672967+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:41:57.418703+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:52.322341+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:45.430328+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:52.837172+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:52.037267+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:41:53.727226+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:41:53.015724+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:41:53.454690+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:00.262502+00:00", "objects": ["inside_tunnel", "image_description", "road_blockade_reason", "fire", "brt_lane", "water_in_road", "road_blockade", "landslide", "alert_category", "image_condition", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:58.124413+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:06.994593+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a church on the left side of the image and a building on the right side. The street is wet from the rain and there are some puddles on the road. There is a green traffic light in the foreground."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:05.618097+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:06.233457+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:58.883040+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:05.119523+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:05.346416+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:06.714454+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:05.819474+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:04.831853+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:06.015420+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:06.510234+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-04T23:40:49.781533+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "road_blockade", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:03.950894+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are larger puddles on the road, but they are still navigable for most vehicles. The surrounding buildings are intact and there are no signs of collapse or structural damage. There is no evidence of fire, landslide, or any other issues that would interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:01.835138+00:00", "label": "true", "label_explanation": "There are larger puddles on the road, but they are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:03.721065+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:52.579347+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:02.747219+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:51.738828+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:58.796211+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:03.158135+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:02.204134+00:00", "label": "partially_blocked", "label_explanation": "There are larger puddles and a fallen tree on the road, but the road is still partially passable."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:02.953523+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:02.478246+00:00", "label": "water_puddle", "label_explanation": "There are larger puddles on the road, but they are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:03.436304+00:00", "label": "moderate", "label_explanation": "There are larger puddles on the road, but they are still navigable for most vehicles."}]}, {"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-04T23:36:13.331650+00:00", "objects": ["inside_tunnel", "image_description", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:36:50.738666+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:36:56.636857+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or disruptions. There are no signs of accidents, fires, or other incidents. The road is dry and there is no visible water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:36:56.202277+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:36:55.715681+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:36:55.926642+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:36:51.533431+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:36:54.516098+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:36:56.427477+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:36:55.017366+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:36:55.224177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:36:55.435785+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockages or disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:36:54.731033+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:41:03.653484+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "road_blockade", "image_description", "traffic_ease_vehicle", "inside_tunnel", "fire", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:08.955034+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:07.175474+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.659711+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.939187+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.936433+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:03.985980+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:07.445316+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:09.174877+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is wet from the rain and there are some puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:08.680990+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:03.260229+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:08.468501+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:08.165079+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:40:57.430701+00:00", "objects": ["image_description", "inside_tunnel", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:39:07.742609+00:00", "label": "null", "label_explanation": "A night-time image of a road with a car driving in the right lane. There are trees and foliage on either side of the road. The road is wet from rain, but there is no flooding. There are no visible obstructions or hazards on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.295752+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:04.937565+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:07.217745+00:00", "label": "easy", "label_explanation": "The road is slightly wet, but there are no significant puddles or signs of flooding. Vehicles can pass through the area with ease."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:03.275042+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.374885+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:03.503626+00:00", "label": "false", "label_explanation": "There is no presence of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:56.881913+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:03.875810+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.697352+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.389923+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:04.184661+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:40:55.014298+00:00", "objects": ["building_collapse", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "fire", "landslide", "image_description", "road_blockade"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.435554+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:00.148036+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:00.554867+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:52.256221+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:56.990305+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:04.989346+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:03.966287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.240626+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-04T23:42:04.746498+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.234616+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:11.601321+00:00", "label": "null", "label_explanation": "The image shows a night scene of a wide avenue with a BRT lane. There is a bus driving in the BRT lane and several cars on the regular lanes. On the left side of the image, there are some parked cars and people walking on the sidewalk. In the background, there are some buildings and trees."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:03.585721+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:40:52.848653+00:00", "objects": ["landslide", "brt_lane", "alert_category", "fire", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "road_blockade", "image_condition", "road_blockade_reason", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:41:57.013496+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:47.105127+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:41:53.465946+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "fire", "timestamp": "2024-02-04T23:41:53.970679+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:41:53.735693+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:14.202546+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:46.017531+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:41:52.841868+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:52.222067+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:53.108713+00:00", "label": "free", "label_explanation": "There are no signs of road blockade. The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:41:57.241243+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the entire road, making it impassable for vehicles. There is a car stopped behind the tree. The image is clear and the colors are accurate."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:52.580652+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:41:08.056646+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:03.580874+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:57.433761+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:00.829061+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:00.564804+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.047671+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.327819+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.089088+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:04.569898+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:05.393739+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is wet from rain and there are a few puddles on the road. There is a red motorcycle on the right side of the image. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:04.819723+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:03.834484+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.969206+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:41:00.549949+00:00", "objects": ["road_blockade", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "alert_category", "image_condition", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:04.405725+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:38.825948+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:41:56.659159+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:41:37.019993+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:41:58.289327+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:58.851907+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:11.068240+00:00", "label": "null", "label_explanation": "The image is of a street scene in Rio de Janeiro. It is nighttime and the street is lit by streetlights. There are cars and motorcycles on the street, and people are walking on the sidewalks. There are trees and buildings on either side of the street."}, {"object": "landslide", "timestamp": "2024-02-04T23:41:36.785729+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:11.660541+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:58.593116+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:37.968527+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:04.668822+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-04T23:41:01.063024+00:00", "objects": ["alert_category", "water_in_road", "brt_lane", "image_condition", "inside_tunnel", "road_blockade_reason", "road_blockade", "fire", "landslide", "image_description", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:42:08.643930+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:08.148194+00:00", "label": "true", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:05.817816+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:07.938217+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:05.149387+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:08.514410+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:08.331358+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road."}, {"object": "fire", "timestamp": "2024-02-04T23:42:09.010045+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:09.326027+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:09.544328+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars driving in both directions. The road is wet from the rain and there are puddles on the ground. The street lights are on and there are buildings and trees on either side of the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:08.834842+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:09.207147+00:00", "label": "moderate", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road."}]}, {"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-04T23:40:51.102713+00:00", "objects": ["road_blockade", "inside_tunnel", "brt_lane", "image_description", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "building_collapse", "road_blockade_reason", "alert_category", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:41:58.833669+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:51.570255+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:52.208739+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:05.610150+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.388202+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:05.201853+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:58.587847+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:42:04.988014+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.706524+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:01.841746+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.406539+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:58.288348+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:42:00.516189+00:00", "objects": ["alert_category", "road_blockade_reason", "image_description", "brt_lane", "image_condition", "fire", "inside_tunnel", "water_in_road", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:42:55.876106+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:55.658720+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:43.853018+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and motorbikes on the road, and trees and buildings on either side of the road. The street is lit by streetlights."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:52.090824+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:54.917918+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:56.287552+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:51.479286+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:55.176856+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:56.874738+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:56.073782+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:56.563948+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:55.406642+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:40:52.738934+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:13.422058+00:00", "label": "null", "label_explanation": "The image is showing a road with a clear sky. There are no visible cars on the road. The road is surrounded by trees and buildings."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:11.423994+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:11.637686+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:12.426538+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:07.357448+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:12.635674+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:12.140591+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, water, or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:11.134885+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:13.129600+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:12.919568+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. There is no water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:08.051536+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:11.920265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:58.532291+00:00", "objects": ["road_blockade", "landslide", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:42.719093+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:44.115892+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:43.215688+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.433989+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:42.932509+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:43.914874+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.223876+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:39.453467+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:43.629355+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.425665+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:38.824202+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.407484+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. The road is wet from the rain and there are some puddles, but the traffic is still flowing smoothly. There are no signs of any accidents or other incidents."}]}, {"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-04T23:42:03.000075+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "brt_lane", "fire", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:50.519998+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, but they do not completely block the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:51.944425+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:50.044185+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:51.728921+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:50.236970+00:00", "label": "true", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:50.738734+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to significant, larger puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:46.954079+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T23:42:51.451066+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:52.229603+00:00", "label": "null", "label_explanation": "The image shows a night view of a city street with cars, a motorcycle, and a bus driving on the wet road. There are significant, larger puddles present on the road. The street is lit by streetlights. There are buildings and trees on either side of the street. The sky is cloudy."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:51.236509+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:50.970571+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:46.232321+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:41:54.017363+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "building_collapse", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:40.919144+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:41.838472+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:42.127066+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:41.427684+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:36.714610+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:40.640625+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:41.126993+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:37.360653+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:41.634789+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:40.223175+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:42.335346+00:00", "label": "null", "label_explanation": "A night-time image of a road intersection. There are cars and motorbikes on the road, and the traffic lights are on. The road is wet from the rain, and there are some puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:40.441237+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-04T23:42:08.546262+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "alert_category", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:49.715532+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:50.526379+00:00", "label": "false", "label_explanation": "There is no bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:53.919284+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:53.699308+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:42:55.007365+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:54.189361+00:00", "label": "water_puddle", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:54.487730+00:00", "label": "major", "label_explanation": "There are major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:54.809592+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:55.302718+00:00", "label": "moderate", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:53.482955+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:55.813740+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The road is wet from the rain. There are buildings and trees on either side of the road. The sky is dark and cloudy."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:55.514760+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:41:56.922799+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:42.503488+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:43.703534+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:39.211240+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.139191+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are two vehicles on the road, a car and a motorcycle. The car is black and the motorcycle is red and white. The road is wet from the rain and there are some puddles on the road. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.283726+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:38.505283+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.214831+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:42.986517+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:42:43.418335+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:43.910241+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.024931+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:42.718593+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:42:03.537172+00:00", "objects": ["brt_lane", "road_blockade_reason", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:42:40.124443+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:42.694297+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.214289+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:38.821752+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a slight curve to the right. The tunnel is well-lit and there are no obstructions visible."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:42.911415+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:42.428522+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:43.832768+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:43.603303+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.133021+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.068794+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a slight curve to the right. The tunnel is well-lit and there are no obstructions visible. There are two cars in the image, both of which are driving in the same direction. The cars are not causing any traffic congestion and there are no other vehicles visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T23:42:43.328955+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.004785+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:41:32.496340+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:31.819176+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars and buses on the street, and people are walking on the sidewalk. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.697880+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:30.420875+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:29.786924+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:30.905943+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:29.993418+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:26.918140+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.212146+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:31.390832+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:26.206068+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:31.119559+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:31.617610+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:42.608719+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "road_blockade_reason", "building_collapse", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:44.720191+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:44.234609+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:43.742005+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.837135+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:43.552023+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:44.023866+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:43.330355+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:43.049441+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:44.436368+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.950300+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There are cars parked on the side of the road and a bus is driving through the intersection. There are trees and buildings in the background."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:39.434483+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:40.119923+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:41:21.162754+00:00", "objects": ["image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:23.151016+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:25.253564+00:00", "label": "null", "label_explanation": "The image shows a night view of a park with a road in the foreground. The park is surrounded by a fence and there are trees and lampuposts inside. The road is wet from the rain and there are some puddles, but it is still passable. There is a crosswalk in the foreground."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:23.645139+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:24.831522+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:23.430400+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:24.148834+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:19.840957+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:25.051122+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:24.554219+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:24.348108+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:23.850661+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:20.449422+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:41:18.319837+00:00", "objects": ["building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "image_description", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:18.298738+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:19.002954+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:13.694722+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:17.559798+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:17.784855+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:18.492775+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:17.979485+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:18.830337+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:19.274644+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left lane, behind the fallen tree. There are no people visible in the image."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:14.389874+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:17.073582+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:17.293787+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:41:22.950215+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "building_collapse", "alert_category", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:24.814626+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:25.329553+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:24.035685+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:23.310879+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:25.009474+00:00", "label": "easy", "label_explanation": "There are small puddles of water on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:23.838722+00:00", "label": "free", "label_explanation": "There are no visible blockades or obstructions on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:20.313999+00:00", "label": "false", "label_explanation": "There are no visible markings or signs indicating a designated bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:24.562967+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse in the image. All buildings are intact, with no visible damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:24.318451+00:00", "label": "normal", "label_explanation": "There are no visible signs of any problems that might interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:23.520613+00:00", "label": "null", "label_explanation": "The image shows a road intersection at night. There is a significant amount of water on the road, making it difficult for vehicles to pass. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:23.544469+00:00", "label": "false", "label_explanation": "There are small puddles of water on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:19.615745+00:00", "label": "false", "label_explanation": "The image does not show any signs of being inside a tunnel, such as enclosed structures or tunnel walls."}]}, {"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-04T23:41:51.227129+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:32.176480+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:33.768045+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through without hindrance."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:28.562843+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:33.556686+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:32.370036+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:34.353002+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are no signs of accidents, fires, or other incidents. The road is well-lit, and the weather conditions appear to be clear."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:33.088019+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:32.584304+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:33.346653+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:29.251824+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:34.093590+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:32.853549+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:41:27.415691+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "alert_category", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:20.255413+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:23.967108+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:26.137097+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:24.956177+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:24.251756+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.254116+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:25.830514+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There are no signs of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:24.460238+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:20.953129+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:25.497824+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:24.748861+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.361678+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a bus lane on the left side. There is a tree on the right side of the road. The road is dry and there are no signs of water or debris. The image is clear and there are no obstructions."}]}, {"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-04T23:42:04.264819+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_description", "landslide", "alert_category", "image_condition", "fire", "building_collapse", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:49.649629+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or disruptions. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:48.354094+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:48.639286+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:50.124292+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are no visible signs of accidents, fires, or other incidents. The road is dry and there is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:49.849602+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:48.931647+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:47.839718+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:39:49.450934+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:49.159321+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:48.120046+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:43.753125+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:44.545491+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}]}, {"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-04T23:42:01.610726+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:39:46.015621+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:44.212263+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:39:45.518756+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:45.804324+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:41.520470+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:45.118794+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:46.328276+00:00", "label": "null", "label_explanation": "A night time image of a four lane road with trees on either side. There is a red car driving in the right lane and a black truck in the left lane. The road is wet from rain and there are some small puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:40.832919+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:44.421322+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:44.908509+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:45.313928+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:44.633097+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:42:03.593504+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:49.744616+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:50.648644+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-04T23:42:50.436452+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:50.851552+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:46.354547+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:49.057280+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:45.738153+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:49.948495+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:49.253487+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:51.138054+00:00", "label": "null", "label_explanation": "The image shows a wide, empty street with a school sign on the right side. There are no cars or people on the street. The street is lined with trees and buildings. The image is clear and well-lit."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:49.545144+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:50.226646+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:54.125957+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:38.000687+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:38.503500+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:33.685098+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:38.708633+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:38.984834+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not enough to impede traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:37.578913+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:34.391659+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:37.798975+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, and the puddles are small and manageable."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:39.206856+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:37.319923+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:38.289200+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:39.487196+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}]}, {"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-04T20:44:55.103646+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T20:45:52.590194+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:54.412368+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T20:45:54.748023+00:00", "label": "null", "label_explanation": "The image shows a road scene with a fallen tree blocking the road. There are cars on the road and a gas station on the side. The road is wet from the rain and there are some puddles. The sky is cloudy and there are some trees in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:53.287322+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:49.050740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T20:45:53.985899+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:53.006170+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:53.763165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:49.812743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:52.807710+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:53.496942+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:54.201851+00:00", "label": "difficult", "label_explanation": "There are large puddles on the road, but they are not deep enough to impede vehicle movement."}]}, {"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-04T23:42:01.760619+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "fire", "brt_lane", "image_description", "building_collapse", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:39:51.444650+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:53.120983+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:52.148518+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:51.738224+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:47.916836+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:39:52.917371+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:48.622940+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:53.619397+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is wet from rain and there are some puddles on the road. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:52.640225+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:53.343423+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:51.940948+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:52.427018+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T23:41:31.053685+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:19.811295+00:00", "label": "difficult", "label_explanation": "There is a partial portion of the road covered with medium water level."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:14.416617+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:20.302997+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 walking around. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-04T23:42:19.586233+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:15.212233+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:19.305331+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:18.400013+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:19.090320+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life. The fallen tree is blocking the road and causing traffic disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:18.620347+00:00", "label": "totally_blocked", "label_explanation": "There are features that are blocking traffic. The fallen tree is completely blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:18.184610+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:20.091482+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:18.891782+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-04T23:41:52.966331+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "road_blockade_reason", "building_collapse", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T23:42:45.338631+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:41.246603+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:45.952213+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:45.761540+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:46.229412+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:47.140012+00:00", "label": "null", "label_explanation": "The image shows a road at night. There are trees and buildings on either side of the road. The road is wet from the rain. There is a car driving on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:45.542306+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:46.643814+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:45.123647+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:42.057886+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:46.866363+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:46.432522+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:40:54.640923+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "landslide", "fire", "image_condition", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "road_blockade", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:09.401053+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no traffic lights or signs visible in the image. The road surface is mostly dry with a few small puddles. There are cars and motorbikes driving on the road. There are also people walking on the sidewalk. The buildings along the road are mostly residential and commercial. There are trees and other vegetation on the side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:37.449254+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:38.139551+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:08.845384+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:07.917138+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.458328+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.133940+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:06.735592+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:08.323333+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry with minimal water accumulation. There are small, insignificant puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:06.950133+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.412110+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:07.643965+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact with no visible damage or structural issues."}]}, {"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-04T23:40:58.364344+00:00", "objects": ["brt_lane", "road_blockade", "image_description", "image_condition", "road_blockade_reason", "alert_category", "fire", "inside_tunnel", "water_in_road", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:42:07.004425+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:10.582619+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:12.603469+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars parked on the side of the road and a few people are walking. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:10.007706+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:10.803869+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:11.111290+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:42:11.814997+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:06.002849+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:10.312815+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:12.096794+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:12.330061+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:11.405389+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:29.932502+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "landslide", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:29.551996+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:25.763117+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:31.237560+00:00", "label": "easy", "label_explanation": "The road is dry and there is no water on the road. Vehicles can pass through the area without difficulty."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:26.586061+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:30.237111+00:00", "label": "car_accident", "label_explanation": "There is a police car on the side of the road. The road is not completely blocked, but the car is partially blocking the right lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:31.746682+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a police car on the side of the road. The road is not completely blocked, but the car is partially blocking the right lane. There is a building on the left side of the road and a tree on the right side. The road is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:30.732831+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:29.758609+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry."}, {"object": "fire", "timestamp": "2024-02-04T23:42:30.967571+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.478845+00:00", "label": "minor", "label_explanation": "There is a police car on the side of the road. The road is not completely blocked, but the car is partially blocking the right lane. This could cause minor traffic disruptions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:31.467344+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.033915+00:00", "label": "partially_blocked", "label_explanation": "There is a police car on the side of the road. The road is not completely blocked, but the car is partially blocking the right lane."}]}, {"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-04T20:42:23.022360+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_description", "image_condition", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T20:43:21.901631+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:15.376418+00:00", "label": "false", "label_explanation": "The image shows the outside environment with buildings and cars passing by. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:16.099703+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:20.512393+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to large puddles. Vehicles can still pass through, but with some difficulty."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:19.583154+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:21.614673+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "fire", "timestamp": "2024-02-04T20:43:21.408708+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:21.003969+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:22.173458+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars driving in both directions. There are large puddles on the road, but they are not completely blocking traffic. The cars are driving slowly and carefully. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:19.357974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:19.806659+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, but they are not completely blocking traffic. Vehicles can still pass through, although with some difficulty."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:20.781115+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The traffic is flowing smoothly, and there are no signs of accidents, fires, or other disruptions."}]}, {"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-04T23:41:25.823795+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:18.827808+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:17.055819+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:18.540946+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:17.837826+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:19.247703+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with no visible obstructions or issues. The road is surrounded by trees and buildings, with a clear sky overhead. There are no signs of traffic or pedestrians."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:17.338135+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:17.581984+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:14.237356+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:18.325766+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:13.533821+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:18.046691+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:19.051014+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:24.737579+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:30.446808+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:31.218645+00:00", "label": "null", "label_explanation": "A night-time image of a wide, urban road with a central reservation and trees on either side. Street lights illuminate the road, and there are buildings and shops on either side of the road. The road is relatively quiet, with only a few cars and motorbikes visible. The image is clear and there are no visible obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:29.743477+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:29.036166+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:29.316565+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:30.933680+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:30.718869+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:26.131627+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:25.343012+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:30.232534+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:29.530061+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.004724+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T23:41:44.928971+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_condition", "image_description", "building_collapse", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:25.121137+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:25.623969+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:24.914734+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:21.033687+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:24.704402+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.831076+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree on the road, blocking traffic. There is a car stopped in front of the tree. There are no people visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.915150+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:21.737909+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:26.348613+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:25.408257+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:26.634068+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:26.131403+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:41:57.853809+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:39:36.879169+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:31.709380+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:35.899065+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:35.422797+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:37.119418+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:32.431117+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:35.644817+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:36.395872+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:37.612391+00:00", "label": "null", "label_explanation": "The image shows 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 a few trees and buildings in the background."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:36.628538+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:36.132234+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:37.331928+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:53.606958+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "image_description", "image_condition", "brt_lane", "fire", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:41.832101+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:42.242033+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:42.725751+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:42.042322+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:37.746880+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:43.148193+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. The intersection is well-lit and there are several cars and people crossing the road. The road is wet from the rain and there are some puddles on the ground. There is a building on the left side of the intersection and a tree on the right side. The sky is dark and cloudy."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:41.145035+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:38.441538+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:42.545478+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:41.626425+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:42.933277+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:41.423034+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}]}, {"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-04T23:41:56.753713+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:36:35.632622+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 no people visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:28.732987+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:32.943804+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:33.452660+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:29.428743+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:33.240606+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockades, landslides, fires, or other hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:32.535084+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:39:33.736125+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:32.732332+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:32.253800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:33.945586+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:34.145697+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:42:03.817345+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "alert_category", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:36:54.339710+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:36:54.621054+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:36:53.922061+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:36:50.028186+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:36:52.744605+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:36:53.021386+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-04T23:36:54.839324+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars parked on the side and a few cars driving on the street. There are trees on both sides of the street and street lights along the road. The image is clear and well-lit."}, {"object": "fire", "timestamp": "2024-02-04T23:36:54.135195+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:36:53.647036+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:36:53.229435+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:36:49.337841+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:36:53.445644+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:40.828257+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:30.860808+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:29.561436+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:31.858655+00:00", "label": "null", "label_explanation": "The image shows a road at night. There are trees on either side of the road. The road is wet from the rain. There is a fallen tree blocking part of the road. There are cars stopped on the road behind the fallen tree."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:29.792383+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T23:42:31.085628+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.076167+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:31.378164+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:25.688915+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.575419+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, but it is still passable with caution."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:31.570561+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:30.384124+00:00", "label": "fallen_tree", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:26.462857+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}]}, {"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-04T23:41:43.626763+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "image_condition", "building_collapse", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:30.635047+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a white car driving through the intersection. The street is lit by streetlights. There are buildings on either side of the street. The buildings are mostly commercial and residential. There are a few trees on the street. The street is wet from the rain. There are some puddles on the street, but they are small and insignificant."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:28.745670+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:42:29.944798+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:29.031746+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:30.141437+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:29.254013+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:25.849796+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:28.546735+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:29.724876+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:25.144559+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:30.361327+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:29.447412+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-04T23:41:50.834324+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "alert_category", "image_condition", "image_description", "landslide", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:42:36.439601+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:40.722379+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:40.046320+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:41.219128+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:40.238950+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:35.715968+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:39.733262+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:40.447680+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:39.526171+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:41.719521+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a gas station on the left side of the road, and a row of trees on the right side. There are cars parked on the side of the road, and the street is wet from the rain. There is a building in the background."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:41.441991+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:40.953742+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:41:16.880520+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:18.545963+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:15.061459+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:19.741722+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:18.851188+00:00", "label": "true", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:15.740936+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:19.537713+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:42:20.030636+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:19.253125+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to significant, larger puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:20.442013+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:20.649023+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with a bus lane. There are cars parked on the side of the road and a motorcycle driving in the bus lane. The street is wet from the rain and there are some puddles on the road. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:20.245536+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:19.061037+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}]}, {"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-04T23:41:48.143132+00:00", "objects": ["inside_tunnel", "alert_category", "traffic_ease_vehicle", "building_collapse", "landslide", "image_condition", "road_blockade_reason", "road_blockade", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:39.119880+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:43.704266+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:44.403533+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.923347+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:44.619033+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.706621+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:43.414376+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:43.210407+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.929738+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:44.137299+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:39.833230+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.898437+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The traffic lights are green for both directions. The road is wet from the rain, but there are no major puddles or blockages. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}]}, {"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-04T23:41:03.357537+00:00", "objects": ["road_blockade_reason", "brt_lane", "alert_category", "image_condition", "fire", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:51.541503+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or blockages."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:51.329262+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for BRT use."}, {"object": "alert_category", "timestamp": "2024-02-04T23:41:52.036984+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:47.320162+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp, with no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:41:47.115830+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:41:52.323705+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. The road surface is slightly wet, but there are no significant puddles or water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:47.819548+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is slightly wet, but there are no significant puddles or water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:05.802040+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or blockages."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:07.916934+00:00", "label": "null", "label_explanation": "The image shows 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 building in the background and a car is driving on the right side of the road. There are some small puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:41:46.907132+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:41:57.876951+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:48.091921+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:41:33.664264+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:24.694625+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:20.873125+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.293507+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:25.764018+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.211912+00:00", "label": "null", "label_explanation": "A night-time view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There is a car and a motorcycle on the street. The car is stopped at a red light and the motorcycle is driving through the intersection. There are buildings and trees on either side of the street. The buildings are mostly dark, but there are a few lights on in the windows. The trees are bare-branched."}, {"object": "fire", "timestamp": "2024-02-04T23:42:25.562858+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:21.498149+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:24.178224+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:24.387772+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:25.089526+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:24.877887+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:25.985062+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:44.665238+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:27.620658+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there is a yellow taxi partially blocking the road. There are trees and buildings on either side of the street. The traffic lights are green and there is a green sign on the left side of the intersection."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:27.418271+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:27.229002+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a yellow taxi, making it difficult for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:26.523050+00:00", "label": "minor", "label_explanation": "The yellow taxi partially blocking the road might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:26.732469+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:25.647696+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:22.426870+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:23.041291+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:25.878756+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large area and is causing a reflection of the lights on the road."}, {"object": "fire", "timestamp": "2024-02-04T23:42:27.011198+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:26.045901+00:00", "label": "partially_blocked", "label_explanation": "There is a yellow taxi partially blocking the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:26.309309+00:00", "label": "car_accident", "label_explanation": "There is a yellow taxi partially blocking the road."}]}, {"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-04T20:42:21.104414+00:00", "objects": ["road_blockade_reason", "fire", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "alert_category", "brt_lane", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:23.588167+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T20:43:24.372553+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:23.288945+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:18.299019+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:24.600499+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:25.082987+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. The street is wet from rain and there are some puddles on the road. There is a yellow traffic light at the intersection and a sign that says 'Pare' (stop). There are buildings on both sides of the street and some trees. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:23.061158+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:23.859920+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:19.259725+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:24.102501+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:22.663505+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:43:24.875584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:00.644928+00:00", "objects": ["landslide", "image_condition", "inside_tunnel", "fire", "water_in_road", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:16.988794+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:14.376636+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.619838+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:16.561577+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:14.793426+00:00", "label": "false", "label_explanation": "There are small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:15.370921+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:16.285546+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:57.176251+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:16.002046+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:15.075117+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:16.790567+00:00", "label": "easy", "label_explanation": "There are small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:17.288732+00:00", "label": "null", "label_explanation": "A night-time view of a city street with a couple walking on the sidewalk. There is a row of parked cars on the street and a fence along the sidewalk. In the background, there is a tall building with a red sign."}]}, {"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-04T23:41:26.188781+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:28.839389+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:28.308391+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:27.306722+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:28.599193+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:29.518469+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. The road is dry and there are no signs of water accumulation or flooding. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:23.618565+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:29.299114+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:29.091936+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or flooding."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:27.584596+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:27.821127+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:28.090882+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:24.336655+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}]}, {"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-04T23:41:36.321378+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "water_in_road", "road_blockade", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.356968+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:24.135608+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:25.623750+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:21.130649+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:24.357899+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:24.623286+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.402870+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are no signs of accidents, fires, or other incidents. The road is well-lit and there are no visible obstructions. The image quality is good and there is no blur or distortion."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:25.921662+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily navigate the road without hindrance."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:20.414281+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:25.119585+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:26.129401+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:24.848814+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:00:58.570738+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:01:42.453910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:01:37.640174+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:01:42.274761+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:01:42.033075+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:01:38.370139+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:01:41.759355+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:01:41.568926+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:01:41.338746+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:01:43.157801+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left side of the road, and a person is standing next to the car. The image is taken from a traffic camera."}, {"object": "image_condition", "timestamp": "2024-02-04T23:01:41.077018+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:01:42.732017+00:00", "label": "easy", "label_explanation": "There are no signs of significant water accumulation on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:01:42.943000+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:05.399407+00:00", "objects": ["water_in_road", "building_collapse", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T23:42:06.725183+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:07.886250+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:08.691305+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:08.105258+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:07.006383+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:57.879991+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.592878+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.298176+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to significant, larger puddles. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:03.218846+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:08.389552+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:08.978535+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are two cars on the road, one black and one white. The black car is in the foreground, and the white car is in the background. The road is wet from the rain, and there are some puddles on the road. There are trees and buildings on either side of the road. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.459192+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:41:55.116831+00:00", "objects": ["fire", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:56.116873+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:56.331122+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. The road surface is mostly dry, with a few small puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:51.747362+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:54.610594+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions affecting the image quality."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:54.820270+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is mostly dry, with a few small puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:55.326947+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no obstructions or blockages."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:56.612303+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:55.040255+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no obstructions or blockages."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:55.540423+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no blockages or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:56.822049+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. The road is lit by streetlights, and the surrounding area is dark. There is a graffiti on the wall and a SOS message painted on the asphalt. The road is not completely visible, but there are no obvious signs of blockages or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:51.030042+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:55.822595+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. The surrounding buildings are intact, with no signs of damage or structural issues."}]}, {"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-04T23:41:35.261957+00:00", "objects": ["brt_lane", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:42:27.065872+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for buses."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:30.079740+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:26.187201+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.362070+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.781760+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T23:42:31.270236+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:30.577038+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:31.068931+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:29.881268+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:32.092070+00:00", "label": "null", "label_explanation": "The image shows a wet road with a bus driving on it. There are trees and buildings on either side of the road. The image is clear and well-lit."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:31.479787+00:00", "label": "easy", "label_explanation": "There is a small amount of water on the road, but it is not enough to cause any problems for vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:31.777667+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}]}, {"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-04T23:41:55.868182+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:43.928342+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:43.140846+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:39.435846+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.638787+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.646646+00:00", "label": "null", "label_explanation": "The image shows a busy intersection at night. There are cars, buses, and trucks driving on the road. The road is wet from the rain. There are buildings and trees on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.348638+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:44.348137+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:43.421843+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:38.727272+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.642733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:44.146648+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:42.856682+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:44.872488+00:00", "objects": ["landslide", "road_blockade_reason", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:28.303127+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:27.093743+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:28.598651+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The road is wet from the rain. There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:26.891093+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:28.092441+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:26.404305+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:27.812421+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:27.379443+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:27.597359+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:26.605512+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:23.595896+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:22.921379+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:41:08.174041+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:04.740727+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.352635+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:48.494675+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no visible signs of an enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.401628+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:57.699270+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:41:58.290021+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:05.614036+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are cars driving on the road, and street lights are on. The road is wet from the rain, but there is no flooding. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:05.014294+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:57.914968+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:41:58.857146+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:51.819762+00:00", "label": "false", "label_explanation": "There are no visible signs of a designated bus rapid transit (BRT) lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:58.592370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-04T23:41:52.821126+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:40.047850+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:39.355165+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:35.840777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:39.146151+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:39.841005+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:38.653710+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:38.928687+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:39.627041+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:35.119901+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:40.321106+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:40.738980+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection. There are cars driving on the street and the street lights are on. The street is wet from the rain and there are some puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:40.534577+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:42:05.755607+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:53.088059+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:53.963222+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:49.283922+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:54.458995+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:54.983114+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. The street is wet from rain and there are cars driving in both directions. There are also people walking on the sidewalks. The buildings are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:52.577891+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:48.466502+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:54.758228+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:52.865297+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:53.663864+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:53.376466+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-04T23:42:54.179052+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:41:43.525323+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:25.225894+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:22.015374+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:21.337237+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.933811+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:25.023429+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:42:26.210636+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.971546+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are no signs of water, landslides, fires, or building collapses. The image quality is good and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:25.519138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:25.716642+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:24.819511+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:26.423691+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water or puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:26.702805+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:52.166962+00:00", "objects": ["image_condition", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:39.746168+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:40.240648+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:36.024927+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:40.735618+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that interfere with city life. The image shows a clear road with manageable puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:42:41.224783+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:40.448747+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:41.444218+00:00", "label": "moderate", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:36.735829+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:41.645301+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:39.952686+00:00", "label": "true", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:41.929952+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. The street is wet from rain and there are large puddles on the road. There are cars parked on the side of the road and a few people are walking across the street. The street lights are on and there is a traffic light at the intersection. There is a building on the corner of the intersection and a tree in front of the building."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:40.950649+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:42:02.880612+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "brt_lane", "road_blockade_reason", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:33:53.703547+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:33:59.511337+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:33:57.430823+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:33:54.438361+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:33:58.140279+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to significant, larger puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:33:58.713825+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:33:57.926670+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, but they do not completely block the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:33:58.410812+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:33:59.246632+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "image_description", "timestamp": "2024-02-04T23:33:59.739606+00:00", "label": "null", "label_explanation": "The image is a night view of a road with cars driving in both directions. There are trees on either side of the road and buildings in the background. The road is wet from the rain and there are some puddles. There is a street light on the left side of the road."}, {"object": "fire", "timestamp": "2024-02-04T23:33:58.930908+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:33:57.647881+00:00", "label": "true", "label_explanation": "There are significant, larger puddles present on the road."}]}, {"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-04T23:41:28.359892+00:00", "objects": ["image_condition", "brt_lane", "fire", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:11.039758+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems. The image quality is poor and the details are not clear."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:12.434158+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for BRT use."}, {"object": "fire", "timestamp": "2024-02-04T23:42:10.754494+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:10.541254+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:14.254535+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a large puddle. The puddle is causing traffic disruptions and making it difficult for vehicles to pass."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:14.734527+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked by a large puddle. The puddle is causing traffic disruptions and making it difficult for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:11.477655+00:00", "label": "true", "label_explanation": "There is significant water on the road. The road is partially covered with a large puddle, making it difficult for vehicles to pass."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:14.937757+00:00", "label": "difficult", "label_explanation": "The road is partially covered with a large puddle, making it difficult for vehicles to pass. Some vehicles may have difficulty navigating through the water."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:15.154745+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. The road is partially blocked by a large puddle, causing traffic disruptions. The surrounding area is dark, with no visible buildings or landmarks. The image is blurry and the details are not clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:13.563495+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:13.131280+00:00", "label": "minor", "label_explanation": "The image shows a minor issue that might affect city life. The road is partially blocked by a large puddle, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:11.729586+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:42:03.541599+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "landslide", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:39:56.102993+00:00", "label": "null", "label_explanation": "The image shows 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 a few trees and buildings in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:55.614049+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:54.202813+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:39:55.404451+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:54.826528+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:53.705513+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:50.720595+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:50.010097+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:54.427189+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:53.912925+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:55.890145+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:55.130541+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:55.659811+00:00", "objects": ["fire", "image_description", "alert_category", "landslide", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:18.724357+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:21.114227+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls. The road is dry and there are no signs of traffic or pedestrians. The image is of good quality and there are no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:20.114569+00:00", "label": "normal", "label_explanation": "The image shows a clear road with no signs of accidents, flooding, or other major issues. The image is of good quality and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:18.505517+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:18.315824+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:18.999852+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:20.316599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:19.412868+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:19.641121+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:19.905593+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:20.837153+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:20.605117+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, 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-04T23:41:38.043905+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:31.034169+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:32.040895+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:30.547935+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:32.239780+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:32.468142+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There are a few cars parked on the side of the road and some trees. The street is wet from the rain."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.820136+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:31.519629+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:42:31.734007+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:31.239229+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:27.345563+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:30.326767+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:26.632286+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T20:44:43.834778+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "brt_lane", "road_blockade", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T20:45:38.528377+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a road in the foreground, with a building to the left and a tunnel entrance to the right. The road is clear, with no signs of traffic or pedestrians. The image is well-lit, with no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:38.029837+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water or other obstructions. Vehicles can easily pass through."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:37.012520+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:36.447686+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:31.720756+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:36.739119+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-04T20:45:37.750964+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:37.538599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:37.233968+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T20:45:36.061963+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:27.552166+00:00", "label": "true", "label_explanation": "The image shows an enclosed structure with artificial lighting, which is characteristic of a tunnel."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:38.244871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T23:41:45.572391+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "alert_category", "traffic_ease_vehicle", "building_collapse", "road_blockade", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:39.676348+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is wet from rain and there are puddles on the road. There is a bike rack on the side of the road and a tree in the background. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-04T23:42:39.043138+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:34.269069+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:34.952880+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:39.469584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:38.568542+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:39.259588+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:38.771103+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:38.141288+00:00", "label": "free", "label_explanation": "There is no blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:37.875612+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:37.654754+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:38.356683+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road."}]}, {"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-04T23:41:56.682177+00:00", "objects": ["image_condition", "water_in_road", "building_collapse", "fire", "image_description", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "brt_lane", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:54.766275+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:54.981221+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:56.071570+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:42:56.290842+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:57.173058+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:55.557417+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:55.806681+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:50.785112+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:56.692801+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:56.965712+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:51.578287+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:55.347520+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:56.584493+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:47.886096+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:46.327586+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:46.781979+00:00", "label": "water_puddle", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:48.166066+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area. There are no signs of any accidents or other disruptions. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:42.677605+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:46.988562+00:00", "label": "minor", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area. This is a minor issue that should be reported."}, {"object": "fire", "timestamp": "2024-02-04T23:42:47.472474+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:46.568338+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:46.009205+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:47.687924+00:00", "label": "moderate", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:43.363780+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:47.263563+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:52.326711+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:52.307890+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:54.208874+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:52.521885+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:52.798682+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:49.416170+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:53.713522+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:54.424636+00:00", "label": "null", "label_explanation": "The image shows 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 are cars parked on the side of the road and people walking on the sidewalk."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:53.509131+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:53.931428+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:48.713267+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:53.220667+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:53.038710+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}] \ No newline at end of file From 306fef20ee9c71fd014c1972503503e52ced51aa Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 23:48:19 +0000 Subject: [PATCH 26/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/utils/utils.py | 3 ++- "app/\360\237\223\243 Home.py" | 10 ++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index c168fcc..c1b2f79 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,8 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode +from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, + GridUpdateMode) from utils.api import APIVisionAI vision_api = APIVisionAI( diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 2127dba..cb7c91f 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -3,14 +3,8 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import ( - create_map, - display_camera_details, - get_agrid_table, - get_cameras, - get_filted_cameras_objects, - treat_data, -) +from utils.utils import (create_map, display_camera_details, get_agrid_table, + get_cameras, get_filted_cameras_objects, treat_data) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) From da58b886c9d729dcd839b91ed96e2d7f6fffdd59 Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 20:54:00 -0300 Subject: [PATCH 27/64] chore: add map --- app/utils/utils.py | 2 +- data/temp/mock_api_data.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index c168fcc..7ae191f 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -188,7 +188,7 @@ def create_map(chart_data, location=None): folium.Marker( location=[row["latitude"], row["longitude"]], # Adicionar id_camera ao tooltip - tooltip=f"ID: {row['id']}", + tooltip=f"ID: {row['id']}
Label: {row['label']}", # Alterar a cor do ícone de acordo com o status icon=folium.features.DivIcon( icon_size=(15, 15), diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index bb40b57..b6d2152 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "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-04T23:41:02.913954+00:00", "objects": ["brt_lane", "fire", "traffic_ease_vehicle", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "road_blockade", "landslide", "alert_category", "inside_tunnel", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:41:55.691878+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:09.219500+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:09.427853+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:09.931994+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. The intersection is well-lit and there are cars and people crossing the road. There are also buildings and trees on either side of the road. The image is clear and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:08.531379+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:07.822376+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:08.041589+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:08.248938+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:09.687053+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:08.726866+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.723296+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:08.953747+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:14.525794+00:00", "objects": ["building_collapse", "fire", "alert_category", "brt_lane", "traffic_ease_vehicle", "image_condition", "road_blockade", "water_in_road", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:09.289308+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:42:09.575766+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:08.992368+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:04.611997+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:09.792371+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:07.978579+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:08.496318+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:08.265682+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:03.793145+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:10.335435+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a green traffic light on the left side of the image and a white car is driving on the right side of the image. There are trees and buildings on either side of the street. The street is wet from the rain."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:10.075609+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:08.781040+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:09.095325+00:00", "objects": ["inside_tunnel", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_description", "alert_category", "road_blockade_reason", "building_collapse", "landslide", "image_condition", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:58.787972+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:05.443757+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:05.715597+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:02.214735+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a bus currently occupying the lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:14.139762+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:06.230646+00:00", "label": "null", "label_explanation": "The image shows a busy intersection at night. There are cars, buses, and people crossing the intersection. The road is wet from the rain, but there are no major puddles or blockages. The traffic lights are on and there are street signs visible."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.960800+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:04.679441+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:05.230904+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.944865+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:03.944577+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:04.243118+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-04T23:41:06.405101+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:08.204363+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.950911+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:01.649321+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:08.521288+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street with cars driving in both directions. There are street lights and buildings on either side of the street. The road is wet from the rain and there are some puddles on the road. There is a gas station on the right side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:07.302437+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:04.745694+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:08.013002+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.437418+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:07.130378+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.634882+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:07.821482+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:08.326856+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:17.301893+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:11.587723+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few cars and motorbikes on the road. The buildings are tall and brightly lit. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:11.144946+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry with minimal water accumulation. There are small, insignificant puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:09.452699+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:06.641206+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:05.891661+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:10.452282+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:09.675543+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:10.167623+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:10.887128+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:11.360798+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:10.675112+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:09.959037+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:40:55.853484+00:00", "objects": ["inside_tunnel", "brt_lane", "fire", "image_description", "landslide", "water_in_road", "road_blockade_reason", "image_condition", "road_blockade", "traffic_ease_vehicle", "alert_category", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:04.613717+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:05.418242+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating BRT use."}, {"object": "fire", "timestamp": "2024-02-04T23:42:09.617495+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:10.298243+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars, buses, and people on the street. The street is lit by streetlights. There are buildings and trees on either side of the street."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:10.092746+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:08.479654+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:08.901680+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:08.205458+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:08.697780+00:00", "label": "free", "label_explanation": "The road is clear with no blockades or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:09.894828+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:09.179069+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:09.403768+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}]}, {"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-04T23:41:11.860684+00:00", "objects": ["inside_tunnel", "water_in_road", "brt_lane", "road_blockade", "image_condition", "road_blockade_reason", "building_collapse", "landslide", "traffic_ease_vehicle", "image_description", "alert_category", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.631529+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:57.673115+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:57.976064+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:41:58.255596+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:57.065434+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:57.395893+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:01.632546+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:41:56.640878+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:41:58.598401+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:02.233886+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image. The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:01.867742+00:00", "label": "minor", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass. This could cause traffic delays and inconvenience for motorists."}, {"object": "fire", "timestamp": "2024-02-04T23:41:56.853021+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}]}, {"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-04T23:41:10.644560+00:00", "objects": ["alert_category", "fire", "landslide", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "water_in_road", "building_collapse"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:42:05.683904+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that interfere with city life. The road is clear, there are no blockades, and the water puddles are manageable."}, {"object": "fire", "timestamp": "2024-02-04T23:42:06.169188+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:06.677564+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:58.796653+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:06.900471+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. It is raining and the street is wet. There are cars parked on the side of the street and a few trees. The street lights are on."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:04.658508+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:05.464523+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to large puddles of water."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:05.207760+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:57.579172+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:06.453376+00:00", "label": "moderate", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:04.929896+00:00", "label": "true", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:05.960758+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:40:54.828664+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:07.418549+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:06.716392+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:07.916335+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:07.641505+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:06.518465+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.214886+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:08.411406+00:00", "label": "null", "label_explanation": "The image shows a wet road with some puddles. There is a bridge in the background and a yellow car driving on the right side of the road. There are trees and buildings on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.229647+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:08.147800+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:38.542656+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.007321+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:42.809187+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:40:54.869748+00:00", "objects": ["brt_lane", "image_description", "road_blockade", "traffic_ease_vehicle", "landslide", "water_in_road", "inside_tunnel", "road_blockade_reason", "image_condition", "fire", "alert_category", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:41:46.291617+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:41:58.291241+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a car driving on the right side of the road. There are no other cars on the road. The street is lit by streetlights. There are buildings and trees on either side of the road. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:41:52.594435+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:41:56.672967+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:41:57.418703+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:52.322341+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:45.430328+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:52.837172+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:52.037267+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:41:53.727226+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:41:53.015724+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:41:53.454690+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:00.262502+00:00", "objects": ["inside_tunnel", "image_description", "road_blockade_reason", "fire", "brt_lane", "water_in_road", "road_blockade", "landslide", "alert_category", "image_condition", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:58.124413+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:06.994593+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a church on the left side of the image and a building on the right side. The street is wet from the rain and there are some puddles on the road. There is a green traffic light in the foreground."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:05.618097+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:06.233457+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:58.883040+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:05.119523+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:05.346416+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:06.714454+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:05.819474+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:04.831853+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:06.015420+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:06.510234+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-04T23:40:49.781533+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "road_blockade", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:03.950894+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are larger puddles on the road, but they are still navigable for most vehicles. The surrounding buildings are intact and there are no signs of collapse or structural damage. There is no evidence of fire, landslide, or any other issues that would interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:01.835138+00:00", "label": "true", "label_explanation": "There are larger puddles on the road, but they are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:03.721065+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:52.579347+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:02.747219+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:51.738828+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:58.796211+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:03.158135+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:02.204134+00:00", "label": "partially_blocked", "label_explanation": "There are larger puddles and a fallen tree on the road, but the road is still partially passable."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:02.953523+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:02.478246+00:00", "label": "water_puddle", "label_explanation": "There are larger puddles on the road, but they are still navigable for most vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:03.436304+00:00", "label": "moderate", "label_explanation": "There are larger puddles on the road, but they are still navigable for most vehicles."}]}, {"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-04T23:36:13.331650+00:00", "objects": ["inside_tunnel", "image_description", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:36:50.738666+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:36:56.636857+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or disruptions. There are no signs of accidents, fires, or other incidents. The road is dry and there is no visible water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:36:56.202277+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:36:55.715681+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:36:55.926642+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:36:51.533431+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:36:54.516098+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:36:56.427477+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:36:55.017366+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:36:55.224177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:36:55.435785+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockages or disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:36:54.731033+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:41:03.653484+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "road_blockade", "image_description", "traffic_ease_vehicle", "inside_tunnel", "fire", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:08.955034+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:07.175474+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.659711+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.939187+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.936433+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:03.985980+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:07.445316+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:09.174877+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is wet from the rain and there are some puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:08.680990+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:03.260229+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:08.468501+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:08.165079+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:40:57.430701+00:00", "objects": ["image_description", "inside_tunnel", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:39:07.742609+00:00", "label": "null", "label_explanation": "A night-time image of a road with a car driving in the right lane. There are trees and foliage on either side of the road. The road is wet from rain, but there is no flooding. There are no visible obstructions or hazards on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.295752+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:04.937565+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:07.217745+00:00", "label": "easy", "label_explanation": "The road is slightly wet, but there are no significant puddles or signs of flooding. Vehicles can pass through the area with ease."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:03.275042+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.374885+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:03.503626+00:00", "label": "false", "label_explanation": "There is no presence of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:56.881913+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:03.875810+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.697352+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.389923+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:04.184661+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:40:55.014298+00:00", "objects": ["building_collapse", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "fire", "landslide", "image_description", "road_blockade"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.435554+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:00.148036+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:00.554867+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:52.256221+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:56.990305+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:04.989346+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:03.966287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.240626+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-04T23:42:04.746498+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.234616+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:11.601321+00:00", "label": "null", "label_explanation": "The image shows a night scene of a wide avenue with a BRT lane. There is a bus driving in the BRT lane and several cars on the regular lanes. On the left side of the image, there are some parked cars and people walking on the sidewalk. In the background, there are some buildings and trees."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:03.585721+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:40:52.848653+00:00", "objects": ["landslide", "brt_lane", "alert_category", "fire", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "road_blockade", "image_condition", "road_blockade_reason", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:41:57.013496+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:47.105127+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:41:53.465946+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "fire", "timestamp": "2024-02-04T23:41:53.970679+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:41:53.735693+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:14.202546+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:46.017531+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:41:52.841868+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:52.222067+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:53.108713+00:00", "label": "free", "label_explanation": "There are no signs of road blockade. The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:41:57.241243+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the entire road, making it impassable for vehicles. There is a car stopped behind the tree. The image is clear and the colors are accurate."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:52.580652+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:41:08.056646+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:03.580874+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:57.433761+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:00.829061+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:00.564804+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.047671+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.327819+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.089088+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:04.569898+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:05.393739+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is wet from rain and there are a few puddles on the road. There is a red motorcycle on the right side of the image. The street is lined with trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:04.819723+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:03.834484+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.969206+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:41:00.549949+00:00", "objects": ["road_blockade", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide", "alert_category", "image_condition", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:04.405725+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:38.825948+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:41:56.659159+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:41:37.019993+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:41:58.289327+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:58.851907+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:11.068240+00:00", "label": "null", "label_explanation": "The image is of a street scene in Rio de Janeiro. It is nighttime and the street is lit by streetlights. There are cars and motorcycles on the street, and people are walking on the sidewalks. There are trees and buildings on either side of the street."}, {"object": "landslide", "timestamp": "2024-02-04T23:41:36.785729+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:11.660541+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:58.593116+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:37.968527+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:04.668822+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-04T23:41:01.063024+00:00", "objects": ["alert_category", "water_in_road", "brt_lane", "image_condition", "inside_tunnel", "road_blockade_reason", "road_blockade", "fire", "landslide", "image_description", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:42:08.643930+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:08.148194+00:00", "label": "true", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:05.817816+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:07.938217+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:05.149387+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:08.514410+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:08.331358+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road."}, {"object": "fire", "timestamp": "2024-02-04T23:42:09.010045+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:09.326027+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:09.544328+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars driving in both directions. The road is wet from the rain and there are puddles on the ground. The street lights are on and there are buildings and trees on either side of the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:08.834842+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:09.207147+00:00", "label": "moderate", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road."}]}, {"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-04T23:40:51.102713+00:00", "objects": ["road_blockade", "inside_tunnel", "brt_lane", "image_description", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "building_collapse", "road_blockade_reason", "alert_category", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:41:58.833669+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:51.570255+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:52.208739+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:05.610150+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.388202+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:05.201853+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:58.587847+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:42:04.988014+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.706524+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:01.841746+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:04.406539+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:58.288348+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:42:00.516189+00:00", "objects": ["alert_category", "road_blockade_reason", "image_description", "brt_lane", "image_condition", "fire", "inside_tunnel", "water_in_road", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:42:55.876106+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:55.658720+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:43.853018+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and motorbikes on the road, and trees and buildings on either side of the road. The street is lit by streetlights."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:52.090824+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:54.917918+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:56.287552+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:51.479286+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:55.176856+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:56.874738+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:56.073782+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:56.563948+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:55.406642+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:40:52.738934+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:13.422058+00:00", "label": "null", "label_explanation": "The image is showing a road with a clear sky. There are no visible cars on the road. The road is surrounded by trees and buildings."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:11.423994+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:11.637686+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:12.426538+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:07.357448+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:12.635674+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:12.140591+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, water, or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:11.134885+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:13.129600+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:12.919568+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. There is no water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:08.051536+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:11.920265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:58.532291+00:00", "objects": ["road_blockade", "landslide", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:42.719093+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:44.115892+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:43.215688+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.433989+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:42.932509+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:43.914874+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.223876+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:39.453467+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:43.629355+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.425665+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:38.824202+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.407484+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. The road is wet from the rain and there are some puddles, but the traffic is still flowing smoothly. There are no signs of any accidents or other incidents."}]}, {"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-04T23:42:03.000075+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "brt_lane", "fire", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:50.519998+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, but they do not completely block the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:51.944425+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:50.044185+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:51.728921+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:50.236970+00:00", "label": "true", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:50.738734+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to significant, larger puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:46.954079+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "fire", "timestamp": "2024-02-04T23:42:51.451066+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:52.229603+00:00", "label": "null", "label_explanation": "The image shows a night view of a city street with cars, a motorcycle, and a bus driving on the wet road. There are significant, larger puddles present on the road. The street is lit by streetlights. There are buildings and trees on either side of the street. The sky is cloudy."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:51.236509+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:50.970571+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:46.232321+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:41:54.017363+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "building_collapse", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:40.919144+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:41.838472+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:42.127066+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:41.427684+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:36.714610+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:40.640625+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:41.126993+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:37.360653+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:41.634789+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:40.223175+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:42.335346+00:00", "label": "null", "label_explanation": "A night-time image of a road intersection. There are cars and motorbikes on the road, and the traffic lights are on. The road is wet from the rain, and there are some puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:40.441237+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-04T23:42:08.546262+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "alert_category", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:49.715532+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:50.526379+00:00", "label": "false", "label_explanation": "There is no bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:53.919284+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:53.699308+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:42:55.007365+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:54.189361+00:00", "label": "water_puddle", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:54.487730+00:00", "label": "major", "label_explanation": "There are major issues that affect city life, such as floodings, accidents, fire, etc..."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:54.809592+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:55.302718+00:00", "label": "moderate", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:53.482955+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:55.813740+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The road is wet from the rain. There are buildings and trees on either side of the road. The sky is dark and cloudy."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:55.514760+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:41:56.922799+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:42.503488+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:43.703534+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:39.211240+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.139191+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are two vehicles on the road, a car and a motorcycle. The car is black and the motorcycle is red and white. The road is wet from the rain and there are some puddles on the road. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.283726+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:38.505283+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.214831+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:42.986517+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:42:43.418335+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:43.910241+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.024931+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:42.718593+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:42:03.537172+00:00", "objects": ["brt_lane", "road_blockade_reason", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:42:40.124443+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:42.694297+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.214289+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:38.821752+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with a slight curve to the right. The tunnel is well-lit and there are no obstructions visible."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:42.911415+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:42.428522+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:43.832768+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:43.603303+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.133021+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.068794+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a slight curve to the right. The tunnel is well-lit and there are no obstructions visible. There are two cars in the image, both of which are driving in the same direction. The cars are not causing any traffic congestion and there are no other vehicles visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T23:42:43.328955+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.004785+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:41:32.496340+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:31.819176+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars and buses on the street, and people are walking on the sidewalk. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.697880+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:30.420875+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:29.786924+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:30.905943+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:29.993418+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:26.918140+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.212146+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:31.390832+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:26.206068+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:31.119559+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:31.617610+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:42.608719+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "road_blockade_reason", "building_collapse", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:44.720191+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:44.234609+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:43.742005+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.837135+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:43.552023+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:44.023866+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:43.330355+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:43.049441+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:44.436368+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.950300+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There are cars parked on the side of the road and a bus is driving through the intersection. There are trees and buildings in the background."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:39.434483+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:40.119923+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:41:21.162754+00:00", "objects": ["image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:23.151016+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:25.253564+00:00", "label": "null", "label_explanation": "The image shows a night view of a park with a road in the foreground. The park is surrounded by a fence and there are trees and lampuposts inside. The road is wet from the rain and there are some puddles, but it is still passable. There is a crosswalk in the foreground."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:23.645139+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:24.831522+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:23.430400+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:24.148834+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:19.840957+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:25.051122+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:24.554219+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:24.348108+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:23.850661+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:20.449422+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:41:18.319837+00:00", "objects": ["building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "image_description", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:18.298738+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:19.002954+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:13.694722+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:17.559798+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:17.784855+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:18.492775+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:17.979485+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:18.830337+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:19.274644+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left lane, behind the fallen tree. There are no people visible in the image."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:14.389874+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:17.073582+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:17.293787+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:41:22.950215+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "building_collapse", "alert_category", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:24.814626+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:25.329553+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:24.035685+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:23.310879+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:25.009474+00:00", "label": "easy", "label_explanation": "There are small puddles of water on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:23.838722+00:00", "label": "free", "label_explanation": "There are no visible blockades or obstructions on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:20.313999+00:00", "label": "false", "label_explanation": "There are no visible markings or signs indicating a designated bus rapid transit (BRT) lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:24.562967+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse in the image. All buildings are intact, with no visible damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:24.318451+00:00", "label": "normal", "label_explanation": "There are no visible signs of any problems that might interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:23.520613+00:00", "label": "null", "label_explanation": "The image shows a road intersection at night. There is a significant amount of water on the road, making it difficult for vehicles to pass. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:23.544469+00:00", "label": "false", "label_explanation": "There are small puddles of water on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:19.615745+00:00", "label": "false", "label_explanation": "The image does not show any signs of being inside a tunnel, such as enclosed structures or tunnel walls."}]}, {"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-04T23:41:51.227129+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:32.176480+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:33.768045+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through without hindrance."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:28.562843+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:33.556686+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:32.370036+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:34.353002+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are no signs of accidents, fires, or other incidents. The road is well-lit, and the weather conditions appear to be clear."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:33.088019+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:32.584304+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:33.346653+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:29.251824+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating its use for bus rapid transit."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:34.093590+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:32.853549+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:41:27.415691+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "alert_category", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:20.255413+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:23.967108+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:26.137097+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:24.956177+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:24.251756+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.254116+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:25.830514+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There are no signs of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:24.460238+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:20.953129+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:25.497824+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:24.748861+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.361678+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a bus lane on the left side. There is a tree on the right side of the road. The road is dry and there are no signs of water or debris. The image is clear and there are no obstructions."}]}, {"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-04T23:42:04.264819+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_description", "landslide", "alert_category", "image_condition", "fire", "building_collapse", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:49.649629+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or disruptions. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:48.354094+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:48.639286+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:50.124292+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are no visible signs of accidents, fires, or other incidents. The road is dry and there is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:49.849602+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:48.931647+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:47.839718+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:39:49.450934+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:49.159321+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:48.120046+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:43.753125+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:44.545491+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}]}, {"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-04T23:42:01.610726+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:39:46.015621+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:44.212263+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:39:45.518756+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:45.804324+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:41.520470+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:45.118794+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:46.328276+00:00", "label": "null", "label_explanation": "A night time image of a four lane road with trees on either side. There is a red car driving in the right lane and a black truck in the left lane. The road is wet from rain and there are some small puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:40.832919+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:44.421322+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:44.908509+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:45.313928+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:44.633097+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:42:03.593504+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:49.744616+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:50.648644+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-04T23:42:50.436452+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:50.851552+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:46.354547+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:49.057280+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:45.738153+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:49.948495+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:49.253487+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:51.138054+00:00", "label": "null", "label_explanation": "The image shows a wide, empty street with a school sign on the right side. There are no cars or people on the street. The street is lined with trees and buildings. The image is clear and well-lit."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:49.545144+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:50.226646+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:54.125957+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:38.000687+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:38.503500+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:33.685098+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:38.708633+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:38.984834+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not enough to impede traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:37.578913+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:34.391659+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:37.798975+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, and the puddles are small and manageable."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:39.206856+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:37.319923+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:38.289200+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:39.487196+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}]}, {"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-04T20:44:55.103646+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T20:45:52.590194+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:54.412368+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T20:45:54.748023+00:00", "label": "null", "label_explanation": "The image shows a road scene with a fallen tree blocking the road. There are cars on the road and a gas station on the side. The road is wet from the rain and there are some puddles. The sky is cloudy and there are some trees in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:53.287322+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:49.050740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T20:45:53.985899+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:53.006170+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:53.763165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:49.812743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:52.807710+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:53.496942+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:54.201851+00:00", "label": "difficult", "label_explanation": "There are large puddles on the road, but they are not deep enough to impede vehicle movement."}]}, {"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-04T23:42:01.760619+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "fire", "brt_lane", "image_description", "building_collapse", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:39:51.444650+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:53.120983+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:52.148518+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:51.738224+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:47.916836+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:39:52.917371+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:48.622940+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:53.619397+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is wet from rain and there are some puddles on the road. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:52.640225+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:53.343423+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:51.940948+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:52.427018+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T23:41:31.053685+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:19.811295+00:00", "label": "difficult", "label_explanation": "There is a partial portion of the road covered with medium water level."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:14.416617+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:20.302997+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 walking around. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-04T23:42:19.586233+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:15.212233+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:19.305331+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:18.400013+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:19.090320+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life. The fallen tree is blocking the road and causing traffic disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:18.620347+00:00", "label": "totally_blocked", "label_explanation": "There are features that are blocking traffic. The fallen tree is completely blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:18.184610+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:20.091482+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:18.891782+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-04T23:41:52.966331+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "road_blockade_reason", "building_collapse", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T23:42:45.338631+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:41.246603+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:45.952213+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:45.761540+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:46.229412+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:47.140012+00:00", "label": "null", "label_explanation": "The image shows a road at night. There are trees and buildings on either side of the road. The road is wet from the rain. There is a car driving on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:45.542306+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:46.643814+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:45.123647+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:42.057886+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:46.866363+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:46.432522+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:40:54.640923+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "landslide", "fire", "image_condition", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "road_blockade", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:09.401053+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no traffic lights or signs visible in the image. The road surface is mostly dry with a few small puddles. There are cars and motorbikes driving on the road. There are also people walking on the sidewalk. The buildings along the road are mostly residential and commercial. There are trees and other vegetation on the side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:37.449254+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:38.139551+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:08.845384+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:07.917138+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.458328+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.133940+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:06.735592+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:08.323333+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry with minimal water accumulation. There are small, insignificant puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:06.950133+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.412110+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:07.643965+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact with no visible damage or structural issues."}]}, {"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-04T23:40:58.364344+00:00", "objects": ["brt_lane", "road_blockade", "image_description", "image_condition", "road_blockade_reason", "alert_category", "fire", "inside_tunnel", "water_in_road", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:42:07.004425+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:10.582619+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:12.603469+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars parked on the side of the road and a few people are walking. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:10.007706+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:10.803869+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:11.111290+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:42:11.814997+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:06.002849+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:10.312815+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:12.096794+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:12.330061+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:11.405389+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:29.932502+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "landslide", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:29.551996+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:25.763117+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:31.237560+00:00", "label": "easy", "label_explanation": "The road is dry and there is no water on the road. Vehicles can pass through the area without difficulty."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:26.586061+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:30.237111+00:00", "label": "car_accident", "label_explanation": "There is a police car on the side of the road. The road is not completely blocked, but the car is partially blocking the right lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:31.746682+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a police car on the side of the road. The road is not completely blocked, but the car is partially blocking the right lane. There is a building on the left side of the road and a tree on the right side. The road is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:30.732831+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:29.758609+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry."}, {"object": "fire", "timestamp": "2024-02-04T23:42:30.967571+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.478845+00:00", "label": "minor", "label_explanation": "There is a police car on the side of the road. The road is not completely blocked, but the car is partially blocking the right lane. This could cause minor traffic disruptions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:31.467344+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.033915+00:00", "label": "partially_blocked", "label_explanation": "There is a police car on the side of the road. The road is not completely blocked, but the car is partially blocking the right lane."}]}, {"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-04T20:42:23.022360+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_description", "image_condition", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T20:43:21.901631+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:15.376418+00:00", "label": "false", "label_explanation": "The image shows the outside environment with buildings and cars passing by. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:16.099703+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:20.512393+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to large puddles. Vehicles can still pass through, but with some difficulty."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:19.583154+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:21.614673+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "fire", "timestamp": "2024-02-04T20:43:21.408708+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:21.003969+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:22.173458+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars driving in both directions. There are large puddles on the road, but they are not completely blocking traffic. The cars are driving slowly and carefully. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:19.357974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:19.806659+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, but they are not completely blocking traffic. Vehicles can still pass through, although with some difficulty."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:20.781115+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The traffic is flowing smoothly, and there are no signs of accidents, fires, or other disruptions."}]}, {"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-04T23:41:25.823795+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:18.827808+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:17.055819+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:18.540946+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:17.837826+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:19.247703+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with no visible obstructions or issues. The road is surrounded by trees and buildings, with a clear sky overhead. There are no signs of traffic or pedestrians."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:17.338135+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:17.581984+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:14.237356+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:18.325766+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:13.533821+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:18.046691+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:19.051014+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:24.737579+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:30.446808+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:31.218645+00:00", "label": "null", "label_explanation": "A night-time image of a wide, urban road with a central reservation and trees on either side. Street lights illuminate the road, and there are buildings and shops on either side of the road. The road is relatively quiet, with only a few cars and motorbikes visible. The image is clear and there are no visible obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:29.743477+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:29.036166+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:29.316565+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:30.933680+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:30.718869+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:26.131627+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:25.343012+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:30.232534+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:29.530061+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.004724+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-04T23:41:44.928971+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_condition", "image_description", "building_collapse", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:25.121137+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:25.623969+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:24.914734+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:21.033687+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:24.704402+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.831076+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree on the road, blocking traffic. There is a car stopped in front of the tree. There are no people visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.915150+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:21.737909+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:26.348613+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:25.408257+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:26.634068+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:26.131403+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:41:57.853809+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:39:36.879169+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:31.709380+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:35.899065+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:35.422797+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:37.119418+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:32.431117+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:35.644817+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:36.395872+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:37.612391+00:00", "label": "null", "label_explanation": "The image shows 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 a few trees and buildings in the background."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:36.628538+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:36.132234+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:37.331928+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:53.606958+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "image_description", "image_condition", "brt_lane", "fire", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:41.832101+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:42.242033+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:42.725751+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:42.042322+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:37.746880+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:43.148193+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. The intersection is well-lit and there are several cars and people crossing the road. The road is wet from the rain and there are some puddles on the ground. There is a building on the left side of the intersection and a tree on the right side. The sky is dark and cloudy."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:41.145035+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:38.441538+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:42.545478+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:41.626425+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:42.933277+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:41.423034+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}]}, {"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-04T23:41:56.753713+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:36:35.632622+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 no people visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:28.732987+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:32.943804+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:33.452660+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:29.428743+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:33.240606+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockades, landslides, fires, or other hazards."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:32.535084+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:39:33.736125+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:32.732332+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:32.253800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:33.945586+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:34.145697+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:42:03.817345+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "alert_category", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:36:54.339710+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:36:54.621054+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:36:53.922061+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:36:50.028186+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:36:52.744605+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:36:53.021386+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-04T23:36:54.839324+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars parked on the side and a few cars driving on the street. There are trees on both sides of the street and street lights along the road. The image is clear and well-lit."}, {"object": "fire", "timestamp": "2024-02-04T23:36:54.135195+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:36:53.647036+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:36:53.229435+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:36:49.337841+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:36:53.445644+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:40.828257+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:30.860808+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:29.561436+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:31.858655+00:00", "label": "null", "label_explanation": "The image shows a road at night. There are trees on either side of the road. The road is wet from the rain. There is a fallen tree blocking part of the road. There are cars stopped on the road behind the fallen tree."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:29.792383+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "fire", "timestamp": "2024-02-04T23:42:31.085628+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.076167+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:31.378164+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:25.688915+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.575419+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, but it is still passable with caution."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:31.570561+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:30.384124+00:00", "label": "fallen_tree", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:26.462857+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}]}, {"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-04T23:41:43.626763+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "image_condition", "building_collapse", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:30.635047+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a white car driving through the intersection. The street is lit by streetlights. There are buildings on either side of the street. The buildings are mostly commercial and residential. There are a few trees on the street. The street is wet from the rain. There are some puddles on the street, but they are small and insignificant."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:28.745670+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:42:29.944798+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:29.031746+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:30.141437+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:29.254013+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:25.849796+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:28.546735+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:29.724876+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:25.144559+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:30.361327+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:29.447412+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-04T23:41:50.834324+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "alert_category", "image_condition", "image_description", "landslide", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:42:36.439601+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:40.722379+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:40.046320+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:41.219128+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:40.238950+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:35.715968+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:39.733262+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:40.447680+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:39.526171+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:41.719521+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a gas station on the left side of the road, and a row of trees on the right side. There are cars parked on the side of the road, and the street is wet from the rain. There is a building in the background."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:41.441991+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:40.953742+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:41:16.880520+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:18.545963+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:15.061459+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:19.741722+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:18.851188+00:00", "label": "true", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:15.740936+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:19.537713+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:42:20.030636+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:19.253125+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to significant, larger puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:20.442013+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:20.649023+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with a bus lane. There are cars parked on the side of the road and a motorcycle driving in the bus lane. The street is wet from the rain and there are some puddles on the road. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:20.245536+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:19.061037+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, which could cause minor traffic disruptions but are still navigable for most vehicles."}]}, {"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-04T23:41:48.143132+00:00", "objects": ["inside_tunnel", "alert_category", "traffic_ease_vehicle", "building_collapse", "landslide", "image_condition", "road_blockade_reason", "road_blockade", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:39.119880+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:43.704266+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:44.403533+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.923347+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:44.619033+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.706621+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:43.414376+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:43.210407+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.929738+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:42:44.137299+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:39.833230+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.898437+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The traffic lights are green for both directions. The road is wet from the rain, but there are no major puddles or blockages. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}]}, {"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-04T23:41:03.357537+00:00", "objects": ["road_blockade_reason", "brt_lane", "alert_category", "image_condition", "fire", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:51.541503+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or blockages."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:51.329262+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for BRT use."}, {"object": "alert_category", "timestamp": "2024-02-04T23:41:52.036984+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:47.320162+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp, with no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:41:47.115830+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:41:52.323705+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. The road surface is slightly wet, but there are no significant puddles or water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:47.819548+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is slightly wet, but there are no significant puddles or water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:05.802040+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or blockages."}, {"object": "image_description", "timestamp": "2024-02-04T23:39:07.916934+00:00", "label": "null", "label_explanation": "The image shows 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 building in the background and a car is driving on the right side of the road. There are some small puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:41:46.907132+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:41:57.876951+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:48.091921+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:41:33.664264+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:24.694625+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:20.873125+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.293507+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:25.764018+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.211912+00:00", "label": "null", "label_explanation": "A night-time view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There is a car and a motorcycle on the street. The car is stopped at a red light and the motorcycle is driving through the intersection. There are buildings and trees on either side of the street. The buildings are mostly dark, but there are a few lights on in the windows. The trees are bare-branched."}, {"object": "fire", "timestamp": "2024-02-04T23:42:25.562858+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:21.498149+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:24.178224+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:24.387772+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:25.089526+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:24.877887+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:25.985062+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:44.665238+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:27.620658+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there is a yellow taxi partially blocking the road. There are trees and buildings on either side of the street. The traffic lights are green and there is a green sign on the left side of the intersection."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:27.418271+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:27.229002+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a yellow taxi, making it difficult for vehicles to pass."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:26.523050+00:00", "label": "minor", "label_explanation": "The yellow taxi partially blocking the road might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:26.732469+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:25.647696+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:22.426870+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:23.041291+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:25.878756+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering a large area and is causing a reflection of the lights on the road."}, {"object": "fire", "timestamp": "2024-02-04T23:42:27.011198+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:26.045901+00:00", "label": "partially_blocked", "label_explanation": "There is a yellow taxi partially blocking the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:26.309309+00:00", "label": "car_accident", "label_explanation": "There is a yellow taxi partially blocking the road."}]}, {"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-04T20:42:21.104414+00:00", "objects": ["road_blockade_reason", "fire", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "alert_category", "brt_lane", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:23.588167+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T20:43:24.372553+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:23.288945+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:18.299019+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:24.600499+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:25.082987+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. The street is wet from rain and there are some puddles on the road. There is a yellow traffic light at the intersection and a sign that says 'Pare' (stop). There are buildings on both sides of the street and some trees. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:23.061158+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:23.859920+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:19.259725+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:24.102501+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:22.663505+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:43:24.875584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:00.644928+00:00", "objects": ["landslide", "image_condition", "inside_tunnel", "fire", "water_in_road", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:16.988794+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:14.376636+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:53.619838+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:42:16.561577+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:14.793426+00:00", "label": "false", "label_explanation": "There are small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:15.370921+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:16.285546+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:57.176251+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:16.002046+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:15.075117+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:16.790567+00:00", "label": "easy", "label_explanation": "There are small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:17.288732+00:00", "label": "null", "label_explanation": "A night-time view of a city street with a couple walking on the sidewalk. There is a row of parked cars on the street and a fence along the sidewalk. In the background, there is a tall building with a red sign."}]}, {"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-04T23:41:26.188781+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:28.839389+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:28.308391+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:27.306722+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:28.599193+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:29.518469+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. The road is dry and there are no signs of water accumulation or flooding. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:23.618565+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:29.299114+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:29.091936+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or flooding."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:27.584596+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:27.821127+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:28.090882+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:24.336655+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}]}, {"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-04T23:41:36.321378+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "water_in_road", "road_blockade", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.356968+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:24.135608+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:25.623750+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:21.130649+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:24.357899+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:24.623286+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.402870+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are no signs of accidents, fires, or other incidents. The road is well-lit and there are no visible obstructions. The image quality is good and there is no blur or distortion."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:25.921662+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily navigate the road without hindrance."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:20.414281+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:25.119585+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:26.129401+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:24.848814+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:00:58.570738+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:01:42.453910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:01:37.640174+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:01:42.274761+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:01:42.033075+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:01:38.370139+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:01:41.759355+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:01:41.568926+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:01:41.338746+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:01:43.157801+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left side of the road, and a person is standing next to the car. The image is taken from a traffic camera."}, {"object": "image_condition", "timestamp": "2024-02-04T23:01:41.077018+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:01:42.732017+00:00", "label": "easy", "label_explanation": "There are no signs of significant water accumulation on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:01:42.943000+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:05.399407+00:00", "objects": ["water_in_road", "building_collapse", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T23:42:06.725183+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:07.886250+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:08.691305+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:42:08.105258+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:07.006383+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:57.879991+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:07.592878+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:07.298176+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to significant, larger puddles. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:03.218846+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:08.389552+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles on the road. The puddles are causing minor traffic disruptions but are still navigable for most vehicles."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:08.978535+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are two cars on the road, one black and one white. The black car is in the foreground, and the white car is in the background. The road is wet from the rain, and there are some puddles on the road. There are trees and buildings on either side of the road. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:06.459192+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:41:55.116831+00:00", "objects": ["fire", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:56.116873+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:56.331122+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. The road surface is mostly dry, with a few small puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:51.747362+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:54.610594+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions affecting the image quality."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:54.820270+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is mostly dry, with a few small puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:55.326947+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no obstructions or blockages."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:56.612303+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:55.040255+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no obstructions or blockages."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:55.540423+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no blockages or hazards."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:56.822049+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. The road is lit by streetlights, and the surrounding area is dark. There is a graffiti on the wall and a SOS message painted on the asphalt. The road is not completely visible, but there are no obvious signs of blockages or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:51.030042+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:55.822595+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. The surrounding buildings are intact, with no signs of damage or structural issues."}]}, {"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-04T23:41:35.261957+00:00", "objects": ["brt_lane", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:42:27.065872+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for buses."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:30.079740+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:26.187201+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.362070+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:30.781760+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "fire", "timestamp": "2024-02-04T23:42:31.270236+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:30.577038+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:31.068931+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:29.881268+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:32.092070+00:00", "label": "null", "label_explanation": "The image shows a wet road with a bus driving on it. There are trees and buildings on either side of the road. The image is clear and well-lit."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:31.479787+00:00", "label": "easy", "label_explanation": "There is a small amount of water on the road, but it is not enough to cause any problems for vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:31.777667+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}]}, {"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-04T23:41:55.868182+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:43.928342+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:43.140846+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:39.435846+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:42.638787+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:44.646646+00:00", "label": "null", "label_explanation": "The image shows a busy intersection at night. There are cars, buses, and trucks driving on the road. The road is wet from the rain. There are buildings and trees on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:42.348638+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:44.348137+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:43.421843+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:38.727272+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:43.642733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:44.146648+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:42.856682+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:44.872488+00:00", "objects": ["landslide", "road_blockade_reason", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:28.303127+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:27.093743+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:28.598651+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The road is wet from the rain. There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:26.891093+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:28.092441+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:26.404305+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:42:27.812421+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:27.379443+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:27.597359+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:26.605512+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:23.595896+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:22.921379+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:41:08.174041+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:04.740727+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:05.352635+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:41:48.494675+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no visible signs of an enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:04.401628+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "image_condition", "timestamp": "2024-02-04T23:41:57.699270+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:41:58.290021+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:05.614036+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are cars driving on the road, and street lights are on. The road is wet from the rain, but there is no flooding. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:05.014294+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:41:57.914968+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:41:58.857146+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:41:51.819762+00:00", "label": "false", "label_explanation": "There are no visible signs of a designated bus rapid transit (BRT) lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:41:58.592370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-04T23:41:52.821126+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:40.047850+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:39.355165+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:35.840777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:39.146151+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:39.841005+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:38.653710+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:38.928687+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:39.627041+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:35.119901+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:40.321106+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:40.738980+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection. There are cars driving on the street and the street lights are on. The street is wet from the rain and there are some puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:40.534577+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:42:05.755607+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:53.088059+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:53.963222+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:49.283922+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:54.458995+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:54.983114+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. The street is wet from rain and there are cars driving in both directions. There are also people walking on the sidewalks. The buildings are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:52.577891+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:48.466502+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:54.758228+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:52.865297+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:53.663864+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:53.376466+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-04T23:42:54.179052+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:41:43.525323+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:42:25.225894+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:22.015374+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:21.337237+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:25.933811+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:25.023429+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:42:26.210636+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:26.971546+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are no signs of water, landslides, fires, or building collapses. The image quality is good and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:25.519138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:25.716642+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:24.819511+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:26.423691+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water or puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:26.702805+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:41:52.166962+00:00", "objects": ["image_condition", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:39.746168+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:40.240648+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:36.024927+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:40.735618+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that interfere with city life. The image shows a clear road with manageable puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:42:41.224783+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:40.448747+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:41.444218+00:00", "label": "moderate", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:36.735829+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:41.645301+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:39.952686+00:00", "label": "true", "label_explanation": "There are large puddles indicative of significant water accumulation. However, the puddles are not extensive enough to block the road or cause major traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:41.929952+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. The street is wet from rain and there are large puddles on the road. There are cars parked on the side of the road and a few people are walking across the street. The street lights are on and there is a traffic light at the intersection. There is a building on the corner of the intersection and a tree in front of the building."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:40.950649+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:42:02.880612+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "brt_lane", "road_blockade_reason", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:33:53.703547+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:33:59.511337+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:33:57.430823+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:33:54.438361+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:33:58.140279+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to significant, larger puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:33:58.713825+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:33:57.926670+00:00", "label": "partially_blocked", "label_explanation": "There are significant, larger puddles present on the road, but they do not completely block the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:33:58.410812+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:33:59.246632+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles present on the road."}, {"object": "image_description", "timestamp": "2024-02-04T23:33:59.739606+00:00", "label": "null", "label_explanation": "The image is a night view of a road with cars driving in both directions. There are trees on either side of the road and buildings in the background. The road is wet from the rain and there are some puddles. There is a street light on the left side of the road."}, {"object": "fire", "timestamp": "2024-02-04T23:33:58.930908+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:33:57.647881+00:00", "label": "true", "label_explanation": "There are significant, larger puddles present on the road."}]}, {"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-04T23:41:28.359892+00:00", "objects": ["image_condition", "brt_lane", "fire", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:11.039758+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems. The image quality is poor and the details are not clear."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:12.434158+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for BRT use."}, {"object": "fire", "timestamp": "2024-02-04T23:42:10.754494+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:10.541254+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:14.254535+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a large puddle. The puddle is causing traffic disruptions and making it difficult for vehicles to pass."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:14.734527+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked by a large puddle. The puddle is causing traffic disruptions and making it difficult for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:11.477655+00:00", "label": "true", "label_explanation": "There is significant water on the road. The road is partially covered with a large puddle, making it difficult for vehicles to pass."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:14.937757+00:00", "label": "difficult", "label_explanation": "The road is partially covered with a large puddle, making it difficult for vehicles to pass. Some vehicles may have difficulty navigating through the water."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:15.154745+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. The road is partially blocked by a large puddle, causing traffic disruptions. The surrounding area is dark, with no visible buildings or landmarks. The image is blurry and the details are not clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:13.563495+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:13.131280+00:00", "label": "minor", "label_explanation": "The image shows a minor issue that might affect city life. The road is partially blocked by a large puddle, making it difficult for vehicles to pass."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:11.729586+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:42:03.541599+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "landslide", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:39:56.102993+00:00", "label": "null", "label_explanation": "The image shows 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 a few trees and buildings in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:39:55.614049+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:39:54.202813+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:39:55.404451+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:39:54.826528+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:39:53.705513+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:39:50.720595+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:39:50.010097+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:39:54.427189+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:39:53.912925+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T23:39:55.890145+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:39:55.130541+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:55.659811+00:00", "objects": ["fire", "image_description", "alert_category", "landslide", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:42:18.724357+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:21.114227+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls. The road is dry and there are no signs of traffic or pedestrians. The image is of good quality and there are no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:20.114569+00:00", "label": "normal", "label_explanation": "The image shows a clear road with no signs of accidents, flooding, or other major issues. The image is of good quality and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:18.505517+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:18.315824+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:18.999852+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:20.316599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:19.412868+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:19.641121+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:19.905593+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:20.837153+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:20.605117+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, 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-04T23:41:38.043905+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:31.034169+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:32.040895+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:30.547935+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:32.239780+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:32.468142+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There are a few cars parked on the side of the road and some trees. The street is wet from the rain."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:30.820136+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:31.519629+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:42:31.734007+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:31.239229+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:27.345563+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:30.326767+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:26.632286+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T20:44:43.834778+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "brt_lane", "road_blockade", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T20:45:38.528377+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a road in the foreground, with a building to the left and a tunnel entrance to the right. The road is clear, with no signs of traffic or pedestrians. The image is well-lit, with no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:38.029837+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water or other obstructions. Vehicles can easily pass through."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:37.012520+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:36.447686+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:31.720756+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:36.739119+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-04T20:45:37.750964+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:37.538599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:37.233968+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T20:45:36.061963+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:27.552166+00:00", "label": "true", "label_explanation": "The image shows an enclosed structure with artificial lighting, which is characteristic of a tunnel."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:38.244871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-04T23:41:45.572391+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "alert_category", "traffic_ease_vehicle", "building_collapse", "road_blockade", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:42:39.676348+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is wet from rain and there are puddles on the road. There is a bike rack on the side of the road and a tree in the background. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-04T23:42:39.043138+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:34.269069+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:34.952880+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:39.469584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:38.568542+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:39.259588+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:38.771103+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:38.141288+00:00", "label": "free", "label_explanation": "There is no blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:37.875612+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:37.654754+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:38.356683+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road."}]}, {"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-04T23:41:56.682177+00:00", "objects": ["image_condition", "water_in_road", "building_collapse", "fire", "image_description", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "brt_lane", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:54.766275+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:54.981221+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:56.071570+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:42:56.290842+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:57.173058+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:55.557417+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:55.806681+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:50.785112+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:56.692801+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:56.965712+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:51.578287+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:55.347520+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:41:56.584493+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:42:47.886096+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:46.327586+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:46.781979+00:00", "label": "water_puddle", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:48.166066+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area. There are no signs of any accidents or other disruptions. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:42.677605+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:46.988562+00:00", "label": "minor", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area. This is a minor issue that should be reported."}, {"object": "fire", "timestamp": "2024-02-04T23:42:47.472474+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:46.568338+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "image_condition", "timestamp": "2024-02-04T23:42:46.009205+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:47.687924+00:00", "label": "moderate", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:43.363780+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:47.263563+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:41:52.326711+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:42:52.307890+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:42:54.208874+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:42:52.521885+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:42:52.798682+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:42:49.416170+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:42:53.713522+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:42:54.424636+00:00", "label": "null", "label_explanation": "The image shows 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 are cars parked on the side of the road and people walking on the sidewalk."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:42:53.509131+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:42:53.931428+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:42:48.713267+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:42:53.220667+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:42:53.038710+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}] \ No newline at end of file +[{"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-04T23:52:48.619616+00:00", "objects": ["inside_tunnel", "water_in_road", "brt_lane", "road_blockade", "image_condition", "road_blockade_reason", "building_collapse", "landslide", "traffic_ease_vehicle", "image_description", "alert_category", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:27.248512+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:31.978708+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is murky and covers a large portion of the road, making it difficult to see the surface."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:32.313931+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:32.565623+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a large portion of the road, making it difficult to see the surface."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:28.027550+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:28.230595+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:43.801740+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:27.445863+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:35.445604+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a large portion of the road, making it difficult to see the surface."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:45.533418+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image. The road is partially blocked by a large puddle of water. The water is murky and covers a large portion of the road, making it difficult to see the surface."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:45.294436+00:00", "label": "minor", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a large portion of the road, making it difficult to see the surface. This could cause traffic delays and is a potential hazard to drivers."}, {"object": "fire", "timestamp": "2024-02-04T23:50:27.657224+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}]}, {"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-04T23:52:56.429098+00:00", "objects": ["inside_tunnel", "brt_lane", "fire", "image_description", "landslide", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "road_blockade", "alert_category", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:41.362231+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:42.040298+00:00", "label": "true", "label_explanation": "There is a dedicated lane for BRT (Bus Rapid Transit) with the respective signage."}, {"object": "fire", "timestamp": "2024-02-04T23:50:40.315296+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:49.609061+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and buses on the road, and people are walking on the sidewalk. There are trees and buildings on either side of the road. The street is wet from the rain."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:40.018935+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:46.745705+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:47.221515+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:49.334152+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:46.495930+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:46.993687+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:45.258061+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:45.793290+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:52:32.301355+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "road_blockade", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:45:03.132462+00:00", "label": "null", "label_explanation": "The image is a CCTV image of a road in Rio de Janeiro. The road is clear with no visible obstructions or signs of road work. There are no people or vehicles on the road. The image is clear and there are no signs of any problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:49.536555+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:51.255692+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:40.557187+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:50.253862+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:39.752085+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:49.240821+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.733934+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.737532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.536345+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:49.946233+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.949723+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:52:38.510699+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "traffic_ease_vehicle", "landslide", "water_in_road", "inside_tunnel", "road_blockade_reason", "image_condition", "fire", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:00.384516+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a traffic light at the intersection and several cars are parked on the side of the road. The street is lit by streetlights."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:55.383756+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:58.689246+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:59.883488+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:00.099966+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:58.406605+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:54.213741+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:58.897112+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:58.196674+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:50:59.603901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:59.186872+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:59.383594+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:52:40.713555+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "road_blockade", "traffic_ease_vehicle", "image_description", "inside_tunnel", "fire", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:50:56.311425+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:54.672616+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:55.085537+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:55.381485+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:54.462747+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:41.196085+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:54.885219+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:56.074693+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:56.493852+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is wet from the rain."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:40.429275+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:50:55.799990+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:55.610685+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:52:51.215797+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "fire", "brt_lane", "road_blockade", "image_description", "road_blockade_reason", "alert_category", "building_collapse", "landslide", "image_condition", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:40.400608+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.348787+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.065584+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:41.206668+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:47.717325+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:50.779554+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are no cars on the road. The road is wet from the rain. There are some trees on the side of the road. There are buildings in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:49.287804+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:49.558470+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:49.775745+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:50.581531+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:46.956331+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:47.203567+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:52:36.369492+00:00", "objects": ["building_collapse", "fire", "alert_category", "brt_lane", "traffic_ease_vehicle", "image_condition", "road_blockade", "water_in_road", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:53:21.108454+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:53:18.205017+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:53:20.603613+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:19.932755+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:21.646568+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:18.408698+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:53:21.897227+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:18.907166+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:19.104812+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:49.686573+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a red traffic light on the left side of the image. A car is driving on the right side of the road. There are trees and buildings on both sides of the road. The street is wet from the rain."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:18.006775+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:20.196903+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:52:33.803143+00:00", "objects": ["inside_tunnel", "image_description", "road_blockade_reason", "fire", "brt_lane", "water_in_road", "road_blockade", "alert_category", "landslide", "image_condition", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:39.692559+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:51.696078+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There is a church on the left side of the image and a building on the right side. The street is lit by streetlights. There are no cars on the street."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:50.089136+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.776497+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:40.483780+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:49.682969+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.885432+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:50.292327+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:51.415096+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:49.437826+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.500885+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.999046+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet, with small, manageable puddles that do not interfere with traffic."}]}, {"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-04T23:52:36.321413+00:00", "objects": ["alert_category", "fire", "landslide", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "water_in_road", "building_collapse"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:47:56.804671+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:53:19.927229+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:19.722881+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:21.818791+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:47:58.093524+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is lit by streetlights and there are trees on either side of the street. There are cars parked on the side of the street and a few people are walking. The street is wet from the rain."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:20.220653+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:21.339683+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:47:56.223209+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:21.042130+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:47:57.509318+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:20.734728+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:47:57.034187+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:52:51.162963+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:50:29.783558+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:32.603258+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:01.402914+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not enough to impede the movement of vehicles."}, {"object": "fire", "timestamp": "2024-02-04T23:50:24.913208+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:43.787966+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:27.841527+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:53:14.244348+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars driving on the road and people walking on the sidewalk. There is a building in the background. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:38.812044+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:08.627114+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:25.977535+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:35.713483+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:27.132472+00:00", "label": "false", "label_explanation": "There is no bus rapid transit (BRT) lane visible in the image."}]}, {"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-04T23:52:53.861433+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.645698+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:48.863270+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:39.893415+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:51.387483+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is wet from the rain and there is a fallen tree blocking the road. There are cars parked on either side of the street and a few people are walking around."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.466706+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road, which is partially blocking traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:40.722221+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.429243+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:49.735734+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:49.145025+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:49.948100+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.154857+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:50.851883+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:52:35.333335+00:00", "objects": ["building_collapse", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "fire", "landslide", "image_description", "road_blockade"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:50:58.497835+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:57.328415+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:57.597603+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:53.452935+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:54.162739+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:58.915510+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:58.008356+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:49:48.294898+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T23:49:49.065547+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:59.200021+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:59.409364+00:00", "label": "null", "label_explanation": "The image is clear and shows a road scene. There are cars and buildings on either side of the road. The road is dry and there are no signs of construction or accidents. The image is taken from a high angle and the lighting is good."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:57.801978+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:52:32.131950+00:00", "objects": ["landslide", "brt_lane", "alert_category", "fire", "inside_tunnel", "road_blockade", "building_collapse", "traffic_ease_vehicle", "road_blockade_reason", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:50:51.672202+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:31.284738+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:49.706927+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:50:51.245073+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:27.854283+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.207727+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.625558+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:51.458093+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:49.459664+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:45.305507+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:47:58.335966+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a portion of a road with a car driving on it. The road is surrounded by trees and buildings. The sky is clear and there are no signs of rain. The image is taken from a high angle and the road is in the foreground. The car is in the center of the image and is driving towards the viewer. The car is black and there are no other cars on the road. The trees are green and the buildings are made of brick. The sky is blue and there are no clouds. The image is well-lit and there are no shadows. The image is in focus and there is no blur. The image is a good representation of the scene and there is nothing unusual or out of the ordinary."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:48.050285+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:52:45.747000+00:00", "objects": ["image_description", "inside_tunnel", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:53:20.708038+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and tunnel walls. There is a tree on the left side of the image, and a street light on the right side. The road is wet from rain, but there are no major blockages or hazards visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:17.489441+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T23:53:17.903264+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:19.615084+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, indicating significant water accumulation. However, the water level is not high enough to impede vehicle movement."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:18.181130+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:17.681183+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:18.615860+00:00", "label": "true", "label_explanation": "There are large puddles on the road, indicating significant water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:18.894231+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:53:20.240417+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, indicating significant water accumulation. However, the water level is not high enough to completely block the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:53:19.945504+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:53:19.378707+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that interfere with city life. The image shows a clear road with manageable puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:20.500580+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road, indicating significant water accumulation. However, the water level is not high enough to completely block the road."}]}, {"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-04T23:52:48.451851+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:50:56.287408+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:45.279035+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:56.001120+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:55.788757+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:56.701744+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:56.897984+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:57.596371+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:50:57.168308+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:57.875805+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There is a yellow car driving in the foreground and a black car in the background, both in motion. There are trees and buildings on either side of the street. The traffic lights are green for both directions. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:57.383940+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:56.477478+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:40.919014+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:52:35.461108+00:00", "objects": ["road_blockade", "inside_tunnel", "brt_lane", "image_description", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "building_collapse", "road_blockade_reason", "alert_category", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:50:51.532992+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:41.355562+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:42.326407+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:53.281561+00:00", "label": "null", "label_explanation": "The image shows 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 building on the left side of the road and a house on the right side. There are cars parked on both sides of the road. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:53.005239+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:52.727111+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:51.247074+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:50:52.519000+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:52.290645+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:51.729352+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:52.019173+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:51.006961+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T20:44:43.834778+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "brt_lane", "road_blockade", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T20:45:38.528377+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a road in the foreground, with a building to the left and a tunnel entrance to the right. The road is clear, with no signs of traffic or pedestrians. The image is well-lit, with no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:38.029837+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water or other obstructions. Vehicles can easily pass through."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:37.012520+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:36.447686+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:31.720756+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:36.739119+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-04T20:45:37.750964+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:37.538599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:37.233968+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T20:45:36.061963+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:27.552166+00:00", "label": "true", "label_explanation": "The image shows an enclosed structure with artificial lighting, which is characteristic of a tunnel."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:38.244871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:36:13.331650+00:00", "objects": ["inside_tunnel", "image_description", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:36:50.738666+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:36:56.636857+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or disruptions. There are no signs of accidents, fires, or other incidents. The road is dry and there is no visible water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:36:56.202277+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:36:55.715681+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:36:55.926642+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:36:51.533431+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:36:54.516098+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:36:56.427477+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:36:55.017366+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:36:55.224177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:36:55.435785+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockages or disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:36:54.731033+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:53:19.172466+00:00", "objects": ["brt_lane", "water_in_road", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:51:04.497266+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:07.504821+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:07.717942+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:03.934557+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:08.218590+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:51:08.717986+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:08.004026+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:08.504670+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:07.318115+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:09.409331+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is wet from the rain and there are some puddles on the ground. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:08.888091+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:09.114871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:50:45.082183+00:00", "objects": ["road_blockade", "image_condition", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "brt_lane", "fire", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:29.749705+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:29.344794+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:31.123228+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:30.859704+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:29.543772+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:29.977259+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:26.465489+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:30.650286+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:31.362972+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a car driving on the road, and a person is crossing the street. The road is wet from the rain, and there are some puddles on the ground. The buildings are tall and brightly lit."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:30.437537+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:30.220043+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:25.836384+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T20:42:23.022360+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_description", "image_condition", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T20:43:21.901631+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:15.376418+00:00", "label": "false", "label_explanation": "The image shows the outside environment with buildings and cars passing by. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:16.099703+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:20.512393+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to large puddles. Vehicles can still pass through, but with some difficulty."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:19.583154+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:21.614673+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "fire", "timestamp": "2024-02-04T20:43:21.408708+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:21.003969+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:22.173458+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars driving in both directions. There are large puddles on the road, but they are not completely blocking traffic. The cars are driving slowly and carefully. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:19.357974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:19.806659+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, but they are not completely blocking traffic. Vehicles can still pass through, although with some difficulty."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:20.781115+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The traffic is flowing smoothly, and there are no signs of accidents, fires, or other disruptions."}]}, {"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-04T23:52:43.494042+00:00", "objects": ["water_in_road", "building_collapse", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T23:50:50.157618+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:51.251611+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, and there is no evidence of structural damage or debris."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:52.149484+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:50:51.537465+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:50.431956+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:41.203033+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:50.973665+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:50.646553+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:51.758055+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:42.053550+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:52.349355+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a portion of a road with a car driving on it. The road is dry and there are no signs of water or puddles. The surrounding area is clear and there are no signs of any buildings or other structures."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:49.830218+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:50:45.703103+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:35.936479+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:36.916590+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:32.836140+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:37.420619+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and motorbikes on the road, and trees and buildings on either side. The road is wet from the rain, but there is no flooding. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:35.730299+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:32.143409+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:36.521324+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:36.231529+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:51:36.747711+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:37.140896+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:35.526708+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:36.119475+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-04T23:53:01.886667+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:50:50.765126+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene. There are no major obstructions or distortions that would affect the clarity of the image."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:51.476957+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.534881+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:52.786355+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:50.292752+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:52.981011+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:51.279055+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry, with no visible puddles or signs of water accumulation."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:52.268486+00:00", "label": "easy", "label_explanation": "The road is dry, with no visible puddles or signs of water accumulation. Vehicles can easily pass through the area."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:53.252045+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance or exit. The road is dry, with no visible puddles or signs of water accumulation. There are no major issues or disruptions visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:52.496151+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:50.072694+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance or exit."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:52.040260+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would require an alert. The road is clear, with no signs of accidents, fires, or other disruptions."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:52:41.008532+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "landslide", "fire", "road_blockade_reason", "image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:50:52.923172+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There is a blue and white house on the left and a pink and white house on the right. There are trees on both sides of the street. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:41.209752+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:42.048190+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:52.694189+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:50:52.123795+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:51.185487+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:50.426082+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:50.721199+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:52.400096+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:50.916057+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:51.442852+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:51.751935+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}]}, {"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-04T20:44:55.103646+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T20:45:52.590194+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:54.412368+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T20:45:54.748023+00:00", "label": "null", "label_explanation": "The image shows a road scene with a fallen tree blocking the road. There are cars on the road and a gas station on the side. The road is wet from the rain and there are some puddles. The sky is cloudy and there are some trees in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:53.287322+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:49.050740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T20:45:53.985899+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:53.006170+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:53.763165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:49.812743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:52.807710+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:53.496942+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:54.201851+00:00", "label": "difficult", "label_explanation": "There are large puddles on the road, but they are not deep enough to impede vehicle movement."}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:00:58.570738+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:01:42.453910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:01:37.640174+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:01:42.274761+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:01:42.033075+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:01:38.370139+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:01:41.759355+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:01:41.568926+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:01:41.338746+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:01:43.157801+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left side of the road, and a person is standing next to the car. The image is taken from a traffic camera."}, {"object": "image_condition", "timestamp": "2024-02-04T23:01:41.077018+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:01:42.732017+00:00", "label": "easy", "label_explanation": "There are no signs of significant water accumulation on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:01:42.943000+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:34.896024+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description", "alert_category", "inside_tunnel", "image_condition", "fire", "brt_lane", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:32.189481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:32.616450+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:33.079775+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:33.577326+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. The road is wet from the rain and there are puddles of water on the ground. The traffic lights are green and there are cars driving in both directions. There are also people crossing the street. The buildings in the background are tall and brightly lit."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:32.379462+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:27.999547+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:31.487605+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:32.868601+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:28.792108+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:37.320579+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:33.301250+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:31.704327+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:52:43.253198+00:00", "objects": ["brt_lane", "road_blockade", "image_description", "image_condition", "road_blockade_reason", "alert_category", "fire", "inside_tunnel", "water_in_road", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:50:53.538132+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:57.249589+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:58.944180+00:00", "label": "null", "label_explanation": "The image shows 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 a few trees on the side of the street and the buildings are tall and brightly lit. The street is wet from the rain and there are some puddles on the ground."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:56.822320+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:57.526239+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:57.758600+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T23:50:58.256422+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:45.545969+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:57.043059+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:58.451706+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:58.740930+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:58.024138+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:50:37.620735+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_condition", "image_description", "building_collapse", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.216011+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.700280+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.997343+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:29.853148+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.719917+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:35.835420+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a car driving down the street. There are some trees and buildings on either side of the street. The street is wet from the rain. There are some puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:34.914796+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.327365+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.711495+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.419010+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:35.610716+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.122677+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:53:19.366128+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:51:12.284403+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse, as the surrounding buildings are intact and there are no signs of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:10.887202+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions, providing a good view of the scene."}, {"object": "fire", "timestamp": "2024-02-04T23:51:12.589789+00:00", "label": "false", "label_explanation": "There is no evidence of fire, as there are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:07.552426+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:11.466303+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, causing a partial blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:11.187528+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:13.378866+00:00", "label": "null", "label_explanation": "The image shows an elevated road with a clear view of the surroundings. There is a fallen tree blocking part of the road, causing a partial blockade. There are some small puddles on the road, but they are not significant enough to cause any traffic disruptions. The image is clear, with no visible distortions or obstructions, providing a good view of the scene."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:12.884689+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:06.774614+00:00", "label": "false", "label_explanation": "The image shows an elevated road with a clear view of the surroundings, indicating that it is not inside a tunnel."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:11.987569+00:00", "label": "minor", "label_explanation": "There are no major or minor issues that would interfere with city life. The road is partially blocked, but traffic can still pass."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:13.182428+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide, as the road and surrounding areas are clear of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:11.780716+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road, causing a partial blockade."}]}, {"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-04T23:53:05.792401+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:11.317910+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:07.215768+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:12.014490+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:12.531232+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:13.035238+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a yellow taxi driving on the left side of the road, and a cyclist is crossing the street in front of the taxi. A man is also crossing the street in the background. There are some trees and buildings on the sides of the road."}, {"object": "fire", "timestamp": "2024-02-04T23:51:12.315142+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:08.021261+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:10.833646+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:11.105133+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:11.805786+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:11.521549+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:12.817804+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:35.677286+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:22.356619+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:17.694444+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:21.526073+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:21.062434+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:22.627237+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:18.367950+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:21.256895+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:21.951478+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:23.051599+00:00", "label": "null", "label_explanation": "The image shows a road at night. There are cars parked on the side of the road and a few trees. The road is wet from the rain. There is a building in the background."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:22.147917+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:21.725379+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:22.850174+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:52:36.368250+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:53:21.782497+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and motorcycles on the road, and people are walking on the sidewalks. The buildings are tall and brightly lit. The street is wet from the rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:21.226597+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:19.500124+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:16.605086+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:15.881748+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:53:20.486147+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:19.805716+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:20.274028+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:53:20.965028+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:21.481535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:53:20.762848+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:53:20.058500+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:53:21.922576+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:12.373729+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:13.346137+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:11.936459+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:13.554061+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:13.845393+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There are a few cars parked on the side of the road and some trees. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:12.248210+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or blockages."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:12.862394+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:51:13.062491+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:12.651858+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:08.769116+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:11.668136+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:08.141869+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:50:31.218154+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:21.898894+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:18.679777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:17.890974+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:22.681470+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:21.681016+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:51:22.893179+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:23.599719+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of accidents, fires, or landslides. The road is dry with no signs of water accumulation. There are no people or vehicles visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:22.180638+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:22.482788+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:23.181885+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:21.472057+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:23.387398+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:52:38.120070+00:00", "objects": ["alert_category", "water_in_road", "brt_lane", "image_condition", "inside_tunnel", "road_blockade_reason", "road_blockade", "fire", "landslide", "image_description", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:50:53.934475+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:53.237571+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:49.864802+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:52.947639+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:48.969876+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:53.726111+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:53.447684+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:50:54.444879+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:54.865213+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:55.126190+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road with a central reservation. There are street lights along the road and buildings on either side. The road is wet from rain and there are some puddles, but the traffic is still flowing."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:54.185733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:54.641804+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-04T23:50:35.309720+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "image_description", "brt_lane", "fire", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:21.888268+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:23.749619+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:22.150250+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:22.359503+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:23.979783+00:00", "label": "null", "label_explanation": "The image shows 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 are cars parked on the side of the road and some people are walking on the sidewalk."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:19.061643+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:23.257496+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:23.051830+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:23.465888+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:22.836604+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:18.338809+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:22.565757+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:38.005306+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "inside_tunnel", "building_collapse", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:21.926908+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:22.824743+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:23.033828+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:17.508912+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:22.333827+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:21.648407+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:22.122727+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:18.230392+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:22.620727+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:21.218714+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:23.307992+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are street lights along the road. There are cars, buses, and people crossing the road. The road is wet from the rain."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:21.415400+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:53:11.323623+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:03.955435+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:08.194524+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:09.998736+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:04.739676+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:08.996272+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:10.510998+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a police car parked on the side of the road. A person is walking on the sidewalk. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:09.493808+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:08.501240+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:09.709246+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:09.282252+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:08.775389+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:10.214994+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:36.886666+00:00", "objects": ["image_condition", "road_blockade", "alert_category", "inside_tunnel", "fire", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:24.291638+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:24.711604+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:25.175897+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:20.972694+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:51:25.610207+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:24.975141+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:21.596919+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:25.891946+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles on the road, but they are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:26.095630+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:24.503047+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:26.294866+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few cars and pedestrians crossing the intersection. There is a tree on the left side of the image and a building on the right side. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:25.384597+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:53:02.976749+00:00", "objects": ["building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "image_description", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:51:03.601710+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:04.570982+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:54.988626+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:02.891626+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:03.103471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:03.970570+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:03.400911+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no signs of blockades, water, or other hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:04.285148+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:04.795374+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance. There is a bus driving in the tunnel."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:56.501637+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:59.694257+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:01.663572+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry, with no signs of puddles or flooding."}]}, {"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-04T23:50:45.198111+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "inside_tunnel", "water_in_road", "fire", "brt_lane", "building_collapse", "image_description", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:34.071937+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:32.351973+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:33.081698+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:28.678390+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:32.630434+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:33.834835+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:29.438843+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:33.644422+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:34.594604+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. The street is wet from the rain, and there are a few puddles on the road. There are trees and buildings on either side of the street, and the lights from the streetlights are reflected in the puddles. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:34.342181+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:32.846802+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:33.368763+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-04T23:52:41.830421+00:00", "objects": ["landslide", "image_condition", "inside_tunnel", "fire", "water_in_road", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:53:22.237188+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:39.577672+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:21.965378+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:50:41.351946+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:39.807294+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:40.405822+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:41.015907+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:28.188243+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:40.672633+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:40.104521+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:41.498927+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:42.090550+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a black car parked on the side of the road. A person is walking on the sidewalk next to the car. There are some trees and buildings in the background."}]}, {"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-04T23:50:43.787651+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "building_collapse", "image_description", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T23:51:31.150859+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:27.021219+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:31.951768+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:32.226172+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:33.370602+00:00", "label": "null", "label_explanation": "The image shows a night scene of a road in Rio de Janeiro. The road is dry and clear with no signs of water or debris. There are no road blockades or hazards. The surrounding buildings are intact and there are no signs of structural damage. The image is clear with no interference."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:31.730434+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:31.425800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and there are no signs of traffic disruption."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:32.717662+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:30.926364+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:27.869470+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:33.064637+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:51:32.433248+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:50:44.639270+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:40.459484+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:36.104668+00:00", "label": "false", "label_explanation": "There is no sign of a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:40.668953+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not significant. The road is still passable."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:39.034848+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:39.264693+00:00", "label": "false", "label_explanation": "There is some water on the road, but it is not significant. The road is still passable."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:39.690079+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:40.888463+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no sign of soil, rocks, or debris on or near the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:39.481025+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:39.982378+00:00", "label": "normal", "label_explanation": "There are no signs of any problems. The road is clear and there is no evidence of any incidents."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:41.086592+00:00", "label": "null", "label_explanation": "The image shows a road scene with a large overpass bridge in the background. The road is lit by street lights and there is a barrier fence on the left side. There is some water on the road, but it is not significant. The road is still passable. There are no signs of any problems. The road is clear and there is no evidence of any incidents."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:35.399219+00:00", "label": "false", "label_explanation": "The image shows a road scene with a large overpass bridge in the background. The road is lit by street lights and there is a barrier fence on the left side. There are no signs of a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:40.179522+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of any damage."}]}, {"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-04T23:52:42.062696+00:00", "objects": ["road_blockade_reason", "brt_lane", "alert_category", "image_condition", "traffic_ease_vehicle", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:21.828278+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:41.495821+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:51.565163+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:21.602051+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.094680+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T23:53:21.386811+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:22.095612+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:50.853980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:44:59.825880+00:00", "label": "null", "label_explanation": "The image shows a tree that has fallen onto a road, blocking part of the road. The road is wet from rain and there are some puddles on the road. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:21.141014+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:51.894968+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:20.925203+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:50:40.790433+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "alert_category", "building_collapse", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:36.224851+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:29.794943+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.492093+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.516123+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.912255+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:35.227668+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.936947+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.495498+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.210833+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.623280+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.705697+00:00", "label": "easy", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:35.989787+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:52:41.485042+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "road_blockade_reason", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:50:28.375759+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:37.712894+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:18.837436+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "fire", "timestamp": "2024-02-04T23:53:17.192413+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:17.857708+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:48.275751+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:50.182776+00:00", "label": "null", "label_explanation": "The image is of a street scene. There are cars, buses, and people crossing the street. The street is wet from the rain. There are trees and buildings on either side of the street. The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:16.966270+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:32.229621+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:19.047424+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:17.439135+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:18.131787+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:50:35.663964+00:00", "objects": ["road_blockade_reason", "landslide", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:24.294905+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.575340+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:25.796413+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The road is wet from the rain. There are people walking on the sidewalks. There are buildings and trees in the background."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:24.086691+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:25.290171+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.623527+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:25.006267+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.519256+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:24.791836+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:23.860855+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.588916+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:19.806317+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:52:30.324289+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "landslide", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:50:50.411127+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with a few cars driving on it. There are no signs of any blockades or other hazards. The image is clear and there are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:47.106780+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no signs of any water."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:47.413285+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any blockades or other hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:49.463381+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are all intact and there are no signs of any damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:36.903284+00:00", "label": "true", "label_explanation": "The image is dark and blurry, but it is clear that the camera is inside a tunnel. The walls of the tunnel are visible on either side of the road, and the ceiling of the tunnel is visible in the distance. There are no signs of any blockades or other hazards in the tunnel."}, {"object": "fire", "timestamp": "2024-02-04T23:50:49.685993+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or other signs of a fire."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:49.196462+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear and there are no signs of any blockades or other hazards."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:50.177691+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no sign of any debris on the road or on the surrounding slopes."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:46.715773+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:49.901267+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:41.193621+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:48.891384+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any blockades or other hazards."}]}, {"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-04T23:52:47.511900+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:53:19.617727+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:19.404798+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:13.921432+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:53:21.366874+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:19.821607+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:53:21.838017+00:00", "label": "null", "label_explanation": "A night view of a busy road in Rio de Janeiro. There is a bus driving in the foreground, and other vehicles are visible in the background. The road is wet from rain, and there are some puddles on the ground. The street lights are on, and the city lights are visible in the distance."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:53:21.637394+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, but they are not completely blocking traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:21.088054+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:20.361465+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:53:20.821254+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The road is clear, and there are no signs of accidents, fires, or other disruptions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:20.102279+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:20.609431+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that it is a BRT lane."}]}, {"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-04T23:50:35.379389+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:18.632443+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:17.905870+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:14.133228+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:18.418353+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:17.656569+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:17.143573+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:17.345081+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:18.130916+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:13.428576+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:18.916744+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not enough to hinder traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:19.424478+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars, motorcycles, and people crossing the intersection. The street is wet from the rain and there are some puddles on the road. There are buildings and trees on either side of the street. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:19.131299+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:47.220109+00:00", "objects": ["road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:13.294228+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and there are no signs of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:13.801214+00:00", "label": "false", "label_explanation": "There is no BRT lane present in the image. The road is a regular road with no special designations."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:13.493737+00:00", "label": "false", "label_explanation": "There is some water on the road, but it is not significant. The road is still passable and there are no signs of any flooding."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:12.313593+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with the road going into the distance. The tunnel is well-lit and there are no signs of any blockages or hazards."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:14.782393+00:00", "label": "normal", "label_explanation": "The image does not show any major or minor issues that would affect city life. The road is clear and there are no signs of any hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:13.992162+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and there are no signs of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:12.511885+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road is clear and there are no signs of any debris or damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:14.210464+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not significant. The road is still passable and there are no signs of any flooding."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:14.490487+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. The buildings are all intact and there are no signs of any damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:15.009528+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with the road going into the distance. The tunnel is well-lit and there are no signs of any blockages or hazards. There is some water on the road, but it is not significant. The road is still passable and there are no signs of any flooding. The buildings are all intact and there are no signs of any damage."}, {"object": "fire", "timestamp": "2024-02-04T23:51:12.795491+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no flames, smoke, or signs of any burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:12.998309+00:00", "label": "clean", "label_explanation": "The image is clear and there are no signs of any interference. The image is well-lit and there are no obstructions or distortions."}]}, {"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-04T23:50:50.220081+00:00", "objects": ["image_condition", "water_in_road", "fire", "image_description", "building_collapse", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "road_blockade", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:37.644392+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:37.858585+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:39.049397+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:39.740424+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:38.835308+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:38.359337+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:38.618826+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:34.334138+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:39.250822+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:39.533763+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:38.123400+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:34.947614+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:50:44.958146+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:30.078722+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:35.898093+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.779385+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.658897+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.795580+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:35.178757+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.394293+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.886325+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.675768+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:36.179666+00:00", "label": "null", "label_explanation": "A night-time image of a bus driving on a wet road. There are trees and buildings on either side of the road. The bus is in the left lane and there are no other vehicles visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.477407+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.989220+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:50:50.504855+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "alert_category", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:31.057819+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:31.747394+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.869576+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:34.657382+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.753720+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:35.060063+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:35.346634+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:35.538481+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.953412+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:34.453453+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:36.436728+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road, and people are walking on the sidewalks. The buildings are tall and brightly lit. The image is clear and well-lit."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:36.160594+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:47.420689+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:48:37.727103+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water or puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:48:38.009156+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:48:37.318989+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:48:33.121300+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:48:36.019880+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:48:36.308735+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "image_description", "timestamp": "2024-02-04T23:48:38.222451+00:00", "label": "null", "label_explanation": "The image shows a night view of a city street with trees on either side. There are no cars on the street and the street lights are on. The image is clear and there are no obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:48:37.520604+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:36.506684+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:48:37.029721+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:48:32.313143+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:48:36.811059+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:38.124750+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:24.144162+00:00", "label": "water_puddle", "label_explanation": "There are larger puddles and a fallen tree, but the road is still partially passable."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:24.694671+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:20.035751+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:51:24.927615+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:25.142145+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:23.738079+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.757633+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:23.944753+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.358871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.532760+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.433695+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:25.621061+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and people on the street. The street is wet from the rain. There is a fallen tree 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-04T23:50:38.339488+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "brt_lane", "image_condition", "fire", "inside_tunnel", "water_in_road", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:51:21.635410+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:22.753663+00:00", "label": "null", "label_explanation": "The image shows 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": "road_blockade_reason", "timestamp": "2024-02-04T23:51:21.374096+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:17.937702+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:20.753915+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:22.064271+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:17.225434+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:20.947136+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:22.538965+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:21.861895+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:22.354872+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:21.159490+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:15.206525+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:05.578263+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:05.088630+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:04.022371+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:05.383740+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:06.308654+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There is a white car driving on the road, and the surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:59.986073+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:06.100445+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:05.782500+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:04.362313+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:04.587010+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, flooding, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:04.880980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, flooding, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:00.793865+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}]}, {"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-04T23:50:39.633301+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "road_blockade", "water_in_road", "road_blockade_reason", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:27.565617+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars, a bus, and a motorcycle. There are trees on either side of the road and buildings in the background. The road is wet from rain and there are some puddles, but they are small and do not interfere with traffic. There is a police car with its lights on, stopped on the side of the road."}, {"object": "fire", "timestamp": "2024-02-04T23:51:26.813739+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:21.825890+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:22.503770+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:27.324388+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:27.009601+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:26.335193+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:26.557422+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:25.815341+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:25.610647+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:26.027456+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:25.328588+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:53:11.335358+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "water_in_road", "image_description", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:08.879020+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:06.875757+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:08.575056+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:07.664262+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:07.185425+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:09.462018+00:00", "label": "null", "label_explanation": "A clear image of a road with a bus lane on the left side and a few cars on the right side. There are trees on both sides of the road and buildings in the background. The sky is clear and blue."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:07.379790+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:03.760709+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:08.286002+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:02.996080+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:07.974411+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:09.186009+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:48.266877+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_description", "alert_category", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:33.232925+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:32.012150+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:32.339979+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:33.732690+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a gray background. The road is bordered by trees and there are no visible cars or people. The image is well-lit and there are no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:32.525571+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, landslides, fires, or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:33.500482+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:31.497983+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:33.016545+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:32.732917+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:31.711624+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:27.715250+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:28.508582+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:50:52.908958+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:48:48.019133+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and buses on the road, and people are walking on the sidewalk. There are buildings on either side of the street. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:48:47.511868+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:46.258680+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:48:47.267449+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:48:45.736401+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:48:46.738588+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:48:42.230149+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:48:41.558388+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:48:46.533481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:48:46.025406+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:48:46.951946+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:48:47.751932+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:53:14.038671+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:10.122823+00:00", "label": "null", "label_explanation": "The image shows a night view of a park with a road in the foreground. The park is surrounded by a fence and there are trees and lampuposts lining the road. The road is wet from rain and there are some puddles, but they are small and do not interfere with traffic. There is a traffic light at the intersection and a crosswalk."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:08.034868+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:08.521802+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:08.324027+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:09.624593+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:09.008949+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:04.646798+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:09.909647+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:51:09.428971+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:09.215697+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:08.727138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:05.330394+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:53:16.588519+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:12.880643+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:06.656322+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:13.476711+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars and motorcycles on the road, and people walking on the sidewalks. There are buildings and shops on either side of the street. The road is wet from the rain."}, {"object": "fire", "timestamp": "2024-02-04T23:51:12.656396+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:07.446501+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:12.361687+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:11.196860+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:12.084429+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:09.304836+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:10.958935+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:13.204007+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:11.777806+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:47.957400+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:37.042054+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:38.041928+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:51:37.839230+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:38.260784+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:36.356004+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:33.451629+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:32.647163+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:37.329838+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:36.553893+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:38.544397+00:00", "label": "null", "label_explanation": "The image shows a wide, empty street with a school sign on the right side. There are no cars or people on the street. The street is lined with trees and buildings."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:36.832323+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:37.537783+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:50:35.135520+00:00", "objects": ["inside_tunnel", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:29.940740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.561631+00:00", "label": "minor", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.250774+00:00", "label": "difficult", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:34.842048+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.575658+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:35.523566+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.071269+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.334467+00:00", "label": "water_puddle", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.838270+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.053307+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.649453+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:35.734098+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars, buses, and pedestrians on the street. The street is wet from the rain. There is a large puddle of water in the middle of the street."}]}, {"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-04T23:53:08.723713+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "water_in_road", "brt_lane", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:32.618258+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, obstructions, or hazards. The road is dry and there are no signs of water or flooding. The surrounding buildings are intact and there are no signs of damage. The image is clear and there are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:32.342541+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:32.053665+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:31.353037+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:31.627037+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:30.424744+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:26.633609+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:30.623455+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:27.328275+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:31.823575+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:30.824218+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:31.122369+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:20.706518+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:48:17.071735+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and buses on the road, and people are walking on the sidewalk. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-04T23:48:15.868503+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:48:15.611674+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:48:14.901299+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:48:16.086376+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:48:15.167072+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:48:12.107129+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with the label 'BRT'."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:15.380611+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:48:16.572477+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:48:11.296068+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:48:16.364146+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:48:16.788849+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:45.227161+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:51:26.647725+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:24.744378+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:26.157505+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:26.335484+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. The road surface is mostly dry with small, manageable puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:21.828053+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:25.707823+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:26.845001+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is lit by streetlights. There are trees on either side of the street. The street is wet from the rain. There is a car driving on the street."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:21.110859+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:24.934679+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:25.442040+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:25.943542+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:25.227864+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:53:16.386397+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:51:36.016794+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.601810+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:34.212884+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:35.109140+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.907736+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:35.323682+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:29.404969+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.809923+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:34.443037+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:36.288765+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is wet from the rain."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:30.705064+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:31.389058+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:53:01.557361+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:08.326492+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:48:12.253327+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars driving in both directions. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:07.547942+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:06.841904+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:07.069554+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:08.742791+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:08.532114+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow freely."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:04.042273+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:03.355785+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:08.047265+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:07.338398+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:07.822647+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-04T23:50:38.282070+00:00", "objects": ["road_blockade", "landslide", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:23.733428+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.219664+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.235167+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:23.438268+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:23.981215+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:24.936689+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.226931+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.320572+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:24.748770+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:24.455118+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:19.447376+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:25.435462+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There are cars and buses driving on the street and the traffic lights are on. There are also people walking on the sidewalks."}]}, {"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-04T23:52:59.065040+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:09.815433+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or other issues. The road is dry and there are no signs of water or other hazards. The surrounding buildings are intact and there are no signs of damage. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:07.793400+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:51:09.017401+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:07.995321+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:09.296243+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the surface. Vehicles can easily pass through without any difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:08.292071+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:04.300282+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:08.790907+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:07.504537+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:03.508966+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not feature enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:09.503857+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:08.514466+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockages or other issues."}]}, {"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-04T23:53:01.383502+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "building_collapse", "alert_category", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:10.241358+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:10.737069+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:09.531154+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:08.826386+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:10.538251+00:00", "label": "difficult", "label_explanation": "The road is partially covered with water, making it difficult for vehicles to pass. Some vehicles may have difficulty navigating through the water."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:09.321507+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:05.850952+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:10.027477+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:09.812239+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The road is clear and there are no signs of any problems."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:11.015330+00:00", "label": "null", "label_explanation": "The image shows a wet road with a tree to the left and buildings to the right. There is a traffic light in the distance. The road is lit by streetlights. There are no cars on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:09.108901+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering the entire road surface and is causing vehicles to slow down."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:05.134760+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. The road is surrounded by buildings and trees, and there is no visible tunnel structure."}]}, {"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-04T23:50:40.286231+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:28.522850+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:29.194379+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:25.831225+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with the respective signs and markings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:29.647358+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:30.120533+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are puddles on the road. There are cars and buses driving on the street and the traffic lights are on. There are buildings and trees on either side of the street. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:28.033721+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:25.408835+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:29.855419+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:28.234520+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:28.942892+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:28.715372+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:51:29.438259+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:50:45.009536+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:51:35.621371+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.978296+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.444120+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:48:38.584166+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area. The surrounding buildings are intact and there are no signs of collapse or structural damage. There is no evidence of fire, landslide, or other major issues. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:30.316976+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.655095+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.126578+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.741404+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.346335+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.947957+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:36.888435+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:34.868885+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:53:07.254868+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "alert_category", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:05.551998+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:08.956185+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:10.743282+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:09.850780+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:09.225860+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:10.056465+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:10.542067+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are some small puddles, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:09.453265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:06.248591+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:10.324503+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:09.640683+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:10.961133+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a bus is driving in the middle of the road. There are trees and buildings on either side of the road. The street is lit by streetlights."}]}, {"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-04T23:53:08.582562+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:05.462173+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:01.989493+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:06.587492+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:05.677180+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:02.695027+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:06.375180+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T23:51:06.788452+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:06.161060+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:07.305191+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:07.498111+00:00", "label": "null", "label_explanation": "The image is showing a night view of a road with a green background. There are no cars on the road and the road is wet. There are trees on the side of the road and buildings in the background. The image is clear and there is no blur."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:07.069904+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:05.884881+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:31.918468+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:30.916059+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:32.621014+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:27.259137+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T23:51:32.337203+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:31.146250+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:33.117261+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. There are a few cars parked on the side of the street. There are no people visible in the image. The street is in good condition and there are no visible signs of damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:31.848150+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:31.409980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:32.142384+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:28.011121+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:32.831778+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:31.635681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:37.998857+00:00", "objects": ["fire", "image_description", "alert_category", "landslide", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:33.955294+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:34.657678+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a central reservation and multiple lanes in each direction. There are trees on either side of the avenue and buildings in the background. The road is wet from rain and there are some puddles, but it is still passable. There is a green screen at the bottom of the image."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:33.452511+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:34.398075+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:29.066733+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:32.467601+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:33.686897+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:32.739979+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:29.755218+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:33.230442+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:34.161556+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:32.955778+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T20:42:21.104414+00:00", "objects": ["road_blockade_reason", "fire", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "alert_category", "brt_lane", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:23.588167+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T20:43:24.372553+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:23.288945+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:18.299019+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:24.600499+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:25.082987+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. The street is wet from rain and there are some puddles on the road. There is a yellow traffic light at the intersection and a sign that says 'Pare' (stop). There are buildings on both sides of the street and some trees. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:23.061158+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:23.859920+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:19.259725+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:24.102501+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:22.663505+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:43:24.875584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:53:13.699962+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:51:07.329846+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:06.025250+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:08.236849+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There are some small puddles on the road, but they are not significant. The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:06.331050+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:07.544075+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:07.734614+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and manageable, allowing vehicles to pass with ease."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:06.529470+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:06.940920+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:02.459579+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:08.017262+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:06.731197+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:03.171466+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit (BRT) lane."}]}, {"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-04T23:50:33.972183+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "image_condition", "image_description", "alert_category", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.885760+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:25.030165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:24.294442+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:25.510629+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:24.570511+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:20.188866+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:24.092725+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.815729+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:26.046490+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.783456+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T23:51:25.281983+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.777699+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:52:45.972340+00:00", "objects": ["brt_lane", "fire", "traffic_ease_vehicle", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "road_blockade", "landslide", "alert_category", "building_collapse", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:50:40.716784+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.965439+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:51.414691+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T23:47:58.213422+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars and motorbikes on the road, and a gas station on the corner. The street is well-lit and there are no visible obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:50.134667+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:49.453724+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:49.646167+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.894641+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:51.634211+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:50.342295+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.567351+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:39.887555+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:50:35.322828+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:24.537573+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:23.858305+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.342389+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:23.346875+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:25.232643+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. The road is wet from rain and there are puddles on the ground. There are cars, buses, and motorcycles on the road, and people are crossing the street. The buildings in the background are tall and brightly lit. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.133498+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.030512+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.124664+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:19.682299+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:24.330724+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:24.751965+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:23.626381+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}]}] \ No newline at end of file From 3749a1ab1b2f54823bee68397fcf68d28791534b Mon Sep 17 00:00:00 2001 From: d116626 Date: Sun, 4 Feb 2024 20:54:16 -0300 Subject: [PATCH 28/64] chore: add map --- app/utils/utils.py | 3 +-- "app/\360\237\223\243 Home.py" | 10 ++++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index cfb7350..7ae191f 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,8 +6,7 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, - GridUpdateMode) +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode from utils.api import APIVisionAI vision_api = APIVisionAI( diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index cb7c91f..2127dba 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -3,8 +3,14 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import (create_map, display_camera_details, get_agrid_table, - get_cameras, get_filted_cameras_objects, treat_data) +from utils.utils import ( + create_map, + display_camera_details, + get_agrid_table, + get_cameras, + get_filted_cameras_objects, + treat_data, +) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) From 92e3e0c91b32fb5e607d0eec975d53a581a8f87b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 23:54:28 +0000 Subject: [PATCH 29/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/utils/utils.py | 3 ++- "app/\360\237\223\243 Home.py" | 10 ++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index 7ae191f..cfb7350 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,8 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode +from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, + GridUpdateMode) from utils.api import APIVisionAI vision_api = APIVisionAI( diff --git "a/app/\360\237\223\243 Home.py" "b/app/\360\237\223\243 Home.py" index 2127dba..cb7c91f 100644 --- "a/app/\360\237\223\243 Home.py" +++ "b/app/\360\237\223\243 Home.py" @@ -3,14 +3,8 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import ( - create_map, - display_camera_details, - get_agrid_table, - get_cameras, - get_filted_cameras_objects, - treat_data, -) +from utils.utils import (create_map, display_camera_details, get_agrid_table, + get_cameras, get_filted_cameras_objects, treat_data) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) From 014b74dae2977549b3ce9be4ebe695ac84bc307b Mon Sep 17 00:00:00 2001 From: d116626 Date: Mon, 5 Feb 2024 14:47:14 -0300 Subject: [PATCH 30/64] chore: remove icons --- "app/\360\237\223\243 Home.py" => app/Home.py | 0 .../hide/Experimente o Modelo | Vision AI.py | 0 .../hide/Pontos Cr\303\255ticos em Tempo Real.py" | 0 .../hide/Pontos de Alagamento | Vision AI.py | 0 app/utils/api.py | 2 -- app/utils/utils.py | 2 -- data/temp/mock_api_data.json | 2 +- 7 files changed, 1 insertion(+), 5 deletions(-) rename "app/\360\237\223\243 Home.py" => app/Home.py (100%) rename "app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" => app/hide/Experimente o Modelo | Vision AI.py (100%) rename "app/hide/\360\237\227\272\357\270\217 Pontos Cr\303\255ticos em Tempo Real.py" => "app/hide/Pontos Cr\303\255ticos em Tempo Real.py" (100%) rename "app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" => app/hide/Pontos de Alagamento | Vision AI.py (100%) diff --git "a/app/\360\237\223\243 Home.py" b/app/Home.py similarity index 100% rename from "app/\360\237\223\243 Home.py" rename to app/Home.py diff --git "a/app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" b/app/hide/Experimente o Modelo | Vision AI.py similarity index 100% rename from "app/hide/\360\237\247\252 Experimente o Modelo | Vision AI.py" rename to app/hide/Experimente o Modelo | Vision AI.py diff --git "a/app/hide/\360\237\227\272\357\270\217 Pontos Cr\303\255ticos em Tempo Real.py" "b/app/hide/Pontos Cr\303\255ticos em Tempo Real.py" similarity index 100% rename from "app/hide/\360\237\227\272\357\270\217 Pontos Cr\303\255ticos em Tempo Real.py" rename to "app/hide/Pontos Cr\303\255ticos em Tempo Real.py" diff --git "a/app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" b/app/hide/Pontos de Alagamento | Vision AI.py similarity index 100% rename from "app/hide/\360\237\223\267 Pontos de Alagamento | Vision AI.py" rename to app/hide/Pontos de Alagamento | Vision AI.py diff --git a/app/utils/api.py b/app/utils/api.py index 35908db..f5b8a3e 100644 --- a/app/utils/api.py +++ b/app/utils/api.py @@ -35,7 +35,6 @@ def _get(self, path: str, timeout: int = 120) -> Dict: return response.json() def _get_all_pages(self, path, page_size=100, timeout=120): - # Function to get a single page def get_page(page, total_pages): # time each execution @@ -48,7 +47,6 @@ def get_page(page, total_pages): return response if isinstance(path, str): - print(f"Getting all pages for {path}") # Initial request to determine the number of pages initial_response = self._get( diff --git a/app/utils/utils.py b/app/utils/utils.py index 7ae191f..d08b92f 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -23,7 +23,6 @@ def get_cameras( page_size=100, timeout=120, ): - mock_data_path = "./data/temp/mock_api_data.json" if use_mock_data: @@ -234,7 +233,6 @@ def get_table_cameras_with_images(dataframe): def get_agrid_table(table): - gb = GridOptionsBuilder.from_dataframe(table) # noqa gb.configure_column("id", header_name="ID Camera", pinned="left") diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index b6d2152..ab3fb01 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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-04T23:52:48.619616+00:00", "objects": ["inside_tunnel", "water_in_road", "brt_lane", "road_blockade", "image_condition", "road_blockade_reason", "building_collapse", "landslide", "traffic_ease_vehicle", "image_description", "alert_category", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:27.248512+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:31.978708+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is murky and covers a large portion of the road, making it difficult to see the surface."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:32.313931+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:32.565623+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a large portion of the road, making it difficult to see the surface."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:28.027550+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:28.230595+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:43.801740+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:27.445863+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:35.445604+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a large portion of the road, making it difficult to see the surface."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:45.533418+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal railing on the left side of the image. The road is partially blocked by a large puddle of water. The water is murky and covers a large portion of the road, making it difficult to see the surface."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:45.294436+00:00", "label": "minor", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a large portion of the road, making it difficult to see the surface. This could cause traffic delays and is a potential hazard to drivers."}, {"object": "fire", "timestamp": "2024-02-04T23:50:27.657224+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}]}, {"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-04T23:52:56.429098+00:00", "objects": ["inside_tunnel", "brt_lane", "fire", "image_description", "landslide", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "road_blockade", "alert_category", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:41.362231+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:42.040298+00:00", "label": "true", "label_explanation": "There is a dedicated lane for BRT (Bus Rapid Transit) with the respective signage."}, {"object": "fire", "timestamp": "2024-02-04T23:50:40.315296+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:49.609061+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and buses on the road, and people are walking on the sidewalk. There are trees and buildings on either side of the road. The street is wet from the rain."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:40.018935+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:46.745705+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:47.221515+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:49.334152+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:46.495930+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:46.993687+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:45.258061+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:45.793290+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:52:32.301355+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "road_blockade", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:45:03.132462+00:00", "label": "null", "label_explanation": "The image is a CCTV image of a road in Rio de Janeiro. The road is clear with no visible obstructions or signs of road work. There are no people or vehicles on the road. The image is clear and there are no signs of any problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:49.536555+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:51.255692+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:40.557187+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:50.253862+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:39.752085+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:49.240821+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.733934+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.737532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.536345+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:49.946233+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.949723+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:52:38.510699+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "traffic_ease_vehicle", "landslide", "water_in_road", "inside_tunnel", "road_blockade_reason", "image_condition", "fire", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:00.384516+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a traffic light at the intersection and several cars are parked on the side of the road. The street is lit by streetlights."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:55.383756+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:58.689246+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:59.883488+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:00.099966+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:58.406605+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:54.213741+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:58.897112+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:58.196674+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:50:59.603901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:59.186872+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:59.383594+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:52:40.713555+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "road_blockade", "traffic_ease_vehicle", "image_description", "inside_tunnel", "fire", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:50:56.311425+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:54.672616+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:55.085537+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:55.381485+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:54.462747+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:41.196085+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:54.885219+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:56.074693+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:56.493852+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is wet from the rain."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:40.429275+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:50:55.799990+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:55.610685+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:52:51.215797+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "fire", "brt_lane", "road_blockade", "image_description", "road_blockade_reason", "alert_category", "building_collapse", "landslide", "image_condition", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:40.400608+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.348787+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.065584+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:41.206668+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:47.717325+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:50.779554+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are no cars on the road. The road is wet from the rain. There are some trees on the side of the road. There are buildings in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:49.287804+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:49.558470+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:49.775745+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:50.581531+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:46.956331+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:47.203567+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:52:36.369492+00:00", "objects": ["building_collapse", "fire", "alert_category", "brt_lane", "traffic_ease_vehicle", "image_condition", "road_blockade", "water_in_road", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:53:21.108454+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:53:18.205017+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:53:20.603613+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:19.932755+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:21.646568+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:18.408698+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:53:21.897227+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:18.907166+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:19.104812+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:49.686573+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a red traffic light on the left side of the image. A car is driving on the right side of the road. There are trees and buildings on both sides of the road. The street is wet from the rain."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:18.006775+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:20.196903+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:52:33.803143+00:00", "objects": ["inside_tunnel", "image_description", "road_blockade_reason", "fire", "brt_lane", "water_in_road", "road_blockade", "alert_category", "landslide", "image_condition", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:39.692559+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:51.696078+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There is a church on the left side of the image and a building on the right side. The street is lit by streetlights. There are no cars on the street."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:50.089136+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.776497+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:40.483780+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:49.682969+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.885432+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:50.292327+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:51.415096+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:49.437826+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.500885+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.999046+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet, with small, manageable puddles that do not interfere with traffic."}]}, {"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-04T23:52:36.321413+00:00", "objects": ["alert_category", "fire", "landslide", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "water_in_road", "building_collapse"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:47:56.804671+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:53:19.927229+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:19.722881+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:21.818791+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:47:58.093524+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is lit by streetlights and there are trees on either side of the street. There are cars parked on the side of the street and a few people are walking. The street is wet from the rain."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:20.220653+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:21.339683+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:47:56.223209+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:21.042130+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:47:57.509318+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:20.734728+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:47:57.034187+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:52:51.162963+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:50:29.783558+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:32.603258+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:01.402914+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not enough to impede the movement of vehicles."}, {"object": "fire", "timestamp": "2024-02-04T23:50:24.913208+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:43.787966+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:27.841527+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:53:14.244348+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars driving on the road and people walking on the sidewalk. There is a building in the background. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:38.812044+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:08.627114+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:25.977535+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:35.713483+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:27.132472+00:00", "label": "false", "label_explanation": "There is no bus rapid transit (BRT) lane visible in the image."}]}, {"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-04T23:52:53.861433+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.645698+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:48.863270+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:39.893415+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:51.387483+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is wet from the rain and there is a fallen tree blocking the road. There are cars parked on either side of the street and a few people are walking around."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.466706+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road, which is partially blocking traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:40.722221+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.429243+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:49.735734+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:49.145025+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:49.948100+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.154857+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:50.851883+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:52:35.333335+00:00", "objects": ["building_collapse", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "fire", "landslide", "image_description", "road_blockade"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:50:58.497835+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:57.328415+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:57.597603+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:53.452935+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:54.162739+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:58.915510+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:58.008356+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:49:48.294898+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T23:49:49.065547+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:59.200021+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:59.409364+00:00", "label": "null", "label_explanation": "The image is clear and shows a road scene. There are cars and buildings on either side of the road. The road is dry and there are no signs of construction or accidents. The image is taken from a high angle and the lighting is good."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:57.801978+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:52:32.131950+00:00", "objects": ["landslide", "brt_lane", "alert_category", "fire", "inside_tunnel", "road_blockade", "building_collapse", "traffic_ease_vehicle", "road_blockade_reason", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:50:51.672202+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:31.284738+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:49.706927+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:50:51.245073+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:27.854283+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.207727+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.625558+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:51.458093+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:49.459664+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:45.305507+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:47:58.335966+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a portion of a road with a car driving on it. The road is surrounded by trees and buildings. The sky is clear and there are no signs of rain. The image is taken from a high angle and the road is in the foreground. The car is in the center of the image and is driving towards the viewer. The car is black and there are no other cars on the road. The trees are green and the buildings are made of brick. The sky is blue and there are no clouds. The image is well-lit and there are no shadows. The image is in focus and there is no blur. The image is a good representation of the scene and there is nothing unusual or out of the ordinary."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:48.050285+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:52:45.747000+00:00", "objects": ["image_description", "inside_tunnel", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:53:20.708038+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and tunnel walls. There is a tree on the left side of the image, and a street light on the right side. The road is wet from rain, but there are no major blockages or hazards visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:17.489441+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T23:53:17.903264+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:19.615084+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, indicating significant water accumulation. However, the water level is not high enough to impede vehicle movement."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:18.181130+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:17.681183+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:18.615860+00:00", "label": "true", "label_explanation": "There are large puddles on the road, indicating significant water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:18.894231+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:53:20.240417+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, indicating significant water accumulation. However, the water level is not high enough to completely block the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:53:19.945504+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:53:19.378707+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that interfere with city life. The image shows a clear road with manageable puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:20.500580+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road, indicating significant water accumulation. However, the water level is not high enough to completely block the road."}]}, {"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-04T23:52:48.451851+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:50:56.287408+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:45.279035+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:56.001120+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:55.788757+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:56.701744+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:56.897984+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:57.596371+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:50:57.168308+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:57.875805+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There is a yellow car driving in the foreground and a black car in the background, both in motion. There are trees and buildings on either side of the street. The traffic lights are green for both directions. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:57.383940+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:56.477478+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:40.919014+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:52:35.461108+00:00", "objects": ["road_blockade", "inside_tunnel", "brt_lane", "image_description", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "building_collapse", "road_blockade_reason", "alert_category", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:50:51.532992+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:41.355562+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:42.326407+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:53.281561+00:00", "label": "null", "label_explanation": "The image shows 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 building on the left side of the road and a house on the right side. There are cars parked on both sides of the road. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:53.005239+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:52.727111+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:51.247074+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:50:52.519000+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:52.290645+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:51.729352+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:52.019173+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:51.006961+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T20:44:43.834778+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "brt_lane", "road_blockade", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T20:45:38.528377+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a road in the foreground, with a building to the left and a tunnel entrance to the right. The road is clear, with no signs of traffic or pedestrians. The image is well-lit, with no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:38.029837+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water or other obstructions. Vehicles can easily pass through."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:37.012520+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:36.447686+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:31.720756+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:36.739119+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-04T20:45:37.750964+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:37.538599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:37.233968+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T20:45:36.061963+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:27.552166+00:00", "label": "true", "label_explanation": "The image shows an enclosed structure with artificial lighting, which is characteristic of a tunnel."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:38.244871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:36:13.331650+00:00", "objects": ["inside_tunnel", "image_description", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "alert_category", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:36:50.738666+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:36:56.636857+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or disruptions. There are no signs of accidents, fires, or other incidents. The road is dry and there is no visible water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:36:56.202277+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:36:55.715681+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:36:55.926642+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:36:51.533431+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:36:54.516098+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:36:56.427477+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:36:55.017366+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:36:55.224177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:36:55.435785+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockages or disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:36:54.731033+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-04T23:53:19.172466+00:00", "objects": ["brt_lane", "water_in_road", "road_blockade", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:51:04.497266+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:07.504821+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:07.717942+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:03.934557+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:08.218590+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:51:08.717986+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:08.004026+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:08.504670+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:07.318115+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:09.409331+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is wet from the rain and there are some puddles on the ground. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:08.888091+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:09.114871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:50:45.082183+00:00", "objects": ["road_blockade", "image_condition", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "brt_lane", "fire", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:29.749705+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:29.344794+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:31.123228+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:30.859704+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:29.543772+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:29.977259+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:26.465489+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:30.650286+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:31.362972+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a car driving on the road, and a person is crossing the street. The road is wet from the rain, and there are some puddles on the ground. The buildings are tall and brightly lit."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:30.437537+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:30.220043+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:25.836384+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T20:42:23.022360+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_description", "image_condition", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T20:43:21.901631+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:15.376418+00:00", "label": "false", "label_explanation": "The image shows the outside environment with buildings and cars passing by. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:16.099703+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:20.512393+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to large puddles. Vehicles can still pass through, but with some difficulty."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:19.583154+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:21.614673+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "fire", "timestamp": "2024-02-04T20:43:21.408708+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:21.003969+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:22.173458+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars driving in both directions. There are large puddles on the road, but they are not completely blocking traffic. The cars are driving slowly and carefully. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:19.357974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:19.806659+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, but they are not completely blocking traffic. Vehicles can still pass through, although with some difficulty."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:20.781115+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The traffic is flowing smoothly, and there are no signs of accidents, fires, or other disruptions."}]}, {"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-04T23:52:43.494042+00:00", "objects": ["water_in_road", "building_collapse", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T23:50:50.157618+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:51.251611+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, and there is no evidence of structural damage or debris."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:52.149484+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:50:51.537465+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:50.431956+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:41.203033+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:50.973665+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:50.646553+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:51.758055+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:42.053550+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:52.349355+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a portion of a road with a car driving on it. The road is dry and there are no signs of water or puddles. The surrounding area is clear and there are no signs of any buildings or other structures."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:49.830218+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:50:45.703103+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:35.936479+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:36.916590+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:32.836140+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:37.420619+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and motorbikes on the road, and trees and buildings on either side. The road is wet from the rain, but there is no flooding. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:35.730299+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:32.143409+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:36.521324+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:36.231529+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:51:36.747711+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:37.140896+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:35.526708+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:36.119475+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-04T23:53:01.886667+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:50:50.765126+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene. There are no major obstructions or distortions that would affect the clarity of the image."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:51.476957+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.534881+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:52.786355+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:50.292752+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:52.981011+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:51.279055+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry, with no visible puddles or signs of water accumulation."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:52.268486+00:00", "label": "easy", "label_explanation": "The road is dry, with no visible puddles or signs of water accumulation. Vehicles can easily pass through the area."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:53.252045+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance or exit. The road is dry, with no visible puddles or signs of water accumulation. There are no major issues or disruptions visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:52.496151+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:50.072694+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance or exit."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:52.040260+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would require an alert. The road is clear, with no signs of accidents, fires, or other disruptions."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:52:41.008532+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "landslide", "fire", "road_blockade_reason", "image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:50:52.923172+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There is a blue and white house on the left and a pink and white house on the right. There are trees on both sides of the street. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:41.209752+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:42.048190+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:52.694189+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:50:52.123795+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:51.185487+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:50.426082+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:50.721199+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:52.400096+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:50.916057+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:51.442852+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:51.751935+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}]}, {"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-04T20:44:55.103646+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T20:45:52.590194+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:54.412368+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T20:45:54.748023+00:00", "label": "null", "label_explanation": "The image shows a road scene with a fallen tree blocking the road. There are cars on the road and a gas station on the side. The road is wet from the rain and there are some puddles. The sky is cloudy and there are some trees in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:53.287322+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:49.050740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T20:45:53.985899+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:53.006170+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:53.763165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:49.812743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:52.807710+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:53.496942+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:54.201851+00:00", "label": "difficult", "label_explanation": "There are large puddles on the road, but they are not deep enough to impede vehicle movement."}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-04T23:00:58.570738+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:01:42.453910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:01:37.640174+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:01:42.274761+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:01:42.033075+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:01:38.370139+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:01:41.759355+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:01:41.568926+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:01:41.338746+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:01:43.157801+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left side of the road, and a person is standing next to the car. The image is taken from a traffic camera."}, {"object": "image_condition", "timestamp": "2024-02-04T23:01:41.077018+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:01:42.732017+00:00", "label": "easy", "label_explanation": "There are no signs of significant water accumulation on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:01:42.943000+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:34.896024+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description", "alert_category", "inside_tunnel", "image_condition", "fire", "brt_lane", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:32.189481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:32.616450+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:33.079775+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:33.577326+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. The road is wet from the rain and there are puddles of water on the ground. The traffic lights are green and there are cars driving in both directions. There are also people crossing the street. The buildings in the background are tall and brightly lit."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:32.379462+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:27.999547+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:31.487605+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:32.868601+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:28.792108+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:37.320579+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:33.301250+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:31.704327+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:52:43.253198+00:00", "objects": ["brt_lane", "road_blockade", "image_description", "image_condition", "road_blockade_reason", "alert_category", "fire", "inside_tunnel", "water_in_road", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:50:53.538132+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:57.249589+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:58.944180+00:00", "label": "null", "label_explanation": "The image shows 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 a few trees on the side of the street and the buildings are tall and brightly lit. The street is wet from the rain and there are some puddles on the ground."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:56.822320+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:57.526239+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:57.758600+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T23:50:58.256422+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:45.545969+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:57.043059+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:58.451706+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:58.740930+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:58.024138+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:50:37.620735+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_condition", "image_description", "building_collapse", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.216011+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.700280+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.997343+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:29.853148+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.719917+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:35.835420+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a car driving down the street. There are some trees and buildings on either side of the street. The street is wet from the rain. There are some puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:34.914796+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.327365+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.711495+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.419010+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:35.610716+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.122677+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:53:19.366128+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:51:12.284403+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse, as the surrounding buildings are intact and there are no signs of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:10.887202+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions, providing a good view of the scene."}, {"object": "fire", "timestamp": "2024-02-04T23:51:12.589789+00:00", "label": "false", "label_explanation": "There is no evidence of fire, as there are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:07.552426+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:11.466303+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, causing a partial blockade."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:11.187528+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:13.378866+00:00", "label": "null", "label_explanation": "The image shows an elevated road with a clear view of the surroundings. There is a fallen tree blocking part of the road, causing a partial blockade. There are some small puddles on the road, but they are not significant enough to cause any traffic disruptions. The image is clear, with no visible distortions or obstructions, providing a good view of the scene."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:12.884689+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:06.774614+00:00", "label": "false", "label_explanation": "The image shows an elevated road with a clear view of the surroundings, indicating that it is not inside a tunnel."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:11.987569+00:00", "label": "minor", "label_explanation": "There are no major or minor issues that would interfere with city life. The road is partially blocked, but traffic can still pass."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:13.182428+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide, as the road and surrounding areas are clear of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:11.780716+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road, causing a partial blockade."}]}, {"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-04T23:53:05.792401+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:11.317910+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:07.215768+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:12.014490+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:12.531232+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:13.035238+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a yellow taxi driving on the left side of the road, and a cyclist is crossing the street in front of the taxi. A man is also crossing the street in the background. There are some trees and buildings on the sides of the road."}, {"object": "fire", "timestamp": "2024-02-04T23:51:12.315142+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:08.021261+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:10.833646+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:11.105133+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:11.805786+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:11.521549+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:12.817804+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:35.677286+00:00", "objects": ["fire", "inside_tunnel", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:22.356619+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:17.694444+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:21.526073+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:21.062434+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:22.627237+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:18.367950+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:21.256895+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:21.951478+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:23.051599+00:00", "label": "null", "label_explanation": "The image shows a road at night. There are cars parked on the side of the road and a few trees. The road is wet from the rain. There is a building in the background."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:22.147917+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:21.725379+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:22.850174+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:52:36.368250+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:53:21.782497+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and motorcycles on the road, and people are walking on the sidewalks. The buildings are tall and brightly lit. The street is wet from the rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:21.226597+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:19.500124+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:16.605086+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:15.881748+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:53:20.486147+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:19.805716+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:20.274028+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:53:20.965028+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:21.481535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:53:20.762848+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:53:20.058500+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:53:21.922576+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:12.373729+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:13.346137+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:11.936459+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:13.554061+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:13.845393+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There are a few cars parked on the side of the road and some trees. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:12.248210+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or blockages."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:12.862394+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-04T23:51:13.062491+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:12.651858+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:08.769116+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:11.668136+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:08.141869+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:50:31.218154+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:21.898894+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:18.679777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:17.890974+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:22.681470+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:21.681016+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:51:22.893179+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:23.599719+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of accidents, fires, or landslides. The road is dry with no signs of water accumulation. There are no people or vehicles visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:22.180638+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:22.482788+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:23.181885+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:21.472057+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:23.387398+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:52:38.120070+00:00", "objects": ["alert_category", "water_in_road", "brt_lane", "image_condition", "inside_tunnel", "road_blockade_reason", "road_blockade", "fire", "landslide", "image_description", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:50:53.934475+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:53.237571+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:49.864802+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:52.947639+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:48.969876+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:53.726111+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:53.447684+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:50:54.444879+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:54.865213+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:55.126190+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road with a central reservation. There are street lights along the road and buildings on either side. The road is wet from rain and there are some puddles, but the traffic is still flowing."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:54.185733+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:54.641804+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-04T23:50:35.309720+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "image_description", "brt_lane", "fire", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:21.888268+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:23.749619+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:22.150250+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:22.359503+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:23.979783+00:00", "label": "null", "label_explanation": "The image shows 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 are cars parked on the side of the road and some people are walking on the sidewalk."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:19.061643+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:23.257496+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:23.051830+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:23.465888+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:22.836604+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:18.338809+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:22.565757+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:38.005306+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "inside_tunnel", "building_collapse", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:21.926908+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:22.824743+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:23.033828+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:17.508912+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:22.333827+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:21.648407+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:22.122727+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:18.230392+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:22.620727+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:21.218714+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:23.307992+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are street lights along the road. There are cars, buses, and people crossing the road. The road is wet from the rain."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:21.415400+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:53:11.323623+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:03.955435+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:08.194524+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:09.998736+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:04.739676+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:08.996272+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:10.510998+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a police car parked on the side of the road. A person is walking on the sidewalk. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:09.493808+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:08.501240+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:09.709246+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:09.282252+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:08.775389+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:10.214994+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:36.886666+00:00", "objects": ["image_condition", "road_blockade", "alert_category", "inside_tunnel", "fire", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:24.291638+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:24.711604+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:25.175897+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:20.972694+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:51:25.610207+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:24.975141+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:21.596919+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:25.891946+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles on the road, but they are still navigable for most vehicles."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:26.095630+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:24.503047+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:26.294866+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few cars and pedestrians crossing the intersection. There is a tree on the left side of the image and a building on the right side. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:25.384597+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:53:02.976749+00:00", "objects": ["building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "image_description", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:51:03.601710+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:04.570982+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:54.988626+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:02.891626+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:03.103471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:03.970570+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:03.400911+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no signs of blockades, water, or other hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:04.285148+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:04.795374+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance. There is a bus driving in the tunnel."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:56.501637+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:59.694257+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:01.663572+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry, with no signs of puddles or flooding."}]}, {"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-04T23:50:45.198111+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "inside_tunnel", "water_in_road", "fire", "brt_lane", "building_collapse", "image_description", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:34.071937+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:32.351973+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:33.081698+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:28.678390+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:32.630434+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:33.834835+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:29.438843+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:33.644422+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:34.594604+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. The street is wet from the rain, and there are a few puddles on the road. There are trees and buildings on either side of the street, and the lights from the streetlights are reflected in the puddles. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:34.342181+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:32.846802+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:33.368763+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-04T23:52:41.830421+00:00", "objects": ["landslide", "image_condition", "inside_tunnel", "fire", "water_in_road", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:53:22.237188+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:39.577672+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:21.965378+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:50:41.351946+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:39.807294+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:40.405822+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:41.015907+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:28.188243+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:40.672633+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:40.104521+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:41.498927+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:42.090550+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a black car parked on the side of the road. A person is walking on the sidewalk next to the car. There are some trees and buildings in the background."}]}, {"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-04T23:50:43.787651+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "building_collapse", "image_description", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-04T23:51:31.150859+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:27.021219+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:31.951768+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:32.226172+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:33.370602+00:00", "label": "null", "label_explanation": "The image shows a night scene of a road in Rio de Janeiro. The road is dry and clear with no signs of water or debris. There are no road blockades or hazards. The surrounding buildings are intact and there are no signs of structural damage. The image is clear with no interference."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:31.730434+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:31.425800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and there are no signs of traffic disruption."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:32.717662+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:30.926364+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:27.869470+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:33.064637+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:51:32.433248+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:50:44.639270+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:40.459484+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:36.104668+00:00", "label": "false", "label_explanation": "There is no sign of a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:40.668953+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not significant. The road is still passable."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:39.034848+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:39.264693+00:00", "label": "false", "label_explanation": "There is some water on the road, but it is not significant. The road is still passable."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:39.690079+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:40.888463+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no sign of soil, rocks, or debris on or near the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:39.481025+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:39.982378+00:00", "label": "normal", "label_explanation": "There are no signs of any problems. The road is clear and there is no evidence of any incidents."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:41.086592+00:00", "label": "null", "label_explanation": "The image shows a road scene with a large overpass bridge in the background. The road is lit by street lights and there is a barrier fence on the left side. There is some water on the road, but it is not significant. The road is still passable. There are no signs of any problems. The road is clear and there is no evidence of any incidents."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:35.399219+00:00", "label": "false", "label_explanation": "The image shows a road scene with a large overpass bridge in the background. The road is lit by street lights and there is a barrier fence on the left side. There are no signs of a tunnel."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:40.179522+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of any damage."}]}, {"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-04T23:52:42.062696+00:00", "objects": ["road_blockade_reason", "brt_lane", "alert_category", "image_condition", "traffic_ease_vehicle", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:21.828278+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:41.495821+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:51.565163+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:21.602051+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:50.094680+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-04T23:53:21.386811+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:22.095612+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:50.853980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:44:59.825880+00:00", "label": "null", "label_explanation": "The image shows a tree that has fallen onto a road, blocking part of the road. The road is wet from rain and there are some puddles on the road. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:21.141014+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:51.894968+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:20.925203+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:50:40.790433+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "alert_category", "building_collapse", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:36.224851+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:29.794943+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.492093+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.516123+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.912255+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:35.227668+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.936947+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.495498+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.210833+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.623280+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.705697+00:00", "label": "easy", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:35.989787+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:52:41.485042+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "road_blockade_reason", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:50:28.375759+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:37.712894+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:18.837436+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "fire", "timestamp": "2024-02-04T23:53:17.192413+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:17.857708+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:48.275751+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "image_description", "timestamp": "2024-02-04T23:50:50.182776+00:00", "label": "null", "label_explanation": "The image is of a street scene. There are cars, buses, and people crossing the street. The street is wet from the rain. There are trees and buildings on either side of the street. The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:16.966270+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:32.229621+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:19.047424+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:17.439135+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:18.131787+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:50:35.663964+00:00", "objects": ["road_blockade_reason", "landslide", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:24.294905+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.575340+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:25.796413+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The road is wet from the rain. There are people walking on the sidewalks. There are buildings and trees in the background."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:24.086691+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:25.290171+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.623527+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:25.006267+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.519256+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:24.791836+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:23.860855+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.588916+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:19.806317+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:52:30.324289+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "landslide", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:50:50.411127+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with a few cars driving on it. There are no signs of any blockades or other hazards. The image is clear and there are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:47.106780+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no signs of any water."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:47.413285+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any blockades or other hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:49.463381+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are all intact and there are no signs of any damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:36.903284+00:00", "label": "true", "label_explanation": "The image is dark and blurry, but it is clear that the camera is inside a tunnel. The walls of the tunnel are visible on either side of the road, and the ceiling of the tunnel is visible in the distance. There are no signs of any blockades or other hazards in the tunnel."}, {"object": "fire", "timestamp": "2024-02-04T23:50:49.685993+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or other signs of a fire."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:49.196462+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear and there are no signs of any blockades or other hazards."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:50.177691+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no sign of any debris on the road or on the surrounding slopes."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:46.715773+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:49.901267+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:50:41.193621+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:48.891384+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no signs of any blockades or other hazards."}]}, {"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-04T23:52:47.511900+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:53:19.617727+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:53:19.404798+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:53:13.921432+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:53:21.366874+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:53:19.821607+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:53:21.838017+00:00", "label": "null", "label_explanation": "A night view of a busy road in Rio de Janeiro. There is a bus driving in the foreground, and other vehicles are visible in the background. The road is wet from rain, and there are some puddles on the ground. The street lights are on, and the city lights are visible in the distance."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:53:21.637394+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, but they are not completely blocking traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:53:21.088054+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:53:20.361465+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:53:20.821254+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The road is clear, and there are no signs of accidents, fires, or other disruptions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:53:20.102279+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:53:20.609431+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that it is a BRT lane."}]}, {"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-04T23:50:35.379389+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:18.632443+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:17.905870+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:14.133228+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:18.418353+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:17.656569+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:17.143573+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:17.345081+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:18.130916+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:13.428576+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:18.916744+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not enough to hinder traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:19.424478+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars, motorcycles, and people crossing the intersection. The street is wet from the rain and there are some puddles on the road. There are buildings and trees on either side of the street. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:19.131299+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:47.220109+00:00", "objects": ["road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:13.294228+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and there are no signs of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:13.801214+00:00", "label": "false", "label_explanation": "There is no BRT lane present in the image. The road is a regular road with no special designations."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:13.493737+00:00", "label": "false", "label_explanation": "There is some water on the road, but it is not significant. The road is still passable and there are no signs of any flooding."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:12.313593+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with the road going into the distance. The tunnel is well-lit and there are no signs of any blockages or hazards."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:14.782393+00:00", "label": "normal", "label_explanation": "The image does not show any major or minor issues that would affect city life. The road is clear and there are no signs of any hazards."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:13.992162+00:00", "label": "free", "label_explanation": "There is no road blockade present in the image. The road is clear and there are no signs of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:12.511885+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road is clear and there are no signs of any debris or damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:14.210464+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not significant. The road is still passable and there are no signs of any flooding."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:14.490487+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. The buildings are all intact and there are no signs of any damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:15.009528+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with the road going into the distance. The tunnel is well-lit and there are no signs of any blockages or hazards. There is some water on the road, but it is not significant. The road is still passable and there are no signs of any flooding. The buildings are all intact and there are no signs of any damage."}, {"object": "fire", "timestamp": "2024-02-04T23:51:12.795491+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no flames, smoke, or signs of any burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:12.998309+00:00", "label": "clean", "label_explanation": "The image is clear and there are no signs of any interference. The image is well-lit and there are no obstructions or distortions."}]}, {"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-04T23:50:50.220081+00:00", "objects": ["image_condition", "water_in_road", "fire", "image_description", "building_collapse", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "road_blockade", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:37.644392+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:37.858585+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:39.049397+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:39.740424+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:38.835308+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:38.359337+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:38.618826+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:34.334138+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:39.250822+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:39.533763+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:38.123400+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:34.947614+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:50:44.958146+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:30.078722+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:35.898093+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.779385+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.658897+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.795580+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:35.178757+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.394293+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.886325+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.675768+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:36.179666+00:00", "label": "null", "label_explanation": "A night-time image of a bus driving on a wet road. There are trees and buildings on either side of the road. The bus is in the left lane and there are no other vehicles visible in the image."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.477407+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.989220+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-04T23:50:50.504855+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "water_in_road", "fire", "road_blockade_reason", "alert_category", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:31.057819+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:31.747394+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.869576+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:34.657382+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.753720+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:35.060063+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:35.346634+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:35.538481+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.953412+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:34.453453+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:36.436728+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road, and people are walking on the sidewalks. The buildings are tall and brightly lit. The image is clear and well-lit."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:36.160594+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:47.420689+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:48:37.727103+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water or puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:48:38.009156+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:48:37.318989+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:48:33.121300+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:48:36.019880+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:48:36.308735+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "image_description", "timestamp": "2024-02-04T23:48:38.222451+00:00", "label": "null", "label_explanation": "The image shows a night view of a city street with trees on either side. There are no cars on the street and the street lights are on. The image is clear and there are no obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:48:37.520604+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:36.506684+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:48:37.029721+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:48:32.313143+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:48:36.811059+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:38.124750+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:24.144162+00:00", "label": "water_puddle", "label_explanation": "There are larger puddles and a fallen tree, but the road is still partially passable."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:24.694671+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:20.035751+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:51:24.927615+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:25.142145+00:00", "label": "moderate", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:23.738079+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.757633+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:23.944753+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.358871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.532760+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.433695+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:25.621061+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and people on the street. The street is wet from the rain. There is a fallen tree 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-04T23:50:38.339488+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "brt_lane", "image_condition", "fire", "inside_tunnel", "water_in_road", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-04T23:51:21.635410+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:22.753663+00:00", "label": "null", "label_explanation": "The image shows 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": "road_blockade_reason", "timestamp": "2024-02-04T23:51:21.374096+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:17.937702+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:20.753915+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:22.064271+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:17.225434+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:20.947136+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:22.538965+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:21.861895+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:22.354872+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:21.159490+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:15.206525+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:05.578263+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:05.088630+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:04.022371+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:05.383740+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:06.308654+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There is a white car driving on the road, and the surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:59.986073+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:06.100445+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:05.782500+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:04.362313+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:04.587010+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, flooding, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:04.880980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, flooding, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:00.793865+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}]}, {"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-04T23:50:39.633301+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "road_blockade", "water_in_road", "road_blockade_reason", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:27.565617+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars, a bus, and a motorcycle. There are trees on either side of the road and buildings in the background. The road is wet from rain and there are some puddles, but they are small and do not interfere with traffic. There is a police car with its lights on, stopped on the side of the road."}, {"object": "fire", "timestamp": "2024-02-04T23:51:26.813739+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:21.825890+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:22.503770+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:27.324388+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:27.009601+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:26.335193+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:26.557422+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:25.815341+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:25.610647+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:26.027456+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:25.328588+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:53:11.335358+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "water_in_road", "image_description", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:08.879020+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:06.875757+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:08.575056+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:07.664262+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:07.185425+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:09.462018+00:00", "label": "null", "label_explanation": "A clear image of a road with a bus lane on the left side and a few cars on the right side. There are trees on both sides of the road and buildings in the background. The sky is clear and blue."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:07.379790+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:03.760709+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:08.286002+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:02.996080+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:07.974411+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:09.186009+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:48.266877+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_description", "alert_category", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:33.232925+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:32.012150+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:32.339979+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:33.732690+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a gray background. The road is bordered by trees and there are no visible cars or people. The image is well-lit and there are no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:32.525571+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, landslides, fires, or other problems."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:33.500482+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:31.497983+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:33.016545+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:32.732917+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:31.711624+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:27.715250+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:28.508582+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:50:52.908958+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:48:48.019133+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and buses on the road, and people are walking on the sidewalk. There are buildings on either side of the street. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:48:47.511868+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:46.258680+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:48:47.267449+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:48:45.736401+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:48:46.738588+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:48:42.230149+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:48:41.558388+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:48:46.533481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:48:46.025406+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:48:46.951946+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:48:47.751932+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:53:14.038671+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:10.122823+00:00", "label": "null", "label_explanation": "The image shows a night view of a park with a road in the foreground. The park is surrounded by a fence and there are trees and lampuposts lining the road. The road is wet from rain and there are some puddles, but they are small and do not interfere with traffic. There is a traffic light at the intersection and a crosswalk."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:08.034868+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:08.521802+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:08.324027+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:09.624593+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:09.008949+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:04.646798+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:09.909647+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:51:09.428971+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:09.215697+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:08.727138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:05.330394+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:53:16.588519+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:12.880643+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:06.656322+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:13.476711+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars and motorcycles on the road, and people walking on the sidewalks. There are buildings and shops on either side of the street. The road is wet from the rain."}, {"object": "fire", "timestamp": "2024-02-04T23:51:12.656396+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:07.446501+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:12.361687+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:11.196860+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:12.084429+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:09.304836+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:10.958935+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:13.204007+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:11.777806+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:47.957400+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:37.042054+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:38.041928+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:51:37.839230+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:38.260784+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:36.356004+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:33.451629+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:32.647163+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:37.329838+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:36.553893+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:38.544397+00:00", "label": "null", "label_explanation": "The image shows a wide, empty street with a school sign on the right side. There are no cars or people on the street. The street is lined with trees and buildings."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:36.832323+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:37.537783+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:50:35.135520+00:00", "objects": ["inside_tunnel", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:29.940740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.561631+00:00", "label": "minor", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.250774+00:00", "label": "difficult", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:34.842048+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.575658+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:35.523566+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:34.071269+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.334467+00:00", "label": "water_puddle", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.838270+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.053307+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.649453+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:35.734098+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars, buses, and pedestrians on the street. The street is wet from the rain. There is a large puddle of water in the middle of the street."}]}, {"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-04T23:53:08.723713+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "water_in_road", "brt_lane", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:32.618258+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, obstructions, or hazards. The road is dry and there are no signs of water or flooding. The surrounding buildings are intact and there are no signs of damage. The image is clear and there are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:32.342541+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:32.053665+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:31.353037+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:31.627037+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:30.424744+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:26.633609+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:30.623455+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:27.328275+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:31.823575+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:30.824218+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:31.122369+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:20.706518+00:00", "objects": ["image_description", "alert_category", "road_blockade_reason", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:48:17.071735+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars and buses on the road, and people are walking on the sidewalk. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-04T23:48:15.868503+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:48:15.611674+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:48:14.901299+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:48:16.086376+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:48:15.167072+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:48:12.107129+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with the label 'BRT'."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:15.380611+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:48:16.572477+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:48:11.296068+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T23:48:16.364146+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:48:16.788849+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:50:45.227161+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:51:26.647725+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:24.744378+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-04T23:51:26.157505+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:26.335484+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. The road surface is mostly dry with small, manageable puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:21.828053+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:25.707823+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:26.845001+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is lit by streetlights. There are trees on either side of the street. The street is wet from the rain. There is a car driving on the street."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:21.110859+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:24.934679+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:25.442040+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:25.943542+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:25.227864+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:53:16.386397+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:51:36.016794+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.601810+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:34.212884+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:35.109140+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.907736+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:35.323682+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:29.404969+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.809923+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:34.443037+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:36.288765+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is wet from the rain."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:30.705064+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:31.389058+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-04T23:53:01.557361+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:08.326492+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:48:12.253327+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars driving in both directions. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:07.547942+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:06.841904+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:07.069554+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:08.742791+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:08.532114+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow freely."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:04.042273+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:03.355785+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:08.047265+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:07.338398+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:07.822647+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-04T23:50:38.282070+00:00", "objects": ["road_blockade", "landslide", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:23.733428+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.219664+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.235167+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:23.438268+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:23.981215+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:24.936689+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.226931+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.320572+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:24.748770+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:24.455118+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:19.447376+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:25.435462+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There are cars and buses driving on the street and the traffic lights are on. There are also people walking on the sidewalks."}]}, {"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-04T23:52:59.065040+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T23:51:09.815433+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or other issues. The road is dry and there are no signs of water or other hazards. The surrounding buildings are intact and there are no signs of damage. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:07.793400+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-04T23:51:09.017401+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:07.995321+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:09.296243+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the surface. Vehicles can easily pass through without any difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:08.292071+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:04.300282+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:08.790907+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:07.504537+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:03.508966+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not feature enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:09.503857+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:08.514466+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockages or other issues."}]}, {"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-04T23:53:01.383502+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "building_collapse", "alert_category", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:10.241358+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:10.737069+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:09.531154+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:08.826386+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:10.538251+00:00", "label": "difficult", "label_explanation": "The road is partially covered with water, making it difficult for vehicles to pass. Some vehicles may have difficulty navigating through the water."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:09.321507+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:05.850952+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:10.027477+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:09.812239+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The road is clear and there are no signs of any problems."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:11.015330+00:00", "label": "null", "label_explanation": "The image shows a wet road with a tree to the left and buildings to the right. There is a traffic light in the distance. The road is lit by streetlights. There are no cars on the road."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:09.108901+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering the entire road surface and is causing vehicles to slow down."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:05.134760+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. The road is surrounded by buildings and trees, and there is no visible tunnel structure."}]}, {"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-04T23:50:40.286231+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "image_condition", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-04T23:51:28.522850+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:29.194379+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:25.831225+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with the respective signs and markings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:29.647358+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:30.120533+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are puddles on the road. There are cars and buses driving on the street and the traffic lights are on. There are buildings and trees on either side of the street. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:28.033721+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:25.408835+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:29.855419+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:28.234520+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:28.942892+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:28.715372+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T23:51:29.438259+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-04T23:50:45.009536+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T23:51:35.621371+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:33.978296+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:34.444120+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:48:38.584166+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area. The surrounding buildings are intact and there are no signs of collapse or structural damage. There is no evidence of fire, landslide, or other major issues. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:30.316976+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:34.655095+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-04T23:51:35.126578+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:33.741404+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:35.346335+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:30.947957+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:48:36.888435+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road, but it is not completely blocking traffic. Vehicles can still pass through the area."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:34.868885+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-04T23:53:07.254868+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "alert_category", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:05.551998+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:08.956185+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:10.743282+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:09.850780+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:09.225860+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:10.056465+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:10.542067+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are some small puddles, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:09.453265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:06.248591+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:51:10.324503+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:09.640683+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:10.961133+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a bus is driving in the middle of the road. There are trees and buildings on either side of the road. The street is lit by streetlights."}]}, {"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-04T23:53:08.582562+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:05.462173+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:01.989493+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:06.587492+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:05.677180+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:02.695027+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:06.375180+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life."}, {"object": "fire", "timestamp": "2024-02-04T23:51:06.788452+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:06.161060+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:07.305191+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:07.498111+00:00", "label": "null", "label_explanation": "The image is showing a night view of a road with a green background. There are no cars on the road and the road is wet. There are trees on the side of the road and buildings in the background. The image is clear and there is no blur."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:07.069904+00:00", "label": "moderate", "label_explanation": "There is presence of significant, larger puddles."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:05.884881+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:31.918468+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T23:51:30.916059+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:32.621014+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:27.259137+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-04T23:51:32.337203+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:31.146250+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:33.117261+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. There are a few cars parked on the side of the street. There are no people visible in the image. The street is in good condition and there are no visible signs of damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:31.848150+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:31.409980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:32.142384+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:28.011121+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:32.831778+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:31.635681+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T23:50:37.998857+00:00", "objects": ["fire", "image_description", "alert_category", "landslide", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:33.955294+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:34.657678+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a central reservation and multiple lanes in each direction. There are trees on either side of the avenue and buildings in the background. The road is wet from rain and there are some puddles, but it is still passable. There is a green screen at the bottom of the image."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:33.452511+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:34.398075+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:29.066733+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:32.467601+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:33.686897+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:32.739979+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:29.755218+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:33.230442+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:34.161556+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:32.955778+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-04T20:42:21.104414+00:00", "objects": ["road_blockade_reason", "fire", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "alert_category", "brt_lane", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:23.588167+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T20:43:24.372553+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:23.288945+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:18.299019+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:24.600499+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:25.082987+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. The street is wet from rain and there are some puddles on the road. There is a yellow traffic light at the intersection and a sign that says 'Pare' (stop). There are buildings on both sides of the street and some trees. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:23.061158+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:23.859920+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:19.259725+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:24.102501+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:22.663505+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:43:24.875584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:53:13.699962+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-04T23:51:07.329846+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:06.025250+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:08.236849+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There are some small puddles on the road, but they are not significant. The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:06.331050+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-04T23:51:07.544075+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:07.734614+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and manageable, allowing vehicles to pass with ease."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:06.529470+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:06.940920+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:02.459579+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:08.017262+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:06.731197+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:03.171466+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit (BRT) lane."}]}, {"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-04T23:50:33.972183+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "water_in_road", "image_condition", "image_description", "alert_category", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.885760+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:25.030165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:24.294442+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:25.510629+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:24.570511+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:20.188866+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:24.092725+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.815729+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:26.046490+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.783456+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-04T23:51:25.281983+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.777699+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T23:52:45.972340+00:00", "objects": ["brt_lane", "fire", "traffic_ease_vehicle", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "road_blockade", "landslide", "alert_category", "building_collapse", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-04T23:50:40.716784+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-04T23:50:50.965439+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:50:51.414691+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-04T23:47:58.213422+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars and motorbikes on the road, and a gas station on the corner. The street is well-lit and there are no visible obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:50:50.134667+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-04T23:50:49.453724+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:50:49.646167+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:50:49.894641+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-04T23:50:51.634211+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:50:50.342295+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:50:50.567351+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:50:39.887555+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-04T23:50:35.322828+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:51:24.537573+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:51:23.858305+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:51:20.342389+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:51:23.346875+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T23:51:25.232643+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. The road is wet from rain and there are puddles on the ground. There are cars, buses, and motorcycles on the road, and people are crossing the street. The buildings in the background are tall and brightly lit. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-04T23:51:23.133498+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:51:25.030512+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-04T23:51:24.124664+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:51:19.682299+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:51:24.330724+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:51:24.751965+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:51:23.626381+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}]}] \ No newline at end of file +[{"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-05T00:36:17.711686+00:00", "objects": ["brt_lane", "fire", "traffic_ease_vehicle", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "road_blockade", "landslide", "alert_category", "building_collapse", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T00:34:19.157134+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no signs or markings indicating that the lane is reserved for buses."}, {"object": "fire", "timestamp": "2024-02-05T00:34:28.455871+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:28.739698+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the surface. Vehicles can easily pass through the area without any difficulty."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:29.162901+00:00", "label": "null", "label_explanation": "The image shows a wide, open road with buildings and street lights on either side. There are people crossing the road and cars driving by. The image is clear and well-lit, with no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:27.812838+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:27.057414+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and well-lit, with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:27.283845+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is dry, with only a few small puddles."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:27.568184+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:28.945728+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:28.043240+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The image shows a normal scene with people crossing the road and cars driving by."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:28.261557+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings in the image are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:15.564546+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The image shows a wide, open road with buildings and street lights on either side."}]}, {"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-05T00:36:05.276038+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T00:34:19.350068+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:18.572499+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:19.859707+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:34:19.629277+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:18.390492+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:19.104146+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:20.428488+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with a bridge in the background. There are cars driving on the road and people walking on the sidewalk. The road is wet from the rain and there are some puddles on the ground. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:18.135849+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:20.117994+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:14.505880+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:18.845916+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:15.310076+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-05T00:36:16.016109+00:00", "objects": ["alert_category", "fire", "landslide", "brt_lane", "image_condition", "image_description", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "water_in_road", "building_collapse"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-05T00:34:27.489941+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T00:34:28.012990+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:28.781732+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:16.882501+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:21.513240+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:28.985665+00:00", "label": "null", "label_explanation": "A night-time image of a street with a bus driving in the right lane. There are trees on either side of the street and buildings in the background. The street is wet from rain and there are some puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:27.285346+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:27.083714+00:00", "label": "partially_blocked", "label_explanation": "There are larger puddles indicative of significant water accumulation, but the road is still navigable."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:28.280699+00:00", "label": "moderate", "label_explanation": "There are larger puddles indicative of significant water accumulation."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:12.598096+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:26.837771+00:00", "label": "true", "label_explanation": "There are larger puddles indicative of significant water accumulation."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:27.803550+00:00", "label": "false", "label_explanation": "There are no signs of a collapsed building, such as rubble, damaged structures, or debris in the vicinity of a building."}]}, {"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-05T00:36:15.042681+00:00", "objects": ["inside_tunnel", "water_in_road", "brt_lane", "road_blockade", "image_condition", "road_blockade_reason", "building_collapse", "landslide", "traffic_ease_vehicle", "image_description", "alert_category", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:03.343924+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with graffiti on the walls, which suggests that it is a tunnel."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:17.012628+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The water is murky and appears to be stagnant."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:07.746756+00:00", "label": "false", "label_explanation": "There is no evidence of a BRT lane. There are no markings or signs indicating that the lane is designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:17.233725+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:16.715999+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:17.495262+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:18.955063+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of any damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:19.740895+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:19.468870+00:00", "label": "difficult", "label_explanation": "The road is partially covered with water, but it is still passable for vehicles."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:20.004596+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with graffiti on the walls. There is a large puddle of water on the road. The water is murky and appears to be stagnant. There is a building to the right of the road."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:17.714665+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that might affect city life. The road is clear and there are no signs of any problems."}, {"object": "fire", "timestamp": "2024-02-05T00:34:19.221266+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or signs of burnt areas."}]}, {"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-05T00:36:23.224045+00:00", "objects": ["building_collapse", "fire", "alert_category", "brt_lane", "traffic_ease_vehicle", "image_condition", "road_blockade", "water_in_road", "inside_tunnel", "image_description", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T00:34:24.242186+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T00:34:26.860947+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:21.225084+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:14.283589+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:27.146063+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:20.158862+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:20.666683+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:20.428126+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:10.850430+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:27.618058+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars parked on the side. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:27.344890+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:20.961237+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:36:12.315749+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:23.311593+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:21.172786+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:13.916869+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:23.755587+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street with cars driving in both directions. The street is lit by streetlights. There are some trees on either side of the street. The road is wet from the rain. There are some puddles on the road, but they are small and insignificant. There is a gas station on the right side of the road. There is a bus stop on the left side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:21.739723+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:16.941191+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T00:34:23.049917+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:22.219245+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:21.545489+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:22.538341+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:22.746880+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:23.531812+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:36:20.405865+00:00", "objects": ["inside_tunnel", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_description", "road_blockade_reason", "alert_category", "building_collapse", "image_condition", "landslide", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:13.551486+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:34:22.557981+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:22.778459+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:14.779433+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:21.395062+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:23.271762+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection. There are cars driving on the road and the street lights are on. The road is wet from the rain and there are some puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:21.750603+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:22.048340+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:22.360333+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:20.868331+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:23.058895+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:21.171626+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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-05T00:36:00.962736+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "road_blockade", "traffic_ease_vehicle", "image_description", "inside_tunnel", "fire", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T00:34:23.598855+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:21.897336+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:22.393658+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:22.684163+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:21.699478+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:13.411556+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:22.177997+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:23.394909+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:23.887752+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:12.602308+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:34:23.107340+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:22.898982+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T00:36:04.663182+00:00", "objects": ["image_description", "brt_lane", "road_blockade", "traffic_ease_vehicle", "landslide", "water_in_road", "inside_tunnel", "road_blockade_reason", "image_condition", "fire", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:34:31.232606+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a traffic light at the intersection and several street signs. There are cars parked on the side of the road and a few trees. The road is wet from the rain."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:36:45.259205+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:36:47.079030+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:36:47.766403+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:36:43.378765+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:36:44.357249+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:36:44.575920+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:36:47.563985+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:36:47.984619+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T00:36:43.667644+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:36:45.956350+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:36:46.396427+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T00:36:21.458467+00:00", "objects": ["inside_tunnel", "brt_lane", "fire", "image_description", "landslide", "water_in_road", "road_blockade_reason", "image_condition", "road_blockade", "traffic_ease_vehicle", "alert_category", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:33:54.344544+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:33:55.176761+00:00", "label": "false", "label_explanation": "There is no bus rapid transit (BRT) lane."}, {"object": "fire", "timestamp": "2024-02-05T00:34:18.493617+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:22.906263+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a white car parked on the side of the road. There are some trees and buildings in the background. The street is wet from the rain."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:22.350862+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:12.746364+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:13.230943+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:12.519161+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:12.996046+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:21.485610+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:17.777404+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:18.218170+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T00:36:07.016370+00:00", "objects": ["water_in_road", "building_collapse", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "road_blockade_reason", "traffic_ease_vehicle", "image_description", "brt_lane", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-05T00:34:16.173196+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:17.067539+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:17.775316+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T00:34:17.291905+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:16.365946+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:10.463158+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:16.847986+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:16.570861+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:17.559326+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:18.135209+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with cars driving in both directions. There are trees on either side of the road and buildings in the background. The road is wet from the rain and there are some puddles on the road. The image is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:12.594537+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:15.843795+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-05T00:34:26.823549+00:00", "objects": ["brt_lane", "road_blockade_reason", "water_in_road", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "fire", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T00:35:09.047950+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:12.445309+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:12.015051+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:08.352020+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:12.656995+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:12.233787+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:13.638200+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:13.349334+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:12.925738+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:13.838869+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and people walking on the sidewalk. There are also trees and buildings in the background."}, {"object": "fire", "timestamp": "2024-02-05T00:35:13.142648+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:11.743432+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-05T00:34:05.263361+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "alert_category", "brt_lane", "building_collapse", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:34:50.143099+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. The road is dry and there are no signs of water or puddles. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:44.627885+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:48.737118+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:49.014793+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:45.315211+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:49.230190+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:48.318283+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-05T00:34:49.469630+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:48.534123+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:48.064641+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:49.744819+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:49.926669+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:34:03.869093+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T00:34:50.887785+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:50.109344+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:46.123731+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:50.612524+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:49.883820+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:49.313941+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:49.593982+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:50.390188+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:45.404779+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:51.105577+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:51.610500+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a car driving through the intersection. The street is wet from the rain, but there is no flooding. There are no people or other objects in the image."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:51.392149+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:34:06.828227+00:00", "objects": ["landslide", "road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "brt_lane", "fire", "building_collapse", "inside_tunnel", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T00:34:58.547548+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:57.142955+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:57.645525+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:56.946347+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:57.363371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:58.346225+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:56.657886+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:53.864011+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T00:34:58.063928+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:57.844216+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:53.158870+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:58.774137+00:00", "label": "null", "label_explanation": "The image shows a night view of a relatively wide and straight urban road with several lanes in both directions, separated by a concrete barrier. There are traffic lights, street signs, trees, and buildings on both sides of the road. The road is illuminated by street lights. There are no people or vehicles visible in the image."}]}, {"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-05T00:34:18.913793+00:00", "objects": ["road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "image_description", "inside_tunnel", "alert_category", "image_condition", "fire", "brt_lane", "road_blockade", "landslide", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:05.653927+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:06.140876+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:06.653130+00:00", "label": "difficult", "label_explanation": "There are large puddles on the road, which could make it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:07.142536+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a traffic light at the intersection, and a street sign that says 'Rua da Tijuca'. There are cars and motorcycles on the road, and a bus is stopped at the bus stop. There are trees and buildings on either side of the road. The road is wet from the rain."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:01.244400+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:05.867866+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic delays."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:04.969458+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T00:35:06.364664+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:01.940468+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:05.374211+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but vehicles can still pass."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:06.864414+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:05.162886+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}]}, {"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-05T00:36:04.402499+00:00", "objects": ["building_collapse", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "fire", "landslide", "image_description", "road_blockade"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T00:36:47.296190+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:36:46.032543+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:36:46.237316+00:00", "label": "true", "label_explanation": "There is a presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:36:43.043026+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:36:43.718957+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:19.869572+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:36:46.725435+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:36:47.000629+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T00:36:47.524189+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:36:48.104525+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:20.437000+00:00", "label": "null", "label_explanation": "The image shows a clear road with no signs of accidents, fires, or other major issues. There are no minor issues that need to be reported."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:36:46.513135+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:34:10.716810+00:00", "objects": ["landslide", "water_in_road", "road_blockade_reason", "image_description", "inside_tunnel", "alert_category", "fire", "traffic_ease_vehicle", "brt_lane", "image_condition", "road_blockade", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T00:35:08.800895+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:07.206663+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:07.619571+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:09.015645+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection. There are cars and a bus on the road. The road is wet from the rain. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:03.628565+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:07.813775+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T00:35:08.301200+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:08.513854+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:04.292530+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:06.996910+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:07.409083+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:08.118545+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T00:34:18.861191+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:04.361909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:05.273151+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades, obstructions, or other issues."}, {"object": "fire", "timestamp": "2024-02-05T00:35:05.089069+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:05.559689+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:03.608874+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:00.788319+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:00.147756+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:04.561298+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or other issues."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:03.872841+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:05.759670+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with a school sign on the right side. There are no cars or people on the road. The road is lined with trees and buildings."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:04.111242+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:04.801794+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T00:36:02.258200+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "road_blockade", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:31:30.131260+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with a red car driving on it. The road is surrounded by trees and buildings. The sky is clear and blue."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:14.351210+00:00", "label": "true", "label_explanation": "There is a presence of significant, larger puddles."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:16.031335+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:11.241666+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:15.029565+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:10.611492+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:14.074643+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "fire", "timestamp": "2024-02-05T00:34:15.468348+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:14.565991+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:15.262924+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:14.791256+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:15.780604+00:00", "label": "moderate", "label_explanation": "There is a presence of significant, larger puddles."}]}, {"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-05T00:36:10.720610+00:00", "objects": ["alert_category", "water_in_road", "brt_lane", "image_condition", "inside_tunnel", "road_blockade_reason", "fire", "road_blockade", "landslide", "image_description", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-05T00:34:21.124699+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:20.419066+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:14.960748+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:20.136546+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:14.171735+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:20.906708+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:34:22.064898+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:31:29.239117+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:22.719349+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:22.918117+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road with a central reservation. There are street lights along the road and buildings and trees on either side. The road is wet from rain and there are some puddles, but they are small and do not interfere with traffic. There is a red car driving in the left lane and a white van driving in the right lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:21.332605+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:22.509665+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "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-04T20:42:23.022360+00:00", "objects": ["landslide", "inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_description", "image_condition", "road_blockade", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-04T20:43:21.901631+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:15.376418+00:00", "label": "false", "label_explanation": "The image shows the outside environment with buildings and cars passing by. There are no enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:16.099703+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:20.512393+00:00", "label": "water_puddle", "label_explanation": "The road is partially blocked due to large puddles. Vehicles can still pass through, but with some difficulty."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:19.583154+00:00", "label": "true", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:21.614673+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but they are not causing significant traffic disruptions. Most vehicles can still navigate through them."}, {"object": "fire", "timestamp": "2024-02-04T20:43:21.408708+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:21.003969+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:22.173458+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars driving in both directions. There are large puddles on the road, but they are not completely blocking traffic. The cars are driving slowly and carefully. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:19.357974+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:19.806659+00:00", "label": "partially_blocked", "label_explanation": "There are large puddles on the road, but they are not completely blocking traffic. Vehicles can still pass through, although with some difficulty."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:20.781115+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The traffic is flowing smoothly, and there are no signs of accidents, fires, or other disruptions."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T00:34:04.126976+00:00", "objects": ["image_description", "fire", "inside_tunnel", "brt_lane", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "road_blockade", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:34:55.430692+00:00", "label": "null", "label_explanation": "The image shows a busy urban street with moderate traffic. There are cars, buses, and bicycles on the road. The road is wet from the rain, but there are no major puddles or blockages. The buildings along the street are tall and brightly colored. The sky is cloudy, and the street lights are on."}, {"object": "fire", "timestamp": "2024-02-05T00:34:54.628881+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:50.528963+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:51.127584+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a sign indicating 'BRT'."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:55.147222+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:54.861257+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:54.136381+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The traffic is moderate, with some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:54.364966+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:53.658258+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:53.355238+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:53.057828+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:53.849675+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:36:12.107155+00:00", "objects": ["road_blockade_reason", "brt_lane", "alert_category", "image_condition", "traffic_ease_vehicle", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:16.858629+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:12.766281+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:18.946383+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:16.133182+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:19.720702+00:00", "label": "easy", "label_explanation": "The road is slightly wet, but there are no puddles or obstructions that would hinder traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:34:19.466364+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:16.429455+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:16.636283+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:20.165151+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There are some small puddles on the road, but they are not significant and do not hinder traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:19.939735+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:19.221209+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:11.970386+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T00:34:14.114655+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_condition", "image_description", "building_collapse", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:35:07.594699+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:08.112278+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:07.383980+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:03.528104+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:07.105637+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:09.207195+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. The street is lit by streetlights and there are cars parked on either side of the street. There is a tree in the foreground and a building in the background."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:08.297582+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:04.305956+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:08.789759+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:07.801690+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:09.004840+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T00:35:08.509934+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-05T00:34:03.151011+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:47.144499+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:47.633331+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:43.052504+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:34:47.841120+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:48.123481+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:46.730614+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:43.751836+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:46.937371+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:48.339615+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:46.438659+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:47.432927+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T00:31:55.959979+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}]}, {"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-05T00:33:52.463329+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "road_blockade_reason", "building_collapse", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "inside_tunnel", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T00:34:44.567512+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T00:34:44.052379+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:42.382019+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:43.476167+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:43.246628+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:43.762932+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:42.979859+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:44.338462+00:00", "label": "easy", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:42.679708+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:44.846246+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The street is lit by streetlights. There are trees and buildings on either side of the street. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:37.852088+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:38.764812+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-05T00:34:21.432355+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "fire", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:35:16.236423+00:00", "label": "null", "label_explanation": "The image shows a busy street with cars driving in both directions. There are also people walking on the sidewalks. The street is lit by streetlights. There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:15.742908+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:14.541345+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:35:15.523100+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:14.037642+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:15.052400+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:10.939891+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:10.244406+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:14.823377+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:14.337582+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:15.322696+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:16.033724+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T00:36:00.354420+00:00", "objects": ["landslide", "brt_lane", "alert_category", "fire", "road_blockade", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "image_condition", "road_blockade_reason", "image_description", "water_in_road"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T00:34:24.766965+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:19.784765+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:23.802793+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "fire", "timestamp": "2024-02-05T00:34:24.294736+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:23.380713+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:24.100046+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:24.505983+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:18.916714+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:22.898978+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:23.593709+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:24.974636+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars parked on the side of the road and people walking around. The street is well-lit and there are no visible signs of any issues."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:23.165587+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-05T00:34:06.987887+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "fire", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:58.648853+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:03.855573+00:00", "label": "moderate", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:03.170909+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:03.405780+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:02.121864+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:04.121831+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:02.709450+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:02.929989+00:00", "label": "water_puddle", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:02.431578+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:35:03.620206+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:59.332694+00:00", "label": "false", "label_explanation": "There is no designated bus rapid transit (BRT) lane."}, {"object": "image_description", "timestamp": "2024-02-05T00:32:01.728104+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking part of the road. There are cars and people on the street. The street is lit by streetlights."}]}, {"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-05T00:36:08.032528+00:00", "objects": ["inside_tunnel", "image_description", "road_blockade_reason", "fire", "brt_lane", "water_in_road", "road_blockade", "alert_category", "landslide", "image_condition", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:20.140651+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:26.314953+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:24.925693+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-05T00:34:25.623706+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:20.812073+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:24.433008+00:00", "label": "false", "label_explanation": "There are no signs of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:24.719297+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:25.113296+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:26.103256+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:24.219145+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:25.422514+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:25.820962+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-05T00:34:01.223141+00:00", "objects": ["brt_lane", "building_collapse", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "inside_tunnel", "image_description", "alert_category", "image_condition", "fire", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T00:34:52.740909+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:56.841712+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:56.040305+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:57.319732+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:56.239189+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:55.819226+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:52.051698+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:57.813566+00:00", "label": "null", "label_explanation": "A night view of a street with a gas station, a parked car, and a tree. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:56.573601+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:55.546864+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T00:34:57.034347+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:57.572242+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:36:35.407154+00:00", "objects": ["inside_tunnel", "image_condition", "landslide", "alert_category", "water_in_road", "building_collapse", "traffic_ease_vehicle", "road_blockade", "brt_lane", "fire", "image_description", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:29.523496+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:33.227439+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:35.179893+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:34.232141+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:33.437676+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:34.433877+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:34.935200+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:33.645921+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:30.235218+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T00:34:34.675091+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:35.442625+00:00", "label": "null", "label_explanation": "The image is a CCTV image of a road in Rio de Janeiro. The road is clear with no visible obstructions. There are no signs of landslides, fires, or building collapses. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:33.965711+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:34:09.669403+00:00", "objects": ["image_condition", "road_blockade", "alert_category", "inside_tunnel", "fire", "road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "landslide", "water_in_road", "image_description", "building_collapse"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T00:35:01.518258+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:01.956987+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:02.440882+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:58.021367+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:35:02.925598+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:02.231916+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:58.714112+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:03.169839+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:03.423684+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:01.726883+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:03.658737+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a white car driving through the intersection and a motorcycle parked on the side of the road. There are trees and buildings on either side of the street. The street is wet from the rain and there are some puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:02.644416+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T00:34:01.415330+00:00", "objects": ["road_blockade", "brt_lane", "inside_tunnel", "building_collapse", "water_in_road", "fire", "image_description", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:35:02.846323+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:59.647454+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:58.956028+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:03.545932+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:02.665635+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-05T00:35:03.840844+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:04.518832+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy road intersection in Rio de Janeiro. The road is wet from rain and there are some puddles, but they are small and do not interfere with traffic. There are cars, buses, and motorcycles on the road, and the traffic lights are green. The buildings on either side of the road are tall and brightly lit. There are people walking on the sidewalks, and there is a tree in the foreground."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:03.150998+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:03.334958+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:02.430178+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:04.052653+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:04.276504+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T20:44:43.834778+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "brt_lane", "road_blockade", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-04T20:45:38.528377+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a road in the foreground, with a building to the left and a tunnel entrance to the right. The road is clear, with no signs of traffic or pedestrians. The image is well-lit, with no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:38.029837+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of water or other obstructions. Vehicles can easily pass through."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:37.012520+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:36.447686+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are a few small puddles, but they are not significant enough to cause any traffic disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:31.720756+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:36.739119+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-04T20:45:37.750964+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:37.538599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:37.233968+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_condition", "timestamp": "2024-02-04T20:45:36.061963+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:27.552166+00:00", "label": "true", "label_explanation": "The image shows an enclosed structure with artificial lighting, which is characteristic of a tunnel."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:38.244871+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T00:34:18.661817+00:00", "objects": ["inside_tunnel", "road_blockade", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "building_collapse", "traffic_ease_vehicle", "alert_category", "image_condition", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:09.499383+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:13.522434+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:10.195033+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:13.289183+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-05T00:35:14.502375+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:13.812360+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:14.289336+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:14.790836+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:14.017256+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:13.017011+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:15.270652+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:14.998068+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:36:30.065134+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:40.833539+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:35.632442+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T00:31:43.674168+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 walking around. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-05T00:34:40.636550+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:36.335540+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:40.333876+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:39.427289+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:40.130658+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or other issues."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:39.648669+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:39.142329+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:41.051628+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:39.845422+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:36:29.317844+00:00", "objects": ["image_condition", "inside_tunnel", "building_collapse", "water_in_road", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T00:34:39.936759+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:35.916517+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:41.311345+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:40.140952+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:36.717644+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:41.023682+00:00", "label": "minor", "label_explanation": "There is a minor issue that should be reported. The fallen tree is blocking the road and causing traffic disruption."}, {"object": "fire", "timestamp": "2024-02-05T00:34:41.533057+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:40.738490+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:42.044592+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:42.360161+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. The street is partially flooded with medium water level, and a fallen tree is blocking the road. There are cars parked on the side of the road and a few trees on either side of the street. The street lights are on and there is a building in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:41.849572+00:00", "label": "difficult", "label_explanation": "A partial portion of the road is covered with medium water level. The water is not deep and does not completely submerge the road, but it is still causing traffic disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:40.447983+00:00", "label": "partially_blocked", "label_explanation": "The fallen tree is blocking the road and causing traffic disruption."}]}, {"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-05T00:35:59.673127+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "building_collapse", "inside_tunnel", "fire", "alert_category", "image_condition", "landslide", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:33:17.906654+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with no visible issues or obstructions. The road is dry and there are no signs of water accumulation or flooding. There are no vehicles or pedestrians visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:29.465993+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:29.683898+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:30.470079+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:14.759273+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:34:30.676376+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:30.181941+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:29.263612+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:08.192024+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:30.959757+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:15.464541+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:29.971838+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with 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-05T00:36:13.444379+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "landslide", "fire", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "road_blockade", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:31:27.929622+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a person crossing the street in the foreground. The road is dry and there are no signs of traffic congestion or hazards. The buildings along the road are mostly residential and commercial, with a few trees lining the sidewalks. The street lights are on and there is a clear view of the intersection."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:14.915350+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:15.692299+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:13.697552+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T00:34:36.584997+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:29.396782+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:30.198244+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:29.116703+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:29.628337+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:29.929881+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:30.400452+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:30.611159+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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-05T00:36:44.789644+00:00", "objects": ["fire", "alert_category", "building_collapse", "image_condition", "image_description", "inside_tunnel", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T00:34:41.509938+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:41.024546+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:41.302595+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:40.207940+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:42.134520+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There are no signs of any problems that might affect city life. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:36.797984+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:41.938803+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:41.715412+00:00", "label": "easy", "label_explanation": "The road surface is dry with small, manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:40.420464+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is dry with small, manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:40.622469+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear of any obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:40.830164+00:00", "label": "free", "label_explanation": "There are no signs of road blockades or partial blockades. The road is clear of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:37.416466+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-05T00:36:09.359204+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "inside_tunnel", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:34:14.716879+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:15.407419+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:33:58.301852+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T00:34:15.625997+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:14.477436+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:15.819831+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:18.957636+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars and motorbikes driving on it. There are trees and buildings on either side of the street. The street is wet from the rain and there are some small puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:16.105250+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:15.121638+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:33:55.898905+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:14.197805+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it does not affect the overall clarity."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:14.914543+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-05T00:34:13.166543+00:00", "objects": ["landslide", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "alert_category", "image_description", "inside_tunnel", "water_in_road", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T00:34:58.803965+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:56.913025+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T00:34:58.296204+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:58.506197+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not affected."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:54.128898+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:57.809627+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:59.003420+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are no cars on the road. The road is lit by streetlights. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:53.428341+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:57.121938+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:57.606197+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:58.022380+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no visible damage or structural issues."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:57.395350+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:36:33.979574+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T00:34:39.524968+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:36.135293+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:41.132718+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:36.819574+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:40.226696+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:41.632338+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are a few people walking on the sidewalk, and a police car is parked on the side of the road. The road is clear and there are no signs of any problems."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:40.739312+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:39.735466+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:34:40.929150+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:40.475884+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:39.948127+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:41.339712+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:33:49.677075+00:00", "objects": ["image_description", "landslide", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_condition", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:34:40.846837+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy urban street with cars, street lights, and trees. The road is wet from rain and there are some puddles. There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:40.609609+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:40.357513+00:00", "label": "moderate", "label_explanation": "There are some puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:39.582646+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:39.845029+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:38.672522+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:35.159224+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:35.867140+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:38.948876+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:34:40.060808+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:39.166464+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:39.359931+00:00", "label": "water_puddle", "label_explanation": "There are some puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-05T00:36:04.377001+00:00", "objects": ["road_blockade", "inside_tunnel", "brt_lane", "image_description", "landslide", "traffic_ease_vehicle", "water_in_road", "fire", "building_collapse", "road_blockade_reason", "alert_category", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:34:18.658211+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:12.056008+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:12.775318+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:20.409534+00:00", "label": "null", "label_explanation": "The image is a night view of a street with cars parked on either side. There are trees and buildings on either side of the street. The street is lit by streetlights. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:20.145749+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:19.902884+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:18.435507+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-05T00:34:19.636552+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:19.450863+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:18.934631+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:19.145957+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:18.231307+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-04T23:56:13.789040+00:00", "objects": ["inside_tunnel", "image_description", "traffic_ease_vehicle", "fire", "building_collapse", "brt_lane", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-04T23:56:53.904265+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-04T23:57:00.989182+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, water accumulation, or other hazards. There are no signs of landslides, fires, or building collapses. The image quality is clear with no blurring or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:57:00.204629+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water accumulation. Vehicles can pass through without difficulty."}, {"object": "fire", "timestamp": "2024-02-04T23:56:59.913095+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:56:59.693160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:56:54.804478+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "image_condition", "timestamp": "2024-02-04T23:56:58.407161+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T23:57:00.709173+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:56:58.892800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:56:59.126242+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:56:58.627384+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "alert_category", "timestamp": "2024-02-04T23:56:59.404300+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, water accumulation, or other hazards."}]}, {"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-05T00:36:47.550033+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T00:34:42.893690+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:41.675509+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T00:34:43.189758+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:38.625085+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for BRT use."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:42.112804+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:41.898812+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:43.895046+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with a clear sky. There are no cars on the road and the street lights are on. The road is surrounded by trees and buildings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:43.403873+00:00", "label": "easy", "label_explanation": "Minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:37.906120+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is not enclosed and there are no tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:42.600368+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:43.616956+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:42.389085+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}]}, {"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-05T00:34:24.215501+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:10.573370+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:10.789575+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:10.166984+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:06.271049+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:09.004257+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:09.275717+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:10.998566+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a tree in the foreground. The road is partially blocked by a fallen tree."}, {"object": "fire", "timestamp": "2024-02-05T00:35:10.373291+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:09.493539+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:09.889229+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause minor traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:05.572646+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:09.684473+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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-05T00:34:07.197180+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "brt_lane", "image_description", "water_in_road", "inside_tunnel", "building_collapse", "alert_category", "fire", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:34:55.817471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:57.002408+00:00", "label": "easy", "label_explanation": "The road is clear with no water accumulation. Vehicles can pass without difficulty."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:52.515883+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:57.437149+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a white car driving in the foreground, and a yellow car in the background. The street is lit by streetlights, and there are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:55.620198+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is clear and dry, with a few small puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:51.799340+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:56.527623+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:56.317059+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T00:34:56.761112+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:57.227439+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:55.340275+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:56.030352+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}]}, {"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-05T00:34:07.076164+00:00", "objects": ["alert_category", "image_description", "road_blockade_reason", "brt_lane", "fire", "image_condition", "water_in_road", "inside_tunnel", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-05T00:34:58.431785+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:59.637607+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:58.219391+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:54.437139+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T00:34:58.937231+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:57.441078+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:57.727816+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:53.729030+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:59.443754+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:58.677263+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:59.193407+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:57.941498+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:36:09.710946+00:00", "objects": ["brt_lane", "road_blockade", "image_description", "image_condition", "road_blockade_reason", "alert_category", "fire", "inside_tunnel", "water_in_road", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T00:34:14.911006+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:24.102420+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:25.977850+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. The road is dry and there are no signs of water accumulation. The surrounding buildings are intact and there are no signs of collapse or structural damage. There are no people or vehicles visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:23.629195+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:24.383011+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:24.607705+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "fire", "timestamp": "2024-02-05T00:34:25.174396+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:14.196788+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:23.896454+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:25.473938+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:25.698384+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:24.804471+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T00:36:36.761752+00:00", "objects": ["image_description", "road_blockade_reason", "alert_category", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:31:46.304195+00:00", "label": "null", "label_explanation": "The image shows a busy urban street scene at night. There are many cars, buses, and people on the street. The street is lit by streetlights. There are buildings on either side of the street. The buildings are tall and brightly lit. The street is wet from the rain. There are some puddles on the street, but they are small and insignificant."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:21.391882+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:22.194300+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with some small puddles but no blockages or other disruptions."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:20.638575+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:22.386690+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:20.939009+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:16.519801+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a bus currently occupying the lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:21.185649+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:22.885622+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:16.084038+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:34:22.686661+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:23.179510+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:34:10.496007+00:00", "objects": ["road_blockade", "image_condition", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "fire", "brt_lane", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:35:02.861755+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:02.346076+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:04.342061+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:04.061277+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:02.567530+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:03.148227+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:35:03.860314+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:59.434344+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:04.542450+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road intersection. There are no traffic lights visible in the image. The road is wet from rain and there are a few small puddles on the road. There are several cars and pedestrians crossing the intersection. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:03.636515+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:03.340451+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:58.724020+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T00:36:01.631156+00:00", "objects": ["inside_tunnel", "image_description", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "alert_category", "road_blockade_reason"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:33:52.421815+00:00", "label": "true", "label_explanation": "The image is dark and enclosed, with visible light sources and tunnel walls, indicating that it is inside a tunnel."}, {"object": "image_description", "timestamp": "2024-02-05T00:33:57.896471+00:00", "label": "null", "label_explanation": "A night-time image of a tunnel with a slight bend to the right. The tunnel is lit by artificial lights, and the road surface is dry and clear. There is a green wall to the left of the tunnel, and a white wall to the right. There is a car accident on the right lane, with a white car in the front and a black car behind it. The cars are partially blocking the right lane."}, {"object": "fire", "timestamp": "2024-02-05T00:33:53.025225+00:00", "label": "false", "label_explanation": "There is no evidence of fire, as there are no visible flames, smoke, or burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:33:55.142988+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water or puddles that could hinder vehicle movement."}, {"object": "image_condition", "timestamp": "2024-02-05T00:33:53.339341+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:33:52.765086+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide, as the road and surrounding areas are clear of soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:33:53.935367+00:00", "label": "false", "label_explanation": "There is no water on the road, as the surface is dry and clear."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:33:54.264054+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:33:57.661777+00:00", "label": "free", "label_explanation": "There is no road blockade, as the road is clear and free of obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:33:55.721921+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse, as the surrounding buildings are intact and there are no signs of structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:33:54.587119+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life, such as accidents, fires, or flooding."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:33:53.638698+00:00", "label": "free", "label_explanation": "There is no road blockade, as the road is clear and free of obstructions."}]}, {"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-04T23:00:58.570738+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-04T23:01:42.453910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T23:01:37.640174+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-04T23:01:42.274761+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-04T23:01:42.033075+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockades or disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-04T23:01:38.370139+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T23:01:41.759355+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-04T23:01:41.568926+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-04T23:01:41.338746+00:00", "label": "false", "label_explanation": "There are no signs of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-04T23:01:43.157801+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left side of the road, and a person is standing next to the car. The image is taken from a traffic camera."}, {"object": "image_condition", "timestamp": "2024-02-04T23:01:41.077018+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T23:01:42.732017+00:00", "label": "easy", "label_explanation": "There are no signs of significant water accumulation on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-04T23:01:42.943000+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:36:18.729510+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "brt_lane", "inside_tunnel", "alert_category", "water_in_road", "road_blockade_reason", "fire", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:34:30.228165+00:00", "label": "null", "label_explanation": "A night-time image of a street intersection. There is a yellow taxi driving in the foreground, and a motorcycle in the background. The street is lit by streetlights, and there are buildings on either side of the street. The road surface is dry and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:29.398166+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:24.722748+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:33:58.399144+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:33:57.669741+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:27.095609+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:25.310358+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:26.500138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-05T00:34:28.808158+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:29.940766+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:28.005910+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:25.902486+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water accumulation, or other obstructions."}]}, {"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-05T00:36:04.598374+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "landslide", "building_collapse", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:34:14.750791+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:36:44.553590+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:36:47.544567+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-05T00:36:47.329324+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T00:36:48.456851+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-05T00:36:42.846231+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:36:45.742757+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T00:36:43.043656+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:29.745807+00:00", "label": "null", "label_explanation": "The image shows 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 are cars parked on the side of the street and a few people are walking around."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:36:47.058402+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:36:48.031897+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:36:43.959356+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T00:36:47.117825+00:00", "objects": ["traffic_ease_vehicle", "fire", "image_condition", "road_blockade_reason", "image_description", "water_in_road", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:38.866727+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-05T00:34:38.655573+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:36.953704+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:37.767886+00:00", "label": "water_puddle", "label_explanation": "There is a road blockade due to a water puddle."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:39.389710+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are cars on the road and a gas station on the side of the road. There is a tree on the side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:37.243348+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:37.467459+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:33.764407+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:38.361982+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:33.074322+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:38.065465+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:39.153550+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:34:03.273547+00:00", "objects": ["inside_tunnel", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "brt_lane", "water_in_road", "alert_category", "image_description", "building_collapse", "road_blockade_reason", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:46.961958+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:34:52.331740+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:51.308606+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:50.734651+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:52.532567+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:47.707194+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:51.004809+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:51.817086+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:53.053885+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars parked on the side. There are trees and buildings on either side of the street. The street is wet from the rain and there are some puddles on the road. There is a street light in the foreground and a traffic light in the background. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:52.044532+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:51.553090+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:52.826567+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-04T20:44:55.103646+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-04T20:45:52.590194+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:45:54.412368+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-04T20:45:54.748023+00:00", "label": "null", "label_explanation": "The image shows a road scene with a fallen tree blocking the road. There are cars on the road and a gas station on the side. The road is wet from the rain and there are some puddles. The sky is cloudy and there are some trees in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-04T20:45:53.287322+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:45:49.050740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-04T20:45:53.985899+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:45:53.006170+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:45:53.763165+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:45:49.812743+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:45:52.807710+00:00", "label": "true", "label_explanation": "There are large puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-04T20:45:53.496942+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking the road, which is a minor issue that might affect city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:45:54.201851+00:00", "label": "difficult", "label_explanation": "There are large puddles on the road, but they are not deep enough to impede vehicle movement."}]}, {"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-05T00:34:05.153032+00:00", "objects": ["image_condition", "water_in_road", "image_description", "fire", "building_collapse", "road_blockade_reason", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "landslide", "road_blockade", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T00:34:47.708925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:47.977700+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly clear and dry."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:49.882329+00:00", "label": "null", "label_explanation": "The image shows a clear road scene with no visible issues or obstructions. The road is in good condition and there is no traffic congestion. The image is well-lit and the weather conditions are clear."}, {"object": "fire", "timestamp": "2024-02-05T00:34:49.179782+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:48.898789+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:48.401276+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:48.674859+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:44.297809+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:49.400177+00:00", "label": "easy", "label_explanation": "The road surface is mostly clear and dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:49.678335+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:48.193156+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:44.986935+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-05T00:34:12.528561+00:00", "objects": ["inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:53.766960+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:59.277119+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:57.370470+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:58.136600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:54.462777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:58.572710+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:57.869037+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:58.355064+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:59.074805+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:59.558802+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with cars driving in both directions. There are trees on either side of the road and buildings in the background. The road is wet from the rain and there are some puddles on the road."}, {"object": "fire", "timestamp": "2024-02-05T00:34:58.855587+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:57.655834+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-05T00:36:29.063028+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "alert_category", "building_collapse", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T00:34:35.521342+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:36.008068+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:34.707220+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:34.019538+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:35.811779+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:34.498920+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:31.222721+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:34.990041+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockades, obstructions, or signs of trouble."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:35.198658+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:36.227845+00:00", "label": "null", "label_explanation": "The image is a CCTV capture of a road. The road is clear with no visible obstructions or signs of trouble. The image quality is good with clear visibility."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:34.243214+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:30.522444+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T00:36:17.311339+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T00:34:17.918275+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:18.315888+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:09.991104+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:17.633810+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:16.470357+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:18.605470+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy road with cars driving in both directions. There are street lights along the road, and buildings and trees can be seen in the background. The road is wet from rain, but there are no major puddles or blockages."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:16.915563+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and manageable, allowing vehicles to pass without difficulty."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:18.112996+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and manageable, allowing vehicles to pass without difficulty."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:16.719535+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:17.395980+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, and there are no signs of accidents, fires, or other disruptions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:10.640479+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:17.128052+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:34:11.728042+00:00", "objects": ["water_in_road", "inside_tunnel", "alert_category", "building_collapse", "image_description", "road_blockade_reason", "road_blockade", "traffic_ease_vehicle", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-05T00:34:58.047381+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:54.251718+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:58.749242+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:59.033858+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:32:12.351631+00:00", "label": "null", "label_explanation": "The image shows a night scene of a road with a bend to the right. There are trees and buildings on either side of the road. The road is lit by streetlights. There is a bus stop on the left side of the road. There are cars parked on the side of the road. The road is not crowded."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:58.544107+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:58.337466+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:59.436534+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:57.838300+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:54.929586+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:59.653944+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T00:34:59.236933+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-05T00:36:42.081976+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T00:36:47.771204+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:36:47.985549+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:41.389350+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:40.492177+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T00:31:53.098671+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection 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 trees and buildings on either side of the street. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:36:34.067922+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:31:52.013692+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T00:34:40.702123+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:31:51.791300+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:42.336250+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T00:36:48.604681+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:41.592987+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T00:36:09.827560+00:00", "objects": ["landslide", "image_condition", "inside_tunnel", "fire", "water_in_road", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T00:34:19.225234+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:16.238324+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:12.740531+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:34:17.755375+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:16.456493+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:16.925122+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:17.335854+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:13.438356+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:17.132161+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:16.712680+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:18.961022+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the surface."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:19.451100+00:00", "label": "null", "label_explanation": "The image shows a night view of a city street with a row of parked cars on the side. There is a tall building with reflective windows in the background. The street is lit by streetlights."}]}, {"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-04T20:42:21.104414+00:00", "objects": ["road_blockade_reason", "fire", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "alert_category", "brt_lane", "building_collapse", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-04T20:43:23.588167+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-04T20:43:24.372553+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-04T20:43:23.288945+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-04T20:43:18.299019+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-04T20:43:24.600499+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-04T20:43:25.082987+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. The street is wet from rain and there are some puddles on the road. There is a yellow traffic light at the intersection and a sign that says 'Pare' (stop). There are buildings on both sides of the street and some trees. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-04T20:43:23.061158+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-04T20:43:23.859920+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-04T20:43:19.259725+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-04T20:43:24.102501+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-04T20:43:22.663505+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-04T20:43:24.875584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:36:39.477976+00:00", "objects": ["image_description", "image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:31:47.825783+00:00", "label": "null", "label_explanation": "The image shows a night view of a park with a road in the foreground. The park is surrounded by a fence and there are trees and bushes inside. The road is wet from rain and there are some puddles, but it is still passable. There is a traffic light at the intersection and a crosswalk."}, {"object": "image_condition", "timestamp": "2024-02-05T00:31:45.708810+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:31:46.132223+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:31:47.346150+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:31:45.937324+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:31:46.621602+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:31:42.311356+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T00:31:47.603969+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T00:31:47.109722+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:31:46.827417+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:31:46.410537+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:31:42.927716+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-05T00:36:33.864688+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T00:34:39.640054+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:38.420190+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:40.721388+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with trees and plants on both sides. There is a green wall on the left side of the image and a street light on the right side. The street is empty with no cars or people visible."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:38.629205+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-05T00:34:39.959721+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:40.218532+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:38.928917+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:39.337787+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:34.926487+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:40.466309+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:39.141470+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:35.627046+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-05T00:36:44.404539+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T00:34:41.775667+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:42.739359+00:00", "label": "null", "label_explanation": "The image shows a night view of a wide, straight road with a central reservation and street lights. There are trees on either side of the road and buildings and houses can be seen in the background. The road is empty, with no cars or people visible."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:40.969532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:39.962018+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:40.275778+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:42.372556+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:42.070278+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:36.348769+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:35.429327+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:41.468697+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:40.664959+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:41.251983+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-05T00:36:31.515720+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T00:34:32.421643+00:00", "label": "null", "label_explanation": "The image is a CCTV image of a road in Rio de Janeiro. The road is dry and there is no traffic. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:30.517893+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-05T00:34:31.707095+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:30.719432+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:31.920818+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:31.011304+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:27.366175+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:31.423532+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:30.232545+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:26.640061+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:32.175209+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:31.220591+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-05T00:33:57.631548+00:00", "objects": ["landslide", "road_blockade_reason", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T00:34:44.769608+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:43.598322+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:44.986468+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The street is lit by streetlights. There are some trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:43.377560+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:44.493897+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:42.904590+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T00:34:44.294882+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:43.815426+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:44.085899+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:43.167090+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:40.284144+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:39.580700+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T00:34:08.019791+00:00", "objects": ["fire", "traffic_ease_vehicle", "brt_lane", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "alert_category", "road_blockade", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T00:34:56.352436+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:56.703093+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. The road surface is mostly dry, with a few small puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:52.139633+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane in the image."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:54.950646+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions affecting the clarity of the image."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:55.226503+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is mostly dry, with a few small puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:55.644265+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no obstructions or blockages."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:56.945253+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:55.858178+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:55.458215+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no obstructions or blockages."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:57.157717+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a road in the foreground with a concrete barrier separating it from the oncoming lane. Street lights are on, and the road is lit. There are trees and buildings on either side of the road. The image is clear and well-lit."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:51.435375+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:56.159387+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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-05T00:36:39.035391+00:00", "objects": ["image_condition", "brt_lane", "fire", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T00:34:14.848149+00:00", "label": "poor", "label_explanation": "The image is of poor quality. It is blurry and difficult to see the details of the scene."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:15.549885+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "fire", "timestamp": "2024-02-05T00:34:14.658086+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:14.382380+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:16.459645+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:15.075735+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:15.343536+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-05T00:34:16.024650+00:00", "label": "easy", "label_explanation": "The road is completely dry with no puddles or water."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:16.670381+00:00", "label": "null", "label_explanation": "The image is a night view of a tunnel. The road is dry and there is no traffic. There are street lights along the road and buildings can be seen in the background."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:16.236202+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:15.801642+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and there are no blockades or other hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:14.144025+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and the walls of the tunnel are visible."}]}, {"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-05T00:34:12.180146+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "image_description", "brt_lane", "fire", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T00:35:06.834064+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:09.028279+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:07.093905+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:07.351534+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:09.307371+00:00", "label": "null", "label_explanation": "The image shows 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 are cars parked on the side of the road and people walking on the sidewalk."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:03.898344+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T00:35:08.518679+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:08.294850+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:08.817734+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:07.986512+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:03.170383+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:07.619998+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:34:09.301394+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T00:35:00.862531+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:00.099784+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:56.355723+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:59.593172+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:01.563771+00:00", "label": "null", "label_explanation": "The image shows a busy intersection at night. There are cars, buses, and people crossing the intersection. The street is lit by streetlights. There are buildings and trees on either side of the intersection."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:59.371535+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:01.353665+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:00.381938+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:55.561740+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:00.653046+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:01.078819+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:59.850301+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:34:04.392466+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "landslide", "inside_tunnel", "building_collapse", "road_blockade", "alert_category", "brt_lane", "fire", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:04.917965+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:05.838405+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:06.027389+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:35:00.626869+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:05.401580+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:04.665325+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:05.123817+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:01.413222+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T00:35:05.616952+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:04.227100+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T00:32:07.465851+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road, and people are crossing the street. The traffic lights are green, and the road is wet from the rain. There are buildings and trees on either side of the road, and the sky is dark."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:04.449534+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-05T00:34:16.906037+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T00:35:03.491069+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:05.244610+00:00", "label": "difficult", "label_explanation": "A partial portion of the road is covered with medium water level."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:59.796276+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:35:04.951901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:03.770233+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:05.666705+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are people walking on the street, cars parked on the side of the road, and buildings in the background. The street is wet from the rain, and there are some puddles on the ground. There is a tree that has fallen across the road, blocking traffic. There are also some police cars and officers on the scene."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:04.493060+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking the road."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:03.991409+00:00", "label": "free", "label_explanation": "There is no blockade on the road."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:04.746351+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:35:00.648562+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:05.462738+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:04.277683+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}]}, {"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-05T00:34:06.674198+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "image_condition", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:34:59.986617+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:00.785041+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:56.721914+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:01.292942+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:01.795595+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars, buildings, and trees on the street. The street is wet from the rain. There is a traffic light at the intersection."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:55.991881+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:59.494777+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:01.583845+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:59.783735+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:00.476755+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:00.268012+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:35:00.988673+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-05T00:34:16.415718+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_description", "road_blockade_reason", "alert_category", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:01.386258+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:00.167067+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:01.977526+00:00", "label": "null", "label_explanation": "The image shows a night scene of a wide avenue with a fallen tree blocking one lane of traffic. The avenue is lit by streetlights and there are cars parked on either side of the road. There are no people visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:00.403696+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:00.667687+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:01.708802+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:59.668146+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T00:35:01.196813+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:00.892306+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:59.885350+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:55.969846+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:56.718793+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}]}, {"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-05T00:34:13.607075+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade_reason", "water_in_road", "inside_tunnel", "fire", "brt_lane", "building_collapse", "image_description", "landslide", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:35:03.634240+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. The road is clear and dry with small, manageable puddles."}, {"object": "image_condition", "timestamp": "2024-02-05T00:35:01.685504+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:35:02.489365+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:35:01.993864+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:58.223636+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T00:35:03.296725+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:58.912713+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:35:03.009451+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:35:04.137644+00:00", "label": "null", "label_explanation": "The image shows a wide, multi-lane road with a tree in the center median. There are buildings and trees on either side of the road. The road is wet from rain, but there are no major puddles or blockages. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T00:35:03.890700+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:35:02.203612+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:35:02.694856+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-05T00:34:09.927475+00:00", "objects": ["fire", "image_description", "alert_category", "landslide", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "brt_lane", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T00:34:55.788240+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:56.566704+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a bus driving on the road, and there are people walking on the sidewalks. There are also some trees and buildings in the background."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:55.356326+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:56.276723+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:50.766499+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:54.394803+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:55.568578+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:54.658055+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:51.536877+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:55.076976+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:56.065228+00:00", "label": "easy", "label_explanation": "The road is clear, with only a few small puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:54.870259+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T00:36:36.673131+00:00", "objects": ["building_collapse", "landslide", "inside_tunnel", "road_blockade", "road_blockade_reason", "fire", "alert_category", "traffic_ease_vehicle", "image_description", "brt_lane", "image_condition", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T00:34:34.941017+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:35.557369+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:30.179939+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:34.245300+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:34.440304+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T00:34:35.145352+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:34.668491+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockades, flooding, accidents, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:35.346596+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:35.835292+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with a few cars parked on the side. There are no signs of any issues or disruptions. The road is dry and there are no visible obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:30.876701+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:33.753047+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:33.975397+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-05T00:36:32.047076+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T00:34:41.566382+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:37.169336+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:42.271556+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:42.776544+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:43.268704+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-05T00:34:42.582917+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T00:34:38.044551+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:41.064680+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:41.347993+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:42.055306+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:41.771175+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:43.055694+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T00:36:41.764393+00:00", "objects": ["brt_lane", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "road_blockade_reason", "building_collapse", "image_condition", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T00:34:38.940603+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T00:34:42.148861+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T00:34:38.241565+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-05T00:34:42.439189+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T00:34:42.935577+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T00:34:43.344932+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T00:34:42.643986+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T00:34:43.135469+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T00:34:41.951319+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T00:34:44.070160+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a car driving on the wet road, and the street lights are on. There are trees and buildings on either side of the street."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T00:34:43.637617+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T00:34:43.843980+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}] \ No newline at end of file From 659360882eae3b289849d4872530b8f0070f4be5 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 18:00:46 +0000 Subject: [PATCH 31/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/Home.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/app/Home.py b/app/Home.py index 2127dba..cb7c91f 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,14 +3,8 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import ( - create_map, - display_camera_details, - get_agrid_table, - get_cameras, - get_filted_cameras_objects, - treat_data, -) +from utils.utils import (create_map, display_camera_details, get_agrid_table, + get_cameras, get_filted_cameras_objects, treat_data) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) From bb9b83e51f429148dfe5c6204cae9b3c75af2d83 Mon Sep 17 00:00:00 2001 From: d116626 Date: Mon, 5 Feb 2024 21:14:45 -0300 Subject: [PATCH 32/64] feat: add classification option --- app/Home.py | 14 +++-- app/pages/Classificador de Labels.py | 91 ++++++++++++++++++++++++++++ app/utils/utils.py | 40 +++++++++++- data/temp/mock_api_data.json | 2 +- 4 files changed, 138 insertions(+), 9 deletions(-) create mode 100644 app/pages/Classificador de Labels.py diff --git a/app/Home.py b/app/Home.py index cb7c91f..ff32765 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,8 +3,14 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import (create_map, display_camera_details, get_agrid_table, - get_cameras, get_filted_cameras_objects, treat_data) +from utils.utils import ( + create_map, + display_camera_details, + get_agrid_table, + get_cameras, + get_filted_cameras_objects, + treat_data, +) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) @@ -14,9 +20,7 @@ # get cameras cameras = get_cameras( - only_active=True, - page_size=3000, - timeout=600, + only_active=False, use_mock_data=False, update_mock_data=True, ) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py new file mode 100644 index 0000000..60ad068 --- /dev/null +++ b/app/pages/Classificador de Labels.py @@ -0,0 +1,91 @@ +# -*- coding: utf-8 -*- +import pandas as pd +import streamlit as st +from utils.utils import get_cameras, get_objects, get_objetcs_labels_df, treat_data + +st.set_page_config(layout="wide", page_title="Pontos de Alagamento") +st.image("./data/logo/logo.png", width=300) + +st.markdown("# Classificador de labels | Vision AI") + +cameras = get_cameras( + only_active=False, + use_mock_data=False, + update_mock_data=True, +) +objects = pd.DataFrame(get_objects()) + +cameras_attr, cameras_identifications = treat_data(cameras) +snapshots = cameras_attr[cameras_attr["snapshot_url"].notnull()][ + ["snapshot_url"] +] # noqa +cameras_objs = cameras_identifications[cameras_identifications.notna()][ + ["object", "label"] +] +cameras_objs = cameras_objs[~cameras_objs["label"].isin(["null"])] +cameras_objs = cameras_objs.merge(snapshots, on="id") +cameras_objs = cameras_objs.sample(frac=1) +labels = get_objetcs_labels_df(objects) +labels.index = labels["name"] +labels = labels.drop(columns=["name"]) + +cameras_objs = cameras_objs.head(4) + +st.markdown( + """ + + """, + unsafe_allow_html=True, +) + + +def put_selected_label(labels_options, label): + selected_label = labels_options[labels_options["value"] == label] + selected_label = selected_label.reset_index() + label_to_put = selected_label.to_dict(orient="records") + # TODO: make a put for selected object/label + print(label_to_put, "\n") + + +# Create a state variable to keep track of the current image index +if "current_image_index" not in st.session_state: + st.session_state.current_image_index = 0 + +# Check if there are more images to review +if st.session_state.current_image_index >= len(cameras_objs): + st.write("You have reviewed all images.") + if st.button("Reset"): + st.markdown("TODO: Reset the state variables and start over.") + +else: + # Get the current image from the DataFrame + current_image = cameras_objs.iloc[st.session_state.current_image_index] # noqa + st.write( + f"INDEX: {st.session_state.current_image_index +1} / {len(cameras_objs)}" # noqa + ) # noqa + # Extract relevant information + name = current_image["object"] + snapshot_url = current_image["snapshot_url"] + st.image(snapshot_url, use_column_width=True) + labels_options = labels.loc[name] + choces = labels_options["value"].tolist() + + st.markdown(f"**Options for {name}:**") + + for label in choces: + if st.button( + label, + on_click=put_selected_label, + args=( + labels_options, + label, + ), + ): # noqa + pass + st.session_state.current_image_index += 1 # noqa diff --git a/app/utils/utils.py b/app/utils/utils.py index 92e0544..30a89ec 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,8 +6,7 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, - GridUpdateMode) +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode from utils.api import APIVisionAI vision_api = APIVisionAI( @@ -16,7 +15,7 @@ ) -@st.cache_data(ttl=60 * 2, persist=False) +@st.cache_data(ttl=600 * 2, persist=False) def get_cameras( only_active=True, use_mock_data=False, @@ -48,6 +47,17 @@ def get_cameras( return data +@st.cache_data(ttl=600 * 2, persist=False) +def get_objects( + page_size=100, + timeout=120, +): + data = vision_api._get_all_pages( + path="/objects", page_size=page_size, timeout=timeout + ) + return data + + 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( @@ -97,6 +107,30 @@ def treat_data(response): return cameras_attr, cameras_identifications +def explode_df(df, column_to_explode, prefix=None): + exploded_df = df.explode(column_to_explode) + new_df = pd.json_normalize(exploded_df[column_to_explode]) + + if prefix: + new_df = new_df.add_prefix(f"{prefix}_") + + df.drop(columns=column_to_explode, inplace=True) + new_df.index = exploded_df.index + result_df = df.join(new_df) + + return result_df + + +def get_objetcs_labels_df(objects): + objects_df = objects.rename(columns={"id": "object_id"}) + objects_df = objects_df[["name", "object_id", "labels"]] + labels = explode_df(objects_df, "labels") + labels = labels[~labels["value"].isin(["null"])] + labels = labels.rename(columns={"label_id": "label"}) + labels = labels.reset_index(drop=True) + return labels + + def get_filted_cameras_objects( cameras_attr, cameras_identifications, object_filter, label_filter ): diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index 123ff02..df7ed6d 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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-05T17:47:16.466570+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "road_blockade", "building_collapse", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:48:38.141637+00:00", "label": "null", "label_explanation": "The image is of a road with a yellow car on the right side of the image. The road is surrounded by trees and buildings. The sky is clear and blue. There are no signs of water on the road. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:36.215334+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:37.938131+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:24.924846+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:36.926031+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:24.125112+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:35.900109+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T17:48:37.443713+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:36.438768+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:37.207474+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:37.689559+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:36.726224+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:47:29.641546+00:00", "objects": ["brt_lane", "image_description", "traffic_ease_vehicle", "landslide", "water_in_road", "inside_tunnel", "road_blockade_reason", "road_blockade", "image_condition", "fire", "alert_category", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T17:48:23.094710+00:00", "label": "false", "label_explanation": "There is no designated bus rapid transit (BRT) lane."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:35.295316+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree and a flooded area blocking part of the road. A bus is stopped on the side of the road. There are cars and people on the street."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:34.822381+00:00", "label": "difficult", "label_explanation": "There is a flooded area blocking part of the road, making it difficult for vehicles to pass."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:35.080669+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of soil displacement, rocks, and debris on or near the road."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:26.405944+00:00", "label": "true", "label_explanation": "There is a flooded area blocking part of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:22.453485+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:31.032369+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:28.584310+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:26.076930+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T17:48:34.565901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:31.313660+00:00", "label": "minor", "label_explanation": "There are minor issues that might affect city life, such as a fallen tree blocking part of the road and a flooded area."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:34.320012+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T17:47:22.856371+00:00", "objects": ["brt_lane", "fire", "traffic_ease_vehicle", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "road_blockade", "landslide", "alert_category", "building_collapse", "inside_tunnel"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T17:48:26.017415+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T17:48:38.514316+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:38.791234+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:39.227845+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The buildings in the background are tall and brightly colored. The sky is blue with some puffy white clouds. The image is clear and bright."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:37.793328+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:37.006562+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:37.223150+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:37.527814+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:39.017821+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:38.017958+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:38.307952+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:25.305532+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T17:47:34.265401+00:00", "objects": ["traffic_ease_vehicle", "alert_category", "fire", "road_blockade", "landslide", "road_blockade_reason", "brt_lane", "image_condition", "image_description", "inside_tunnel", "water_in_road", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:35.866102+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:35.062902+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-05T17:48:35.487422+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:31.582611+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:36.179261+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:32.058455+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:26.138105+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:30.803317+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:36.441280+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:25.181117+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:31.339280+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:35.289039+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T17:47:24.560666+00:00", "objects": ["building_collapse", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "fire", "landslide", "image_description", "road_blockade"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T17:48:37.370659+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:36.198254+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:36.470558+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:24.690246+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:25.411768+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:37.859809+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:36.894877+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:37.173686+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T17:48:37.595807+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:38.083440+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:38.290057+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking two lanes. The road is partially blocked and there is a car accident on the right side of the road. There is no water on the road and the surrounding buildings are intact. The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:36.681387+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T17:47:19.989784+00:00", "objects": ["building_collapse", "road_blockade_reason", "fire", "alert_category", "brt_lane", "traffic_ease_vehicle", "image_condition", "road_blockade", "water_in_road", "inside_tunnel", "image_description", "landslide"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T17:48:34.056430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:30.969085+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:48:34.307823+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:31.245131+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:25.586790+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:34.573407+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:30.109990+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:30.728577+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:30.397482+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:24.893432+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T17:45:37.249951+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars parked on the side of the road and a few trees. The street is not very busy and the traffic is flowing smoothly."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:34.798007+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T17:47:29.790774+00:00", "objects": ["landslide", "road_blockade_reason", "alert_category", "image_condition", "brt_lane", "water_in_road", "road_blockade", "traffic_ease_vehicle", "image_description", "inside_tunnel", "fire", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T17:48:37.559157+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:36.452424+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:36.638537+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:35.454241+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:28.372786+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:35.854430+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:36.177965+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:37.357745+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:37.831790+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking the right lane. The tree is large and has fallen across the road, blocking traffic. There are cars stopped on the road behind the tree. The road is lined with trees and buildings. The sky is clear and the sun is shining."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:25.666217+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:48:37.137420+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:36.864141+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T17:47:24.969495+00:00", "objects": ["inside_tunnel", "water_in_road", "brt_lane", "road_blockade", "road_blockade_reason", "image_condition", "building_collapse", "landslide", "traffic_ease_vehicle", "image_description", "alert_category", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:23.307467+00:00", "label": "false", "label_explanation": "The image shows an open-air structure with no visible signs of an enclosed tunnel."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:31.694740+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road, but it is not completely blocking traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:24.083620+00:00", "label": "false", "label_explanation": "There are no visible markings or signs indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:34.801871+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:34.997372+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:31.255570+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:35.505011+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:36.420247+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:36.178732+00:00", "label": "difficult", "label_explanation": "The road is partially covered with water, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:36.690191+00:00", "label": "null", "label_explanation": "The image shows a partially flooded underpass with a guard rail on the left side and a concrete wall with graffiti on the right side. The water is murky and covers approximately half of the road, making it difficult for vehicles to pass. There is a green traffic sign on the right side of the image."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:35.291213+00:00", "label": "normal", "label_explanation": "There are no major or minor issues that would interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T17:48:35.867022+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image."}]}, {"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-05T17:47:27.156847+00:00", "objects": ["inside_tunnel", "image_description", "road_blockade_reason", "fire", "brt_lane", "water_in_road", "road_blockade", "alert_category", "landslide", "image_condition", "building_collapse", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:24.950015+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:35.361450+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are a few cars and people on the street. The buildings are mostly old and rundown. The street is narrow and cobbled. The image is clear and bright."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:31.255888+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:48:34.640033+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:25.739912+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:30.547722+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:30.921900+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:34.060887+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:35.148322+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:30.347235+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:34.437257+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:34.924075+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}]}, {"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-05T17:06:39.368366+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "landslide", "image_condition", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:07:38.820750+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:07:46.551931+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:07:47.320578+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:07:47.553270+00:00", "label": "easy", "label_explanation": "The road is clear, with no water or other obstructions that would impede vehicle movement."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:07:39.734544+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:07:46.265830+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:07:48.131889+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a yellow taxi driving in the right lane. There is a bus in the left lane, and other vehicles in the other lanes. The road is lined with trees and buildings."}, {"object": "alert_category", "timestamp": "2024-02-05T17:07:46.837011+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:07:47.047324+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:07:47.855614+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:07:45.692845+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:07:45.963355+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-05T17:47:20.536395+00:00", "objects": ["alert_category", "image_description", "water_in_road", "image_condition", "road_blockade", "inside_tunnel", "building_collapse", "fire", "landslide", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-05T17:47:40.959281+00:00", "label": "normal", "label_explanation": "There are no issues in the image."}, {"object": "image_description", "timestamp": "2024-02-05T17:47:49.139969+00:00", "label": "null", "label_explanation": "The image is showing a tunnel with no visible light. The walls of the tunnel are made of concrete and the road is made of asphalt. There is a car driving in the tunnel."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:47:40.163185+00:00", "label": "false", "label_explanation": "There is no water in the road."}, {"object": "image_condition", "timestamp": "2024-02-05T17:47:39.659478+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:47:40.743812+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:47:38.971161+00:00", "label": "true", "label_explanation": "The image is showing a tunnel with no visible light. The walls of the tunnel are made of concrete and the road is made of asphalt."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:47:42.065798+00:00", "label": "false", "label_explanation": "There is no building collapse in the image."}, {"object": "fire", "timestamp": "2024-02-05T17:47:39.448463+00:00", "label": "false", "label_explanation": "There is no fire in the image."}, {"object": "landslide", "timestamp": "2024-02-05T17:47:39.171103+00:00", "label": "false", "label_explanation": "There is no landslide in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:47:41.235577+00:00", "label": "easy", "label_explanation": "There is no water in the road."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:47:40.509563+00:00", "label": "false", "label_explanation": "There is no BRT lane in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:47:42.551500+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T17:45:08.861237+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "image_description", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:45:46.715344+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:45:52.015202+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:45:51.524564+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T17:45:51.830527+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:45:47.392092+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:45:50.300474+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:45:52.555798+00:00", "label": "null", "label_explanation": "The image shows a clear road with no signs of accidents, flooding, or other disruptions. There are no visible obstructions or distortions in the image."}, {"object": "landslide", "timestamp": "2024-02-05T17:45:52.306445+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:45:50.810892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:45:51.024507+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:45:50.609203+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "alert_category", "timestamp": "2024-02-05T17:45:51.321034+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no signs of accidents, flooding, or other disruptions."}]}, {"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-05T17:47:32.367916+00:00", "objects": ["image_description", "road_blockade_reason", "image_condition", "alert_category", "inside_tunnel", "brt_lane", "building_collapse", "landslide", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:45:40.081668+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a yellow car driving on the left side of the road, and a motorcycle with a person on it is driving on the right side of the road. There are trees and buildings on either side of the road. The sky is clear and there are no visible signs of rain."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:45:38.194957+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:45:37.384687+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T17:45:38.511709+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:45:28.803671+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:45:29.556261+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:45:38.783798+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:45:39.864693+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:45:39.028739+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:45:37.667241+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:45:39.373954+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:45:37.885358+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:47:36.099506+00:00", "objects": ["water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "building_collapse", "landslide", "fire", "road_blockade", "inside_tunnel", "alert_category", "image_description", "brt_lane", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-05T17:48:35.507431+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:35.985210+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:37.008750+00:00", "label": "easy", "label_explanation": "The road is clear with small, manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:36.492146+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:37.286135+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:48:36.721857+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:35.698222+00:00", "label": "free", "label_explanation": "There are no features that blockade the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:23.370678+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:36.205112+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:37.514516+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane on the left side. There is a motorcycle on the bus lane and several cars on the other lanes. Trees can be seen on both sides of the road, and buildings and mountains in the background. The weather is clear and sunny."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:24.029655+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:35.247418+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-05T17:25:05.554542+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:25:51.642457+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:25:46.797478+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:25:51.416302+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:25:51.128076+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, landslides, fires, or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:25:47.433928+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:25:50.928052+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:25:50.709755+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:25:50.502113+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "image_description", "timestamp": "2024-02-05T17:25:52.415884+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, landslides, fires, or other problems. There are no signs of water on the road and the surrounding buildings are intact. The image is clear with no interference and there are no visible distortions or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-05T17:25:50.224763+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:25:51.907398+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-05T17:25:52.142202+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:47:18.470293+00:00", "objects": ["road_blockade", "inside_tunnel", "brt_lane", "image_description", "landslide", "road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "fire", "building_collapse", "alert_category", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:48:29.245176+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:24.552021+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:25.396002+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:34.043936+00:00", "label": "null", "label_explanation": "The image is of a road with a fallen tree. The tree is blocking the entire road and there is a car stopped behind the tree. There is water on the road."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:31.071243+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:29.582470+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:30.724800+00:00", "label": "impossible", "label_explanation": "The road is completely submerged with high water level, making it impassable for vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:29.097992+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "fire", "timestamp": "2024-02-05T17:48:30.361297+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:30.110604+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:29.888471+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:28.865329+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-05T17:47:35.705953+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "image_description", "image_condition", "landslide", "road_blockade_reason", "inside_tunnel", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T17:48:39.202151+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:38.485096+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:39.694374+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-05T17:48:39.478832+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:38.281678+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:38.979517+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:40.215923+00:00", "label": "null", "label_explanation": "The image shows a busy road with a pedestrian bridge crossing over it. There are cars and motorbikes on the road, and people walking on the bridge. The road is lined with trees and buildings."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:38.001883+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:39.967562+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:38.785267+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:33.088431+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:35.074899+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-05T17:47:17.226776+00:00", "objects": ["image_description", "inside_tunnel", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "road_blockade_reason", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:45:41.383469+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. The road is dry and there are no visible signs of water or debris. There are no cars or people on the road. The image is clear and there are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:22.536566+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:48:35.656704+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:35.921470+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:30.903848+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:36.214523+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:31.120405+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:23.405201+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:31.689201+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:35.344198+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:34.817198+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:35.129732+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might interfere with city life. The image shows a clear road with no obstructions or hazards."}]}, {"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-05T17:47:20.141886+00:00", "objects": ["landslide", "brt_lane", "water_in_road", "road_blockade_reason", "inside_tunnel", "alert_category", "fire", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_condition", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T17:48:36.883932+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:28.590867+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:34.808471+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:35.311815+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:24.401194+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:35.568358+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T17:48:36.428455+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:35.092550+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:36.671496+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is clear, dry, or slightly wet with small, manageable puddles."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:36.173759+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:34.575285+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:37.176254+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of accidents, fires, or other incidents. The road is dry and there are no signs of water or flooding. The image is clear and there are no issues to report."}]}, {"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-05T17:47:26.060294+00:00", "objects": ["traffic_ease_vehicle", "landslide", "road_blockade", "image_condition", "inside_tunnel", "water_in_road", "fire", "road_blockade_reason", "building_collapse", "brt_lane", "alert_category", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:35.086665+00:00", "label": "easy", "label_explanation": "The road is completely clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:35.846867+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:25.799065+00:00", "label": "partially_blocked", "label_explanation": "There is a metal fence partially blocking the sidewalk, but the road is completely clear."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:25.381541+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:21.495516+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:25.577987+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-05T17:48:28.558910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:25.994099+00:00", "label": "no_blockade", "label_explanation": "There is a metal fence partially blocking the sidewalk, but the road is completely clear."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:26.502552+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:22.299749+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:26.200001+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:36.186529+00:00", "label": "null", "label_explanation": "The image shows a wide road with a yellow taxi and a bus driving on the right side. There is a metal fence partially blocking the sidewalk on the left side of the road. The buildings on the right side of the road are tall and modern, while the buildings on the left side are shorter and older. The road is made of asphalt and is in good condition. The weather is sunny and clear."}]}, {"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-05T17:48:28.004984+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition", "building_collapse", "image_description", "road_blockade", "landslide", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:19.493684+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:20.225888+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:23.808065+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:23.376129+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:22.907069+00:00", "label": "easy", "label_explanation": "The road is clear with no water accumulation. Vehicles can pass without difficulty."}, {"object": "fire", "timestamp": "2024-02-05T17:49:24.516176+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:23.095444+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:24.306353+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:22.513382+00:00", "label": "null", "label_explanation": "A photo of a four-lane road with a bus and several cars on it. There is a van partially blocking the right lane. The road is dry and there are no signs of construction or other hazards."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:23.599684+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:18.380454+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:24.070441+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a normal traffic flow with no disruptions."}]}, {"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-05T17:27:58.985086+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:28:51.571830+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:28:51.987823+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:28:46.415221+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:28:52.275223+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:28:52.473682+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:28:51.064050+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:28:47.177879+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:28:51.286546+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:28:52.682915+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:28:50.777397+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T17:28:51.775119+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-05T17:28:52.959159+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several buildings on either side of the street, and a few cars parked on the side of the road. The street is relatively narrow, and there are no sidewalks. The image is taken from a slightly elevated position, and the sky is clear."}]}, {"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-05T17:47:46.606055+00:00", "objects": ["image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "image_condition", "building_collapse", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:48:44.000793+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of water, landslides, or fires. There are no buildings or other structures in the image."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:41.813408+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-05T17:48:43.213462+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:42.097006+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:43.496589+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:42.453804+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:38.789482+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:41.592729+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:42.997925+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:38.087626+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:43.726531+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:42.758141+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-05T17:44:27.339779+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "inside_tunnel", "image_description", "road_blockade", "alert_category", "brt_lane", "fire", "road_blockade_reason", "water_in_road", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:45:39.630428+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "image_condition", "timestamp": "2024-02-05T17:45:27.955596+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:45:11.724522+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_description", "timestamp": "2024-02-05T17:45:40.732826+00:00", "label": "null", "label_explanation": "A photo of a road intersection in Rio de Janeiro. A white car is driving through the intersection. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:45:28.606244+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:45:37.522295+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:45:15.531038+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T17:45:38.972985+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:45:28.834912+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:45:28.330703+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:45:38.244737+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no visible damage or structural issues."}, {"object": "landslide", "timestamp": "2024-02-05T17:45:40.123397+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:47:32.967531+00:00", "objects": ["road_blockade_reason", "water_in_road", "alert_category", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "image_condition", "road_blockade", "fire", "landslide", "image_description", "building_collapse"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:28.965448+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:28.475168+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:29.212621+00:00", "label": "normal", "label_explanation": "There are no minor or major issues. The image shows a clear road with no blockades or disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:30.231819+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:25.159997+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:24.335436+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:28.212652+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:28.714405+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:48:29.968938+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:30.455443+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:30.775326+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars, buses, and trucks. There is a landslide on the side of the road and a fallen tree blocking part of the road. The road is partially blocked and traffic is slow."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:29.596836+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}]}, {"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-05T17:47:54.471185+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:49:01.977002+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:02.544413+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:56.795334+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:01.756639+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:00.547488+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:02.772870+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars driving in both directions. There are trees and buildings on either side of the road. The sky is clear and the sun is shining."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:00.945643+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely free."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:02.248399+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:00.757964+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:01.461474+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:57.546994+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:01.234327+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}]}, {"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-05T17:48:06.885424+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T17:49:24.253426+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:23.970744+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:20.477455+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:49:19.472138+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:24.461173+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:12.596340+00:00", "label": "null", "label_explanation": "The image shows a wide, four-lane road with a fallen tree partially blocking the right lane. There is a yellow car on the right side of the road, and a bus approaching from the opposite direction. The road is lined with trees and buildings, and the sky is clear with a few clouds."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:21.972411+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:23.197782+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:22.470431+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:21.249437+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:19.253761+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:23.672043+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:47:26.811640+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:48:38.184446+00:00", "label": "free", "label_explanation": "There are no features that block the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:34.800030+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:37.971291+00:00", "label": "false", "label_explanation": "There are small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:37.698259+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:38.688768+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:38.890732+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:39.592131+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:48:39.158286+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:42:46.959019+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with cars driving in both directions. There are trees and buildings on either side of the road. The road is dry and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:39.376309+00:00", "label": "easy", "label_explanation": "There is minimal water on the road, and it does not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:38.397751+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:30.991791+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T17:47:51.765820+00:00", "objects": ["building_collapse", "road_blockade", "inside_tunnel", "fire", "alert_category", "road_blockade_reason", "traffic_ease_vehicle", "image_description", "brt_lane", "image_condition", "landslide", "water_in_road"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T17:48:47.573154+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:46.869948+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:42.753757+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:48:47.841610+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:47.352196+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:47.078268+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:48.064628+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:48.555566+00:00", "label": "null", "label_explanation": "The image shows a tree that has fallen onto a road, blocking part of the road. The road is surrounded by trees and buildings. The sky is clear and the sun is shining."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:43.477572+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:46.364497+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:48.279875+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:46.675062+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}]}, {"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-05T17:48:00.344084+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "road_blockade", "brt_lane", "fire", "building_collapse", "alert_category", "image_condition", "inside_tunnel", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:48:43.718020+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking part of the road. A car is stopped behind the tree. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:43.192095+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road but they are still navigable for most vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:42.183001+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road but they are still navigable for most vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:41.706838+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:41.927478+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:38.627441+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T17:48:42.913603+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:42.700580+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:42.470512+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:41.500223+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:37.922972+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:43.415449+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:47:38.867851+00:00", "objects": ["traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "inside_tunnel", "brt_lane", "fire", "image_description", "landslide", "water_in_road", "image_condition", "alert_category", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:31.275367+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:30.025056+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:29.740240+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:25.009763+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:25.752518+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T17:48:31.028057+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_description", "timestamp": "2024-02-05T17:39:47.904178+00:00", "label": "null", "label_explanation": "The image shows a clear road with no signs of accidents, fires, or other disruptions. There are no people or vehicles visible in the image."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:34.061030+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:29.435525+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:28.938261+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:30.324623+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:30.742657+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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-05T17:48:36.347372+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "image_condition", "brt_lane", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:24.168065+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:24.445752+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-05T17:49:19.947626+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:19.661242+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:20.173964+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:21.668175+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:22.437431+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:20.679245+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:22.690766+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a black parked car on the left side of the image. A tree is in the middle of the road, blocking traffic. A bus is seen in the background, driving in the opposite direction of the camera. There are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:23.634579+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:22.908075+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:20.942579+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T17:47:30.553407+00:00", "objects": ["road_blockade_reason", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_condition", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:28.828823+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:29.086367+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:41.620305+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:23.637308+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:26.535911+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T17:48:41.196698+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:26.821327+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:28.585029+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:42.104837+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. The road is surrounded by tall buildings and trees. The sky is clear and sunny. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:41.827089+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:29.319760+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:22.811772+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics."}]}, {"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-05T17:47:22.735554+00:00", "objects": ["road_blockade", "building_collapse", "brt_lane", "inside_tunnel", "fire", "water_in_road", "traffic_ease_vehicle", "image_description", "landslide", "alert_category", "road_blockade_reason", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:48:39.496599+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:40.257073+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:36.077707+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:35.375345+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:48:40.470928+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:39.258911+00:00", "label": "false", "label_explanation": "There are no signs of water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:40.750788+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:41.270011+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro. There are cars, buses, and people crossing the road. The road is lined with trees and buildings."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:40.994125+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:39.978553+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:39.763108+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:38.981084+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it does not affect the overall clarity."}]}, {"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-05T17:47:55.894898+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:49.290950+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:43.615780+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:49.818365+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking two of the lanes. There is a building to the right of the road and a few cars parked on the side of the road. The sky is clear with a few clouds."}, {"object": "fire", "timestamp": "2024-02-05T17:48:49.018407+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:44.422371+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:48.723701+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:47.716286+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:48.507118+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:47.920007+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:47.410584+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:49.504684+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:48.209499+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}]}, {"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-05T17:47:59.210276+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:48:50.983992+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:46.946808+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:51.695130+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:52.173899+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:52.697092+00:00", "label": "null", "label_explanation": "The image shows a busy urban street with cars, buses, and people crossing the road. There are buildings on either side of the street and trees lining the sidewalk. The sky is clear and the sun is shining."}, {"object": "fire", "timestamp": "2024-02-05T17:48:51.978996+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:47.661023+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:50.485838+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:50.761879+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:51.464776+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:51.257704+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:52.448035+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:47:49.138286+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T17:48:48.866196+00:00", "label": "poor", "label_explanation": "The image is not clear and has some interference. There is a significant amount of blurriness and water spots on the image."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:45.695900+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for buses."}, {"object": "fire", "timestamp": "2024-02-05T17:48:50.481786+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:49.377816+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:51.002398+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:49.689251+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:49.080193+00:00", "label": "false", "label_explanation": "There are no puddles on the road. The road surface is clear and dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:50.692791+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water on the road. Vehicles can easily pass through without any difficulty."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:51.301158+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are trees and buildings on either side of the road. The road is dry and there is no traffic. The image is clear and there is no blurriness."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:50.185413+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:49.891382+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:44.898637+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}]}, {"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-05T17:48:21.111880+00:00", "objects": ["inside_tunnel", "fire", "image_condition", "brt_lane", "alert_category", "image_description", "building_collapse", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "road_blockade"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:08.195158+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:49:13.282495+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:11.777257+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:08.879488+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:12.714645+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:25.527543+00:00", "label": "null", "label_explanation": "The image shows a wide road with a slight curve to the right. There are trees and buildings on either side of the road. The sky is clear with a few clouds. The road is dry with a few small puddles. There is a person crossing the road in the distance."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:12.971131+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:11.999682+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:13.530123+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:12.484173+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking the road."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:13.788508+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:12.201288+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}]}, {"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-05T17:47:49.237403+00:00", "objects": ["fire", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:48:48.539969+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:37:13.169875+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear sky. There are a few trees on either side of the road and some buildings in the background. The road is dry and there are no signs of construction or accidents. The image is clear and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:47.750547+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:47.056592+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:47.331687+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:49.050207+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:48.749670+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:44.142729+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:43.448152+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:48.257472+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:47.553691+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:48.051528+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-05T17:47:50.260450+00:00", "objects": ["road_blockade_reason", "image_description", "traffic_ease_vehicle", "image_condition", "brt_lane", "inside_tunnel", "water_in_road", "fire", "alert_category", "landslide", "building_collapse", "road_blockade"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:39.302847+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:40.710321+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are several cars on the road, including a yellow taxi and a silver car. There are also people crossing the road. The buildings along the road are mostly residential and commercial, with some street art visible. The road surface is in good condition, with some small puddles. The traffic lights are green in all directions. The weather is clear and sunny."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:40.217221+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:38.606059+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:35.441446+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:34.802961+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:38.815145+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "fire", "timestamp": "2024-02-05T17:48:39.992910+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:39.507930+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:40.426985+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:39.724488+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:39.011711+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:48:11.151993+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "building_collapse", "road_blockade", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:49:22.178194+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:23.770456+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:23.984876+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:46:13.367332+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:46:12.670711+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:22.454257+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:22.873848+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:24.486298+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:23.073486+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:46:13.811850+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:14.310547+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection with a clear sky. There are a few trees on either side of the road and some buildings in the background. The road is dry and there are no signs of construction or accidents. There are no people or cars visible in the image."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:21.969659+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:44:58.691514+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "fire", "alert_category", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T17:45:59.628681+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:45:56.219159+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:45:59.863295+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:46:00.828398+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:45:56.859066+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T17:46:01.044426+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:46:00.543455+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, flooding, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:46:00.335633+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, flooding, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:46:01.547786+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:01.892694+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined street with a clear road surface. There are no visible obstructions or signs of water accumulation. The image is clear and free of distortions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:46:01.245524+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:46:00.069011+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, flooding, or other obstructions."}]}, {"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-05T17:47:46.073986+00:00", "objects": ["inside_tunnel", "image_condition", "road_blockade_reason", "landslide", "alert_category", "water_in_road", "building_collapse", "road_blockade", "traffic_ease_vehicle", "brt_lane", "fire", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:46.782621+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:50.458076+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:51.165697+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:52.364484+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:51.421142+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:50.669506+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:51.660513+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:50.907294+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:52.155041+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:47.474684+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T17:48:51.881989+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:52.599588+00:00", "label": "null", "label_explanation": "A cyclist is riding on a bike lane on the right side of the road. There is a red car parked on the side of the road, and a silver car is driving in the opposite direction. Trees line the street, and buildings can be seen in the background. The image is clear and bright."}]}, {"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-05T17:48:06.116752+00:00", "objects": ["image_description", "landslide", "alert_category", "building_collapse", "inside_tunnel", "water_in_road", "brt_lane", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:39:54.782105+00:00", "label": "null", "label_explanation": "The image is of a tunnel with a slight bend to the right. The walls of the tunnel are made of concrete and the road is made of asphalt. There is a single light source in the tunnel. There is a car in the tunnel, stopped on the side of the road."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:13.732412+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:12.723924+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, landslides, fires, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:12.942250+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:08.035778+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:11.957098+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:08.734968+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T17:49:13.250668+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:12.236927+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:11.737223+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:13.534476+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades, landslides, fires, or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:12.453122+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:48:24.549405+00:00", "objects": ["building_collapse", "traffic_ease_vehicle", "alert_category", "image_description", "image_condition", "road_blockade_reason", "fire", "brt_lane", "road_blockade", "landslide", "water_in_road", "inside_tunnel"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T17:46:23.795796+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:46:24.286623+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-05T17:46:23.580397+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:24.786873+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are no cars on the road. There are people crossing the road. There are trees and buildings on the side of the road. The sky is clear."}, {"object": "image_condition", "timestamp": "2024-02-05T17:46:22.565324+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:46:23.379601+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:46:24.073509+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:46:19.583514+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:46:23.109000+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:46:24.565119+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:46:22.868722+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:46:18.773547+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T17:48:16.041666+00:00", "objects": ["landslide", "image_condition", "water_in_road", "road_blockade", "fire", "image_description", "brt_lane", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T17:49:08.527318+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:06.614869+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:06.849791+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:07.116930+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:49:08.034370+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:08.793392+00:00", "label": "null", "label_explanation": "The image shows a wide road with multiple lanes of traffic. There are trees and buildings on either side of the road. The road is clear of any obstructions and traffic is flowing smoothly."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:03.629433+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:07.804940+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:08.308648+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:07.560432+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:02.939220+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:07.324865+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:47:45.243019+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "alert_category", "building_collapse", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:48:43.222043+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:43.722171+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:42.507035+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:41.806461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:43.492615+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet, with small, insignificant puddles. Traffic can easily pass through without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:42.301999+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:39.101627+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:42.724752+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:42.993713+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:43.940009+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. The road surface is in good condition, with no visible signs of wear or damage. There are no people or vehicles on the road. The image is clear and well-lit, with no obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:42.030120+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:38.410605+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics in the image."}]}, {"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-05T17:48:16.524088+00:00", "objects": ["road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:49:22.709792+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:23.202192+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:23.916510+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow freely."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:23.422979+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:24.409901+00:00", "label": "null", "label_explanation": "The image shows a busy road with cars lined up, waiting to turn onto another road. There is a gas station on the left side of the road and a sports court on the right side. Trees line the street on both sides."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:22.921550+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:22.144523+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:22.418781+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:18.730804+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:19.510509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:24.139892+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:49:23.721502+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-05T17:48:02.772275+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T17:49:14.594970+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:13.409330+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:15.498469+00:00", "label": "null", "label_explanation": "The image shows a tree-lined street with a fallen tree blocking the road. The tree is large and has fallen across the entire road, making it impassable for vehicles. There is a car approaching the fallen tree, and the driver is attempting to turn around. There are also several people standing on the sidewalk, watching the incident. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:13.626536+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-05T17:49:14.804337+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:13.817375+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:15.014380+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:14.328667+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:09.820919+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:15.221985+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:14.107027+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:10.545819+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}]}, {"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-05T17:48:24.970754+00:00", "objects": ["fire", "image_description", "alert_category", "landslide", "inside_tunnel", "image_condition", "building_collapse", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "road_blockade"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:49:12.400901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:13.084368+00:00", "label": "null", "label_explanation": "Bus driving on a wide avenue with trees on the side. There is a bus stop on the right side of the road. In the background, there is a soccer stadium."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:11.866937+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:12.866304+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:07.296290+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:10.878631+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:12.159682+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:11.162595+00:00", "label": "true", "label_explanation": "There are larger puddles indicative of significant water accumulation."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:11.653392+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:12.602795+00:00", "label": "moderate", "label_explanation": "There are larger puddles indicative of significant water accumulation."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:07.980657+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:11.374375+00:00", "label": "partially_blocked", "label_explanation": "There are larger puddles indicative of significant water accumulation, but the road is still navigable."}]}, {"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-05T17:47:47.373580+00:00", "objects": ["fire", "alert_category", "image_condition", "building_collapse", "inside_tunnel", "image_description", "landslide", "traffic_ease_vehicle", "water_in_road", "road_blockade", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:48:57.353305+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:56.844696+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:55.933483+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:57.111201+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:52.511662+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T17:45:58.431434+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are several cars parked on the side of the road and a few people walking around. The street is lined with trees and buildings."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:57.849763+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:57.624360+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:56.133359+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:56.419127+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:56.631427+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:53.214436+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a BRT lane."}]}, {"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-05T17:07:33.887860+00:00", "objects": ["landslide", "inside_tunnel", "fire", "image_condition", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "building_collapse", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T17:08:19.377752+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:08:13.963612+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:08:18.891815+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:08:17.479764+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:08:14.700399+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T17:08:18.392823+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:08:17.972257+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:08:19.173894+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:08:18.180511+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:08:17.723643+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:08:18.667930+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:08:19.605873+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There are trees and buildings on either side of the road. The traffic is moderate, and there are no visible accidents or obstructions."}]}, {"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-05T17:48:28.244963+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:49:14.108961+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:09.714666+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:14.394378+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:12.722566+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:12.916044+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:13.407450+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:14.597262+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:13.199083+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:13.684796+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:14.879758+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree blocking part of the road. There is a green area to the left of the road and buildings and overpasses to the right. The sky is clear with a few clouds. The image is clear and has good visibility."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:09.083921+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:13.887617+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T17:47:38.382467+00:00", "objects": ["road_blockade", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "alert_category", "fire", "inside_tunnel", "water_in_road", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:48:35.514915+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:26.399089+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:37.167138+00:00", "label": "null", "label_explanation": "The image shows a wide road with cars driving in both directions. There are trees and buildings on either side of the road. The sky is clear and the sun is shining."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:34.998590+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:35.772625+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:35.995956+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-05T17:48:36.462695+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:25.664915+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics in the image."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:35.288379+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:36.681754+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:36.892293+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:36.196033+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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-05T17:48:34.229982+00:00", "objects": ["traffic_ease_vehicle", "fire", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "landslide", "inside_tunnel", "water_in_road", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:46:28.869922+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-05T17:49:24.246987+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:46:23.381273+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:29.385258+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. There are cars and motorbikes on the road, and people walking on the sidewalk. The sky is clear and the sun is shining."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:24.458886+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:46:27.689361+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:23.954052+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:23.738602+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:46:27.073578+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:46:28.270602+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:46:27.366070+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "alert_category", "timestamp": "2024-02-05T17:46:28.002583+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-05T17:48:17.559611+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T17:49:06.788661+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:05.997631+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:02.394280+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:05.504025+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:07.581578+00:00", "label": "null", "label_explanation": "The image shows a busy urban intersection in Rio de Janeiro. There are cars, motorcycles, and people crossing the intersection. The buildings in the background are tall and brightly colored. The sky is clear and blue."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:05.286461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:07.290600+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:06.300240+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:01.682818+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:06.499530+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:05.791077+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:07.026297+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-05T17:48:05.692671+00:00", "objects": ["road_blockade", "brt_lane", "image_description", "inside_tunnel", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:49:19.227907+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:15.637126+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:21.113835+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are cars, buses, and pedestrians on the road. The road is partially blocked by a fallen tree. The sky is blue and there are some clouds."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:14.824641+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:20.036123+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:19.015827+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "fire", "timestamp": "2024-02-05T17:49:20.254016+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:19.509099+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:19.724855+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:18.736495+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:20.539788+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:20.826809+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:48:18.937191+00:00", "objects": ["alert_category", "traffic_ease_vehicle", "landslide", "inside_tunnel", "fire", "brt_lane", "road_blockade_reason", "image_condition", "building_collapse", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-05T17:49:08.178923+00:00", "label": "normal", "label_explanation": "There are no minor or major issues. The image shows a clear road with no blockades or disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:08.797954+00:00", "label": "difficult", "label_explanation": "There are significant, larger puddles on the road. The water coverage is extensive and high, causing notable hindrance to vehicles."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:09.070709+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:03.393629+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:49:08.579549+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:04.094672+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:07.884973+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:07.200968+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:08.384805+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:09.283660+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are trees and buildings in the background. The road is clear with no blockades or disruptions. There is a bus driving on the road."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:07.479512+00:00", "label": "true", "label_explanation": "There are significant, larger puddles on the road. The water coverage is extensive and high, causing notable hindrance to vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:07.680069+00:00", "label": "free", "label_explanation": "There is no blockade. The road is free."}]}, {"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-05T17:06:58.396903+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:07:52.825613+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T17:07:56.407378+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:07:58.188847+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet, with no significant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:07:53.496415+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:07:57.082905+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:07:58.672478+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are no cars or people on the road. The road is lined with trees and buildings. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:07:57.579943+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:07:56.668009+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear, dry, or slightly wet, with no significant puddles."}, {"object": "fire", "timestamp": "2024-02-05T17:07:57.904048+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:07:57.369193+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:07:56.889626+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:07:58.403030+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-05T17:48:28.638165+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "building_collapse", "image_description", "inside_tunnel", "road_blockade", "fire", "landslide", "road_blockade_reason", "alert_category", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T17:49:19.875420+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:21.571065+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:20.084135+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:21.056594+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:21.981221+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are a few cars parked on the side of the road and some people walking around. The street is lined with trees and there are buildings in the background. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:16.273491+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:20.352522+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:49:21.274928+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:21.780981+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:20.565041+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:20.782542+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:16.977403+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-05T17:48:26.555726+00:00", "objects": ["road_blockade_reason", "water_in_road", "alert_category", "traffic_ease_vehicle", "image_description", "building_collapse", "road_blockade", "inside_tunnel", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:46:20.780996+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:46:20.306465+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:46:21.000454+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:46:21.891212+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no puddles or other obstacles that could impede traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:22.410286+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a yellow car driving in the left lane and a black car driving in the right lane. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:46:21.430894+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:46:20.561092+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:46:16.395130+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T17:46:20.058881+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:46:17.179113+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T17:46:22.162091+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:46:21.690202+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-05T17:48:39.145202+00:00", "objects": ["image_description", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "water_in_road", "fire", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:46:28.271046+00:00", "label": "null", "label_explanation": "The image shows a busy street scene in Rio de Janeiro. There are cars, motorcycles, and people crossing the street. The buildings are tall and colorful. The sky is blue and there are some clouds. The image is clear and bright."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:24.012079+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:22.809964+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:20.539074+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:22.012625+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:21.314944+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:21.033505+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:49:20.317980+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:20.026746+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:23.296046+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:25.287745+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:24.434858+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:47:57.245142+00:00", "objects": ["image_description", "road_blockade_reason", "image_condition", "alert_category", "building_collapse", "water_in_road", "brt_lane", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:48:58.686067+00:00", "label": "null", "label_explanation": "A bus drives down a busy city street with trees on either side and buildings in the background. There are cars parked on the side of the road and people walking on the sidewalk. The weather is clear and sunny."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:57.188109+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:56.466531+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:57.468472+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:57.683857+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:56.693778+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:53.900783+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a bus currently using it."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:56.981228+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:58.191365+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:53.460137+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:48:57.970049+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:58.472781+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:47:58.456687+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T17:48:39.945975+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:41.732906+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:41.959142+00:00", "label": "null", "label_explanation": "A photo of a road with a fallen tree blocking the road. There is a gas station on the right side of the road and a cyclist on the left side of the road. The road is partially blocked by the fallen tree."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:40.643697+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:36.531987+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:48:41.342947+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:40.429063+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:41.057521+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:37.158135+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:40.158342+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:40.848859+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:41.536005+00:00", "label": "impossible", "label_explanation": "The road is completely submerged with high water level, making it impassable for vehicles."}]}, {"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-05T17:48:19.768185+00:00", "objects": ["inside_tunnel", "building_collapse", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "water_in_road", "fire", "alert_category", "traffic_ease_vehicle", "brt_lane", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:09.805490+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:14.522955+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:15.308037+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:13.335233+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:13.824306+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:14.045305+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:13.600367+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T17:49:14.796940+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:14.302558+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a normal scene with vehicles and pedestrians."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:15.007816+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:10.491068+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:15.521648+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The buildings in the background are tall and brightly colored. The sky is clear and sunny."}]}, {"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-05T17:48:17.824043+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:49:00.723894+00:00", "label": "null", "label_explanation": "The image shows a clear road with no signs of accidents, flooding, or other disruptions. There are no vehicles or pedestrians visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:54.724461+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or characteristics of a tunnel."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:59.252629+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:55.516094+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:58.738934+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-05T17:49:00.018540+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:59.036479+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:58.507740+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:00.241995+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:00.527272+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:59.527003+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no signs of accidents, flooding, or other disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:59.757846+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}]}, {"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-05T17:44:55.770150+00:00", "objects": ["road_blockade_reason", "brt_lane", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "fire", "building_collapse", "image_condition", "image_description", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:45:57.292857+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:45:53.865090+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:45:56.872310+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:45:53.161337+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:45:57.078278+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:45:57.580701+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-05T17:45:57.982401+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:45:57.783702+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:45:56.662071+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:40:10.461413+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian crossing. There is a white car driving on the right side of the road. Trees can be seen on both sides of the road. There are buildings and other structures in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:45:58.267612+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-05T17:45:58.476659+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:47:51.178925+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "image_description", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:42.466113+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:40.538513+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "fire", "timestamp": "2024-02-05T17:48:42.047304+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:41.259280+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:42.970632+00:00", "label": "null", "label_explanation": "A wide road with a gas station on the right side. There is a white car driving on the left side of the road. The road is partially blocked by a fallen tree."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:40.753772+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:37.568760+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:41.039531+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:41.758416+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:36.872216+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:41.537459+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:42.665414+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:48:16.941992+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "image_description", "traffic_ease_vehicle", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:13.855830+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:15.168470+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:13.662101+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:15.352530+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. There are no signs of road blockades or other issues that would interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:14.858371+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:13.163207+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T17:49:14.644361+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:14.146096+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:14.354239+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:13.447321+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:10.072645+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:09.344277+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T17:48:18.352149+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "alert_category", "traffic_ease_vehicle", "building_collapse", "landslide", "fire", "road_blockade", "water_in_road", "image_condition", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T17:49:15.827881+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or disruptions. There are a few parked cars on the side of the road and a bus stop with a sign that reads 'Chegou Beats' in the background. There are also several trees and bicycles parked on the side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:09.434838+00:00", "label": "false", "label_explanation": "There are no enclosed structures or tunnel-like characteristics in the image."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:10.248824+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:14.546123+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:15.345643+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry with minimal water accumulation. There are small, insignificant puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:14.827958+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:15.551225+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:49:15.039197+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:14.025564+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:13.752778+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry with minimal water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:13.538849+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:14.256878+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:47:50.174835+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description", "road_blockade", "building_collapse", "fire", "alert_category", "brt_lane", "image_condition", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:42.678940+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:43.662627+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:41.975446+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:43.878859+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:44.092077+00:00", "label": "null", "label_explanation": "The image shows a tree-lined street with a few cars parked on the side. There are also some people walking on the street. The buildings are tall and there are a lot of trees. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:42.213121+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:43.196623+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T17:48:43.404526+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:42.886900+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:38.688529+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:41.691175+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:37.998961+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-05T17:48:22.650363+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "inside_tunnel", "image_condition", "image_description", "building_collapse", "brt_lane", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "fire"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:49:14.934909+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:15.425145+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:14.721597+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:10.702935+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:14.434317+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:16.748082+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking the road. A car is stopped behind the tree. There are buildings and trees on either side of the road. The sky is clear."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:15.721508+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:11.426493+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:16.212768+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:15.219819+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:16.522840+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:49:15.955196+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-05T17:48:08.291654+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "building_collapse", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-05T17:49:13.150822+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "fire", "timestamp": "2024-02-05T17:49:12.641275+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:11.061719+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:12.154343+00:00", "label": "major", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no blockades or disruptions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:12.434311+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:11.729574+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:12.930196+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:11.495231+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:13.417340+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a fallen tree partially blocking the right lane. There is a bus rapid transit (BRT) lane on the left side of the road. The road is wet from recent rain, but there are no significant puddles. The surrounding buildings are intact with no signs of damage. The image is clear with no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:07.129992+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:11.948878+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking part of the road. The road is still navigable, but with difficulty."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:07.935148+00:00", "label": "false", "label_explanation": "The right side of the road is not a designated bus rapid transit (BRT) lane."}]}, {"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-05T17:48:30.950136+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "inside_tunnel", "water_in_road", "building_collapse", "fire", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:20.385888+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:16.192320+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:20.883919+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a park to the right. There are trees and buildings on either side of the road. The road is clear with no visible obstructions. The image is clear and has good visibility."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:15.509054+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:19.069692+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:19.981739+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T17:49:20.184178+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:20.678838+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:18.859544+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:19.287697+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:19.477834+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:19.772399+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-05T17:48:28.497427+00:00", "objects": ["road_blockade", "landslide", "image_condition", "traffic_ease_vehicle", "water_in_road", "fire", "brt_lane", "image_description", "building_collapse", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:49:15.247881+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:16.747255+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:14.743895+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:16.437641+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:15.027850+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-05T17:49:16.241641+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:11.491087+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:16.968247+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are no traffic lights or signs visible. The road is clear with no visible obstructions or debris. There are a few trees on the side of the road and some buildings in the background. The weather is clear and sunny."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:15.957177+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:15.731008+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:10.638591+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:15.451347+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-05T17:47:53.993087+00:00", "objects": ["image_condition", "image_description", "road_blockade", "water_in_road", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "fire", "building_collapse", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T17:48:40.803617+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:42.924033+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are trees on either side of the road and a clear blue sky. The road is dry and there are no signs of water or debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:41.219267+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:41.018029+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:42.412645+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:41.729331+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:37.236959+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:42.625158+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:48:42.134021+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:48:41.942510+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:41.510460+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:37.941085+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations for bus rapid transit use."}]}, {"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-05T17:47:50.148139+00:00", "objects": ["building_collapse", "image_condition", "fire", "brt_lane", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-05T17:48:44.526930+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:48:43.402053+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T17:48:44.840645+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:48:40.493628+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:48:43.826070+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:48:43.615062+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-05T17:48:45.603140+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a yellow car driving in the right lane. There is a bus lane on the left side of the road. The road is partially blocked by a fallen tree. There are trees and buildings on either side of the road. The weather is clear and sunny."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:48:45.087702+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:48:39.726877+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T17:48:44.315715+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-05T17:48:45.323512+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:48:44.092480+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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-05T17:48:33.994137+00:00", "objects": ["inside_tunnel", "building_collapse", "image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "landslide", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:13.409992+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:17.912612+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:16.705384+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:14.023588+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:17.432041+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:17.230879+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:17.699259+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:18.409175+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:18.931601+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. The road is partially blocked and there is a car approaching the fallen tree. There are trees on both sides of the road and buildings in the background. The sky is clear and blue."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:18.617732+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T17:49:18.135131+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:16.945512+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-05T17:48:13.901240+00:00", "objects": ["road_blockade", "alert_category", "inside_tunnel", "fire", "brt_lane", "landslide", "water_in_road", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:49:12.725710+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:13.189084+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:08.562373+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T17:49:13.679050+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:09.264379+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:14.158538+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:12.486331+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:12.971297+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:14.394035+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There are trees and buildings in the background. The road is clear with no blockades or significant puddles. There are a few cars and motorbikes on the road. The image is clear with no interference."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:13.887062+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:12.198406+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:13.405066+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T17:48:34.796126+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_description", "road_blockade_reason", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "alert_category", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:46:23.611806+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:46:22.422286+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a fallen tree."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:24.024429+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a fallen tree blocking part of the road. There are cars, motorcycles, and people on the street. The weather is clear and sunny."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:46:22.712992+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-05T17:46:23.812042+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:46:21.941324+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T17:46:23.324915+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:46:23.130427+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:46:22.206040+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-05T17:46:22.905127+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause minor traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:46:18.394399+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:46:19.035643+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}]}, {"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-05T17:48:21.833907+00:00", "objects": ["alert_category", "image_description", "brt_lane", "fire", "water_in_road", "inside_tunnel", "landslide", "image_condition", "traffic_ease_vehicle", "building_collapse", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-05T17:49:10.022124+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:11.423569+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars, buses, and people on the street. The street is lined with trees and buildings. The weather is clear and sunny."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:05.536788+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-05T17:49:10.537321+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:09.226718+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:04.833278+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:11.044143+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:08.933612+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:10.841041+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:10.318119+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:09.540688+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:09.738469+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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-05T17:48:34.801961+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "road_blockade_reason", "image_description", "fire", "water_in_road", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T17:49:05.354157+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:03.933107+00:00", "label": "true", "label_explanation": "The image shows the inside of a tunnel. The road is enclosed by a concrete structure with artificial lighting. The walls of the tunnel are visible on both sides of the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:05.603531+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:06.406723+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:04.129843+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:05.897513+00:00", "label": "easy", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:06.130333+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:04.931609+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:06.651188+00:00", "label": "null", "label_explanation": "The image shows a road scene inside a tunnel. There are cars and a truck on the road, and buildings and trees on either side. The road is partially wet from rain, but there is no flooding or other major issues."}, {"object": "fire", "timestamp": "2024-02-05T17:49:04.411700+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:05.123836+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:04.625135+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-05T17:48:16.426404+00:00", "objects": ["alert_category", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "fire", "image_condition", "road_blockade_reason", "landslide"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-05T17:49:06.590689+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:02.190526+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:06.153073+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:07.292483+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water accumulation."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:07.785364+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a bus driving on the left side of the road. There are cars parked on the side of the road. There are buildings on both sides of the road. The sky is clear and sunny."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:05.958280+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:02.946868+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:06.857545+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T17:49:07.057381+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:05.669461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:06.360115+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:07.571072+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-05T17:48:23.503375+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "image_condition", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T17:49:05.001175+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:05.492509+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:04.777301+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:05.288905+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:04.586050+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:01.709520+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:05.694499+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "fire", "timestamp": "2024-02-05T17:49:05.973083+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:06.215962+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:06.486293+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:01.001945+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:06.788165+00:00", "label": "null", "label_explanation": "The image shows a wide road with multiple lanes of traffic. There are trees and buildings on either side of the road. The sky is clear and sunny. There is a fallen tree blocking part of the road, but vehicles can still pass."}]}, {"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-05T17:48:33.030293+00:00", "objects": ["brt_lane", "image_condition", "traffic_ease_vehicle", "alert_category", "image_description", "inside_tunnel", "water_in_road", "fire", "landslide", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T17:49:16.662225+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:19.417013+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. It is not blurred and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:20.926306+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:20.309048+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:21.424694+00:00", "label": "null", "label_explanation": "The image shows a wide road with a fallen tree blocking part of the road. There is a white car stopped behind the fallen tree. There are trees and buildings on either side of the road. The sky is clear and sunny."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:16.026973+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:19.631120+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-05T17:49:20.718957+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:21.200148+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:20.035620+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:20.521299+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:19.834615+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-05T17:48:36.772465+00:00", "objects": ["inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "image_description", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:26.029242+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:46:22.440553+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:25.733159+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-05T17:49:24.002672+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:24.550512+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-05T17:46:26.421285+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:24.308332+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-05T17:43:46.870295+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The buildings are tall and there are trees on either side of the road. The sky is clear and it is a sunny day."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:46:25.826256+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:23.727489+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:46:27.124727+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:46:26.637993+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-05T17:48:20.619176+00:00", "objects": ["image_condition", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T17:49:22.720057+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and clear, with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:23.207123+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:23.905865+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are all intact and there are no signs of any damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:20.117165+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no signs or markings indicating that the lane is reserved for buses."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:24.344214+00:00", "label": "easy", "label_explanation": "There is a small puddle of water on the road. The puddle is not large enough to cause any traffic problems."}, {"object": "image_description", "timestamp": "2024-02-05T17:46:25.165053+00:00", "label": "null", "label_explanation": "The image shows a busy road with a fallen tree blocking part of the road. There are cars and buses on the road, and some trees on the side of the road. The sky is clear and the sun is shining."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:19.424917+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The image shows a wide, open road with trees and buildings on either side. There are no signs of a tunnel, such as enclosed structures or artificial lighting."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:25.113769+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:22.937881+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road. The puddle is not large enough to cause any traffic problems."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:23.632270+00:00", "label": "normal", "label_explanation": "There are no minor or major issues. The road is clear and there are no signs of any problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:23.423267+00:00", "label": "water_puddle", "label_explanation": "There is a small puddle of water on the road. The puddle is not large enough to cause any traffic problems."}, {"object": "fire", "timestamp": "2024-02-05T17:49:24.138145+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-05T17:48:34.574009+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "alert_category", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T17:49:22.532188+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "landslide", "timestamp": "2024-02-05T17:49:22.840599+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-05T17:49:22.029473+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T17:49:17.908911+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T17:49:21.830978+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-05T17:49:20.849300+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T17:49:21.114670+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T17:49:23.031428+00:00", "label": "null", "label_explanation": "The image shows a wide road with a brick sidewalk lined with trees on one side and a row of parked cars on the other. There is a motorcycle driving in the right lane, and a white van is driving in the left lane. The road is dry and there are no visible obstructions."}, {"object": "fire", "timestamp": "2024-02-05T17:49:22.242938+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T17:49:21.322873+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T17:49:17.215529+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T17:49:21.549715+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}] \ No newline at end of file +[{"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": 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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:22.575475+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "brt_lane", "image_description", "image_condition", "landslide", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:01:25.425945+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:24.722288+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:25.846779+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-06T00:01:25.638382+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:24.546098+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:25.202390+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:19.066518+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:26.324217+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a car driving on the road, and a pedestrian is crossing the road. There are trees and buildings on either side of the road. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:24.223616+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:26.123668+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:24.898923+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:18.338421+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:26.125764+00:00", "objects": ["image_condition", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "landslide", "road_blockade_reason", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:01:26.626207+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:26.883507+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:22.509780+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:27.095251+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:27.500970+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:23.332154+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:27.767845+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:27.972335+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:28.200953+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but most vehicles can still pass with caution."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:28.502731+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There is soil displacement, rocks, and debris on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:27.302640+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road, but most vehicles can still pass with caution."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:28.684742+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 road. A person is walking on the left side of the road. There are cars parked on both sides of the road. The road is lit by streetlights."}]}, {"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-06T00:03:14.402618+00:00", "objects": ["brt_lane", "image_condition", "water_in_road", "road_blockade", "road_blockade_reason", "inside_tunnel", "image_description", "traffic_ease_vehicle", "alert_category", "landslide", "building_collapse", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:25.107824+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.913205+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.194381+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.393744+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.627600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.935538+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.009120+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection at night. There are several cars parked on the side of the road and a few people walking around. The road is well-lit and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.598452+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.884941+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.797599+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.090685+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.313170+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:28.110564+00:00", "objects": ["brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_condition", "building_collapse", "landslide", "water_in_road", "road_blockade_reason", "fire", "image_description", "alert_category"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:21.448110+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:18.936939+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:25.636406+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:26.953129+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.050103+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:26.388675+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:27.229237+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:25.351757+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:25.873941+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:26.702014+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:30.166726+00:00", "label": "null", "label_explanation": "A night-time 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 building on the left side of the road, and a wall on the right side. There are two motorbikes on the street, both traveling in the same direction. There are no people visible in the image."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:26.134777+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-06T00:03:09.572502+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "alert_category", "fire", "image_condition", "road_blockade_reason", "building_collapse", "image_description", "water_in_road", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:03:47.426791+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:03:48.084639+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:03:51.360734+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:03:51.852771+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:03:52.287866+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:03:50.878946+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:03:51.573437+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:03:52.073621+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:03:53.379547+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There are cars parked on the side of the road. There are no people visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:03:51.158148+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:03:53.162313+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:03:52.967094+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-06T00:03:19.812117+00:00", "objects": ["brt_lane", "inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "water_in_road", "fire", "traffic_ease_vehicle", "building_collapse", "alert_category", "road_blockade", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:01.890033+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:00:59.808936+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal fence on the left side of the image."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:00.040449+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:00.664767+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:00.915994+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:01.656414+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is murky and covers a large portion of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:01:00.309490+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:02.505355+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:02.721505+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:02.999447+00:00", "label": "minor", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass. This could cause traffic delays and inconvenience for motorists."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:02.293265+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:05.903560+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal fence on the left side of the image. The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:04.914569+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:01:29.500627+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are no signs of landslides, fires, or building collapses. The road is dry, with no significant puddles or water accumulation. The image quality is good, with no blurring or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:27.582736+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.262589+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.704781+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit (BRT) lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.294575+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.694368+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.387543+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:28.796583+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:28.498923+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.068380+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.003527+00:00", "label": "easy", "label_explanation": "The road is clear, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:27.805925+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:11.613623+00:00", "objects": ["road_blockade", "building_collapse", "landslide", "brt_lane", "inside_tunnel", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade_reason", "image_description", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:01:22.879844+00:00", "label": "free", "label_explanation": "There are no features that blockade the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:23.645537+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:24.463916+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:17.463555+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:16.535448+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:01:23.968216+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:24.216631+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:23.370535+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:23.127018+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:24.736145+00:00", "label": "null", "label_explanation": "The image is a night scene of a busy street in Rio de Janeiro. There are cars, buses, and people crossing the street. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:22.364383+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:22.632793+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}]}, {"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-06T00:03:20.776988+00:00", "objects": ["image_description", "image_condition", "inside_tunnel", "building_collapse", "landslide", "fire", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane", "road_blockade_reason", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:01:30.154838+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a blue and white striped wall on the left and a gray wall on the right. There is a street light on the right side of the intersection. There is a motorcycle parked on the side of the road on the right. There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.867776+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.374827+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.155919+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.891065+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.367960+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.655583+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.163096+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.403647+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.487541+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.676396+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.950959+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:03:23.457272+00:00", "objects": ["brt_lane", "image_condition", "image_description", "inside_tunnel", "road_blockade_reason", "fire", "alert_category", "landslide", "water_in_road", "road_blockade", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:00.370682+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a bus currently occupying the lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:03.174712+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:14.504032+00:00", "label": "null", "label_explanation": "A night-time view of a busy street in Rio de Janeiro. There is a bus driving in the foreground, and cars parked on either side of the street. There are also a few trees and buildings in the background."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:00:59.814422+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:14.034455+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:00:53.971653+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:01.577428+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:00:53.700333+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:03.380773+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:05.907578+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:14.257510+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:02.292959+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:25.367128+00:00", "objects": ["brt_lane", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "inside_tunnel", "landslide", "image_condition", "alert_category", "building_collapse", "image_description", "fire", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:00.896777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.058306+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:26.247225+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:26.783679+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:00:59.674504+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.656092+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.964215+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:27.245911+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:27.855395+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.225152+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars parked on the side of the road and a motorcycle driving through the intersection. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-06T00:01:28.470651+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:26.543570+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:08.909485+00:00", "objects": ["inside_tunnel", "brt_lane", "building_collapse", "fire", "image_condition", "alert_category", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.933518+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.951688+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.395545+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.609650+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:28.199038+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:29.113850+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.630064+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.889581+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible puddles or obstructions. Vehicles can pass through the area without difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.919230+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.419142+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.402760+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There are no signs of landslides, fires, or road blockades. The image quality is good, with no blurring or distortions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:30.118042+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-06T00:03:18.080014+00:00", "objects": ["inside_tunnel", "brt_lane", "image_condition", "fire", "road_blockade_reason", "alert_category", "road_blockade", "building_collapse", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:24.221977+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:25.405452+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations for bus rapid transit use."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:28.210426+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.721305+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.992320+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:29.192421+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.719946+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.513640+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.933546+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.494885+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:30.191148+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.401295+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with a green traffic light, a pedestrian crossing the street, and a few trees on the sidewalk. The street is lit by streetlights."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:00:53.613867+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "traffic_ease_vehicle", "image_description", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:46.830259+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:48.042323+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:46.619820+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:47.814119+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:48.328319+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are cars and motorbikes on the road, and people are walking on the sidewalks. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:46.120362+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:47.535309+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:47.041422+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:47.315754+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:46.356491+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:43.123777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:42.420543+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:03:52.109268+00:00", "objects": ["landslide", "image_condition", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:31.994350+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:30.183800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:32.203154+00:00", "label": "null", "label_explanation": "A car accident on a road at night. A police car is on the scene with its lights flashing. A person is walking on the sidewalk next to the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:30.813636+00:00", "label": "car_accident", "label_explanation": "There is a car accident on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:26.793098+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:01:31.501993+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:30.612409+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by the car accident, making it impossible for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:31.307049+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:27.490355+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:30.421906+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:31.022977+00:00", "label": "major", "label_explanation": "There is a car accident on the road. This is a major issue that affects city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:31.723157+00:00", "label": "impossible", "label_explanation": "The road is completely blocked by the car accident, making it impossible for vehicles to pass."}]}, {"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-06T00:03:52.866377+00:00", "objects": ["image_description", "landslide", "alert_category", "building_collapse", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:01:31.108092+00:00", "label": "null", "label_explanation": "The image shows a clear road with a fallen tree blocking part of the road. There is a yellow car stopped on the road near the fallen tree. There are no signs of flooding or other hazards. The image is clear and easy to see."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:30.845162+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:29.941669+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:30.136919+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:25.188890+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:26.231631+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:29.237572+00:00", "label": "false", "label_explanation": "There are no significant, larger puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:01:30.424566+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:29.519727+00:00", "label": "free", "label_explanation": "The road is free and clear."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:29.038448+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:30.634653+00:00", "label": "moderate", "label_explanation": "There are larger puddles on the road, but vehicles can still pass."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:29.731139+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}]}, {"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-06T00:00:50.877753+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "building_collapse", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:32.353692+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:01:31.867213+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:31.382594+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:30.480295+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:31.655850+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:30.958378+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:30.689424+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:32.087485+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:32.594961+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy urban street with cars, buses, and people crossing the road. There are also trees and buildings on either side of the street. The street is well-lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:27.655317+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:31.169795+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:28.099299+00:00", "label": "true", "label_explanation": "There is a dedicated lane for BRT (Bus Rapid Transit) with a yellow sign indicating 'BRT'."}]}, {"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-06T00:03:48.084420+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:27.901961+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:31.399172+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:33.013882+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:28.539848+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:32.109171+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:33.432546+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:32.518320+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:31.603222+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:32.726070+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:32.305437+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:31.823594+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:33.209403+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:47.344578+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:01:34.355945+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there is no debris on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:33.104910+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:35.279447+00:00", "label": "null", "label_explanation": "The image shows a dark enclosed space with no visible light sources. The walls and ceiling of the tunnel are made of concrete and the road surface is made of asphalt. There is a car driving through the tunnel."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:33.366166+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:01:34.576600+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:33.588725+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:34.777381+00:00", "label": "easy", "label_explanation": "The road is completely dry with no puddles or water."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:29.668640+00:00", "label": "true", "label_explanation": "The image shows a dark enclosed space with no visible light sources. The walls and ceiling of the tunnel are made of concrete and the road surface is made of asphalt. There is a car driving through the tunnel."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:34.086640+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:35.082277+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no debris on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:33.865562+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:31.167410+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}]}, {"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-06T00:03:50.697480+00:00", "objects": ["inside_tunnel", "image_condition", "alert_category", "building_collapse", "fire", "image_description", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:42.932478+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:46.618682+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:47.643473+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:47.909156+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:48.126873+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:48.864928+00:00", "label": "null", "label_explanation": "This is a night-time image of a street corner in Rio de Janeiro. There is a white car driving in the foreground, and a few other cars parked on the side of the road. There are also some people walking on the sidewalk. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:46.921248+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:47.323009+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:48.403038+00:00", "label": "easy", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:43.635920+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:47.119798+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:48.613590+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:40.726859+00:00", "objects": ["water_in_road", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_condition", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:27.431301+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:28.635277+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.217855+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.006505+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.121123+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:28.326869+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.128269+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.232911+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:27.705976+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:28.839318+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:27.916096+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:29.328619+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are a few cars parked on the side of the road and some people walking around. The street is lit by streetlights."}]}, {"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-06T00:03:46.587750+00:00", "objects": ["image_condition", "road_blockade_reason", "inside_tunnel", "brt_lane", "landslide", "fire", "building_collapse", "water_in_road", "road_blockade", "image_description", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T23:58:59.112766+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:58:59.784423+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:55.579446+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:58:56.277979+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:00.982186+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T23:59:00.512429+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:00.294616+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:58:59.300290+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:58:59.521657+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:54:33.475350+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars on the road and people crossing the street. The street is well-lit, and there are no visible hazards."}, {"object": "alert_category", "timestamp": "2024-02-05T23:58:59.993935+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:00.715297+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}]}, {"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-06T00:00:52.771340+00:00", "objects": ["landslide", "image_description", "inside_tunnel", "road_blockade_reason", "fire", "water_in_road", "road_blockade", "building_collapse", "traffic_ease_vehicle", "brt_lane", "image_condition", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:45.216654+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:46.023958+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars and buses on the street, and people are walking on the sidewalk. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:39.531891+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:43.910828+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:01:44.705869+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:43.489742+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:43.720249+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but it is still possible for vehicles to pass with caution."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:44.413142+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:44.942495+00:00", "label": "difficult", "label_explanation": "There is a fallen tree blocking part of the road, but it is still possible for vehicles to pass with caution."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:40.206308+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:43.235428+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:44.204167+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which is causing traffic congestion. This is a minor issue that should be reported."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:13.468589+00:00", "objects": ["road_blockade", "water_in_road", "inside_tunnel", "alert_category", "image_condition", "road_blockade_reason", "fire", "traffic_ease_vehicle", "building_collapse", "brt_lane", "landslide", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:01:18.035823+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:09.873149+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:00.366823+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:02.308979+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:09.598254+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:06.769421+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:00:59.307451+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:09.249727+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:02.786454+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:01.585826+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:00:56.573595+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T23:55:28.856796+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tall building on the left side of the image and a row of parked cars on the right side. The street is lit by streetlights."}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:28.811744+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "brt_lane", "image_description", "road_blockade_reason", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.480029+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.510642+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:30.000628+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:30.274851+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.767485+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.708639+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:29.260926+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.980216+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.936264+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.558611+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road with a BRT lane on the left side. There is a wall with graffiti on the right side of the road. There are no cars on the road. The image is clear and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:29.000180+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:28.203007+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:16.912171+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_description", "road_blockade_reason", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "alert_category", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:02.831141+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet, with small, insignificant puddles. Traffic flow is not affected."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:01.614835+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:03.370184+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or issues. The road is dry, and there are no signs of water accumulation. There are no people or vehicles visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:01.827760+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:03.039697+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:01.123830+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:02:02.609178+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.337770+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.343057+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:02.128946+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.328492+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structure, artificial lighting, or tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:58.024901+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}]}, {"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-06T00:01:17.224262+00:00", "objects": ["inside_tunnel", "building_collapse", "image_condition", "road_blockade_reason", "brt_lane", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "landslide", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:55.996633+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:00.577330+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:59.462151+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:00.160737+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:56.698910+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:59.878053+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:00.364466+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:00.997247+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water accumulation."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:01.494456+00:00", "label": "null", "label_explanation": "A night-time image of a bus driving on a busy road. There are trees on either side of the road and buildings in the background. The road is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:01.274966+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:02:00.800125+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:59.675866+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear and dry."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:40.852911+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:01:43.601629+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:39.785929+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:44.304411+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:44.785191+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:45.266835+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The surrounding buildings are intact and there are no signs of collapse or structural damage. There is no evidence of fire, landslide, or any other issues that would interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:01:44.568918+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:40.489514+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:43.109577+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:43.366153+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:44.077187+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:43.807091+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:44.995263+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:37.632306+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:01:44.821839+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:41.109826+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:45.036575+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:46.026198+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.739934+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.820387+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.229930+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.548087+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.804378+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:47.104072+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars parked on the side. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.523204+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.336612+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:35.302765+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "alert_category", "building_collapse", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:01:47.944434+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:48.526172+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:47.241337+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:46.519366+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:48.232610+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:47.029140+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:43.646221+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:47.517506+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:47.748470+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:48.757759+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are two cars on the road, one black and one silver. The black car is in the foreground, and the silver car is in the background. The road is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:46.741574+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:42.922990+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}]}, {"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-06T00:03:38.680221+00:00", "objects": ["water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "image_description", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:43.258443+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-06T00:01:44.382818+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:43.465984+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:44.635134+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:43.694154+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:57.693541+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a red traffic light and a pedestrian crossing. There are cars parked on the side of the road and a few people walking around."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:40.174010+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:44.152153+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:42.981795+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:39.521639+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:44.873916+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:43.944683+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:03:38.097540+00:00", "objects": ["traffic_ease_vehicle", "fire", "image_condition", "road_blockade_reason", "image_description", "water_in_road", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:43.760334+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water accumulation. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-06T00:01:43.485408+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:42.060025+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:42.765473+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:44.273833+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance. There is a bus driving in the right lane and several cars driving in the left lane. The road is dry and clear, with no signs of water accumulation. The surrounding buildings are intact, with no signs of damage or structural issues. There are no visible signs of a fire, landslide, or road blockade. The image is clear and has good visibility, with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:42.281924+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-06T00:01:42.560466+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:39.192832+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:43.273924+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:38.527057+00:00", "label": "false", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:43.008824+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and free of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:43.996023+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:42.908006+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T23:16:25.956987+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:16:20.792780+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:16:25.679449+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T23:16:25.457222+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:16:21.554867+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:16:25.178284+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:16:24.959352+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:16:24.743113+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-05T23:16:26.664627+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left lane, behind the fallen tree. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-05T23:16:24.474302+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:16:26.167408+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "landslide", "timestamp": "2024-02-05T23:16:26.459043+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:19.843014+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:01:20.082538+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:19.824458+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.326805+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:23.690047+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.527949+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:25.974331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:35.140144+00:00", "label": "null", "label_explanation": "A night view of a busy road with cars, a bus, and a fallen tree. There are street lights and buildings on either side of the road. The sky is dark and cloudy."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:25.332052+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:25.761340+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:23.138781+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.069126+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:25.090139+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:14.643768+00:00", "objects": ["road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "alert_category", "image_condition", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:24.234505+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:16.051353+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:26.611386+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water or other obstructions that might hinder vehicle movement."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:24.833602+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:19.034751+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:26.050316+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:21.195594+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:23.217326+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:27.806553+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There are no signs of water, landslides, fires, or building collapses. The image is clear and there are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:27.236065+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:25.463867+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:15.337695+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:11.665636+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:02:02.622575+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. The road surface is dry, and there are no signs of water accumulation. The surrounding buildings are intact, and there are no signs of collapse or structural damage. There are no visible flames, smoke, or signs of burn damage. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:56.567226+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:01.134086+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:57.274466+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:00.559347+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-06T00:02:01.852518+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:00.875388+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:00.344414+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:02.068843+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no water accumulation or puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:02.350767+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:01.361652+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:01.632772+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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-06T00:01:08.503485+00:00", "objects": ["alert_category", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "image_condition", "fire", "road_blockade_reason", "landslide"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:01:21.994127+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:06.496108+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:25.054824+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:23.104302+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:23.677498+00:00", "label": "null", "label_explanation": "A night-time image of a street intersection. There is a bus driving through the intersection and other vehicles parked on the side of the road. The street is wet from rain and there are some puddles on the ground."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:05.925463+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:25.751150+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:22.383510+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:03.454664+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:22.757902+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:11.881729+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:23.369459+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:19.511319+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T23:59:03.860980+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:03.137079+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:58:59.555942+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:02.566055+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:56:19.694754+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are a few cars and motorcycles on the road, and a bus is stopped at the bus stop. The road is lit by streetlights, and there are trees and buildings in the background."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:02.361964+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:04.340047+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:03.366887+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:58.859502+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:03.651042+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:02.888003+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:04.122758+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}]}, {"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-06T00:01:09.008840+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T23:53:16.332626+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:53:11.929015+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:15.614110+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:53:15.355960+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:16.104061+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T23:53:14.846160+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:15.118117+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:15.822886+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:11.292817+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:16.530915+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:17.022621+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There are no traffic lights visible. The road is clear with no blockades or significant puddles. There are a few small trees on the side of the road. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:16.798441+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:11.835212+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T23:56:00.529484+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:56:02.532707+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:56:00.742741+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:56:01.021614+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:55:57.641256+00:00", "label": "true", "label_explanation": "There is a dedicated lane for BRT buses, marked with a sign on the road."}, {"object": "fire", "timestamp": "2024-02-05T23:56:02.036964+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T23:56:02.746620+00:00", "label": "null", "label_explanation": "The image shows a night scene of a six-lane road with a BRT lane. There are trees on both sides of the road and buildings in the background. The road is lit by streetlights. There are a few cars and buses on the road. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:56:01.733727+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:56:02.275128+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:55:56.845322+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T23:56:01.526500+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:56:01.237501+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:20.717963+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:02:05.490019+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:07.210609+00:00", "label": "easy", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:01.877966+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:02:06.971539+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:05.766599+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:07.683902+00:00", "label": "null", "label_explanation": "The image shows 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 some trees and buildings in the background."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:06.474435+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:05.985140+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:06.684599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:02.578202+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:07.477187+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:06.270722+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:19.246526+00:00", "objects": ["image_condition", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T23:53:18.022365+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:53:18.567200+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:19.341659+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:53:14.826314+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:19.927637+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:20.433333+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road intersection. There are no cars on the road and the traffic lights are not visible. The street lights are on and there are trees on either side of the road. There is a building on the left side of the road and a statue on the right side. The road is wet from rain."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:14.021372+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:20.220411+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:18.331631+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:19.132384+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:18.836076+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:53:19.640444+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:01:21.979648+00:00", "objects": ["fire", "image_condition", "brt_lane", "alert_category", "image_description", "building_collapse", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "road_blockade", "landslide", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T23:53:06.207388+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T23:53:04.716680+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:53:01.915658+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:05.716995+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:06.935961+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars and a person crossing the road. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:05.946858+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:06.429990+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:04.925219+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:05.504986+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:53:05.210891+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:06.642131+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:01.201321+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:08.042516+00:00", "objects": ["landslide", "image_description", "traffic_ease_vehicle", "water_in_road", "building_collapse", "fire", "road_blockade", "inside_tunnel", "image_condition", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:03:48.738255+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:26.386707+00:00", "label": "null", "label_explanation": "The image is distorted and it is not possible to see the road clearly. There is a green bar at the bottom of the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:03:53.358580+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:03:53.838952+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:03:54.746954+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:03:55.139875+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:03:54.057816+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:03:49.960117+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:03:53.563103+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "alert_category", "timestamp": "2024-02-06T00:03:54.534517+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:03:50.631846+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:03:54.296468+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:10.061945+00:00", "objects": ["water_in_road", "alert_category", "inside_tunnel", "brt_lane", "image_description", "traffic_ease_vehicle", "road_blockade", "fire", "building_collapse", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:03:52.269330+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:03:54.358837+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:03:52.667265+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:03:53.463869+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:29.134786+00:00", "label": "null", "label_explanation": "A night-time image of a street with a fallen tree. The tree is blocking the entire road, making it impassable for vehicles. There is a car approaching the tree from the left side of the image. The car is stopped, and its headlights are on. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:03:54.644366+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:03:55.157679+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:03:50.866511+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:03:54.881878+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:03:50.551878+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:03:51.145123+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:03:53.669038+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:12.689608+00:00", "objects": ["water_in_road", "alert_category", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "road_blockade_reason", "image_condition", "road_blockade", "fire", "landslide", "image_description", "building_collapse"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:26.177586+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:26.987888+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:27.870536+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.163509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.223330+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:26.704137+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.892206+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:26.462988+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:27.585276+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:28.166369+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:28.396669+00:00", "label": "null", "label_explanation": "The image is of a road scene at night. There are no cars on the road. The road is lit by streetlights. There are trees and buildings on either side of the road. The sky is clear."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:27.265057+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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-06T00:03:04.621095+00:00", "objects": ["alert_category", "building_collapse", "inside_tunnel", "image_description", "road_blockade", "fire", "brt_lane", "water_in_road", "road_blockade_reason", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:01:27.966337+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:28.172349+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.564952+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:01.584095+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are a few cars parked on the side of the road and a bus driving in the middle of the road. There are also some trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:27.461324+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:28.467789+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.395232+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:27.246659+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:27.682748+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:26.994705+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:28.948880+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:28.728630+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:15.174548+00:00", "objects": ["brt_lane", "image_condition", "traffic_ease_vehicle", "alert_category", "image_description", "inside_tunnel", "water_in_road", "fire", "landslide", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T23:59:21.460455+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:20.048972+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:00:59.200523+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water."}, {"object": "alert_category", "timestamp": "2024-02-06T00:00:58.329222+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:00:59.724571+00:00", "label": "null", "label_explanation": "A night-time image of a road with a motorcycle driving in the foreground. Trees line the left side of the road, and buildings can be seen on the right side. The road is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:20.781702+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:20.471719+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-06T00:00:58.907894+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:00:59.469440+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:00:55.187253+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:00:58.590044+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:00:41.645059+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-06T00:01:12.369044+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_description", "image_condition", "road_blockade", "landslide", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:59.631990+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:00.334511+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:04.129940+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:03.666437+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:05.129589+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:02:04.845723+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:04.626218+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:05.622964+00:00", "label": "null", "label_explanation": "The image shows a night scene of a bus driving on a busy road. The bus is in the foreground, with the driver's side facing the camera. The road is wet from rain, and there are some puddles on the road. There are cars and trucks driving in the opposite direction of the bus. The street lights are on, and there are buildings and trees on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:03.441164+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:03.920204+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:05.351072+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:04.409341+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:01:09.382433+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:02:00.784761+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:57.291356+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:00.996894+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:59.197809+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:59.487653+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:00.008255+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:01.308090+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:59.765775+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:00.301746+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, and there are no signs of any problems."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:01.601750+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls on both sides. The road is dry, and there is no traffic. There are no signs of any problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:55.682095+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls on both sides."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:00.529457+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}]}, {"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-06T00:01:17.917587+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "inside_tunnel", "water_in_road", "building_collapse", "fire", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:20.027609+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:15.457263+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:20.521154+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There is a white car driving on the road, and there are trees and buildings on either side of the road. The image is well-lit and the weather is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:14.754364+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:18.527227+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:19.523172+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "fire", "timestamp": "2024-02-05T23:59:19.814286+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:20.236150+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:18.316597+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:18.743842+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:19.018397+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:19.244785+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-06T00:01:12.524198+00:00", "objects": ["landslide", "inside_tunnel", "fire", "image_condition", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "building_collapse", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:58.397746+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:51.341505+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:01:57.828358+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:55.848403+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:52.319171+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:57.106606+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:56.524293+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:58.119416+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:56.810827+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:56.234217+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:57.456353+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:58.716948+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection in Rio de Janeiro. There are cars, trees, and buildings in the image. The road is partially blocked by a fallen tree."}]}, {"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-06T00:01:12.413360+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "building_collapse", "inside_tunnel", "road_blockade", "fire", "landslide", "road_blockade_reason", "alert_category", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T23:59:08.157232+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:09.796456+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:08.369496+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:04.569495+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with no visible obstructions or issues. The road is dry with no signs of water or flooding. There are no vehicles or pedestrians visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:09.276656+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:04.286048+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:08.585085+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:59:09.566947+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:10.060655+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:08.855336+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:09.062711+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:05.074466+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:01:09.860108+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "inside_tunnel", "road_blockade_reason", "road_blockade", "alert_category", "fire"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:02:03.523835+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:01.655860+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:03.334520+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:03.743357+00:00", "label": "null", "label_explanation": "The image shows a night view of a city intersection. There is a white car and a motorcycle on the road. The traffic light is green. There are no people on the street. The buildings are tall and brightly lit."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.918271+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:58.627089+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.846822+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.825646+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:02.355375+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:02.136067+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:02.614212+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:02:03.045490+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:01:15.190169+00:00", "objects": ["traffic_ease_vehicle", "fire", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "landslide", "inside_tunnel", "water_in_road", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:03.334243+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:02:03.051101+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:58.531442+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:03.741394+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with a tree in the center. There are no cars or people visible in the image. The road is lined with trees and buildings. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:01.635696+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:02.350382+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:03.543841+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.836009+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.835031+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.831443+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:02.148572+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:02.544691+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:43.810059+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:48.895794+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:43.535223+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:49.362360+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There are cars, motorcycles, and people crossing the intersection. The street is lit by streetlights. There are buildings and trees on either side of the street."}, {"object": "fire", "timestamp": "2024-02-06T00:01:48.669127+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:44.245458+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:48.451908+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:47.448484+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:48.232196+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:47.680206+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:47.184909+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:49.134628+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:47.960895+00:00", "label": "water_puddle", "label_explanation": "There is a large puddle of water on the road."}]}, {"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-06T00:03:45.583987+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:01:44.304057+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.111461+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:01:45.873534+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:44.883023+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.394950+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.094518+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:44.608123+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.083098+00:00", "label": "difficult", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:46.674820+00:00", "label": "null", "label_explanation": "The image is showing a road with cars driving in both directions. There are street lights on the side of the road and a building with a sign that says 'CAIXA' in the background. The road is wet from the rain and there are some puddles on the road. There is a white car driving in the foreground."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:45.616847+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.385554+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:40.402920+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}]}, {"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-06T00:03:49.365914+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.549762+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.027144+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a yellow car driving through the intersection. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.145204+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.402536+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.816818+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.932570+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.931635+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.917346+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.328291+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.659970+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.127627+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.831526+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:43.033243+00:00", "objects": ["image_description", "building_collapse", "brt_lane", "landslide", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "water_in_road", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:01:43.885272+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of accidents, fires, or landslides. The road is dry and there is no water on the road. The image is clear and there are no issues that would interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:42.963319+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:38.883957+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:43.677866+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:38.247559+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:42.678708+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:01:43.155100+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:42.468713+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:42.059649+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:42.270297+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:41.852595+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:43.372928+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-06T00:03:54.768848+00:00", "objects": ["inside_tunnel", "image_condition", "fire", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "brt_lane", "water_in_road", "alert_category", "building_collapse", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:40.327401+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:44.039832+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:45.542520+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:45.746359+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:44.522565+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:44.748980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.038242+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:44.251231+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.043025+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:45.336944+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.033428+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:46.234155+00:00", "label": "null", "label_explanation": "A night-time image of a wide, straight road with a pedestrian crossing. There is a green area to the left of the road and a building with a white wall to the right. A motorcycle is driving in the right lane, and a car is driving in the left lane in the foreground. There are no other vehicles visible in the image. The road is well-lit, and the weather is clear."}]}, {"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-06T00:00:47.512508+00:00", "objects": ["water_in_road", "road_blockade_reason", "road_blockade", "image_description", "alert_category", "building_collapse", "fire", "inside_tunnel", "brt_lane", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:45.312685+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.797858+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.600995+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:55:49.719696+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a central reservation. Street lights are on, and there are trees on either side of the road. There are cars and motorbikes on the road, and the road surface is dry. There are buildings and shops on either side of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:46.178580+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:46.385098+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.661946+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:41.364851+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:42.070128+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:45.072601+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:47.185274+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.879199+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can easily pass through."}]}, {"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-06T00:00:57.988678+00:00", "objects": ["inside_tunnel", "fire", "building_collapse", "road_blockade", "water_in_road", "alert_category", "brt_lane", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:56.215185+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:02:00.553774+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:00.362201+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:59.850215+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:59.567040+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:00.234461+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:56.931490+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:59.352769+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:00.060023+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:00.841021+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:01.048523+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:01.363419+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There are people walking on the sidewalk and street. There are cars parked on the side of the road. There are buildings and trees in the background."}]}, {"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-06T00:00:41.606972+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade_reason", "fire", "image_condition", "inside_tunnel", "building_collapse", "road_blockade", "image_description", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:45.689030+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:44.285684+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.301619+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:44.705295+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:45.485272+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:44.021580+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:40.585077+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:45.214895+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:44.486689+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:46.183199+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. The road is dry and there are no signs of water or puddles. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:44.975194+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:45.896242+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:53.312395+00:00", "objects": ["building_collapse", "road_blockade", "road_blockade_reason", "inside_tunnel", "brt_lane", "water_in_road", "landslide", "image_condition", "alert_category", "traffic_ease_vehicle", "fire", "image_description"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:01:46.325940+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.602905+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.836973+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:41.529364+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:42.229671+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:45.348661+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:47.127535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:45.131803+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:00.402394+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:01.855434+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. There are no large puddles or significant water accumulation."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.622214+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:02.580460+00:00", "label": "null", "label_explanation": "The image shows a night view of a city intersection. There are no cars on the road and the traffic lights are green. The street is lit by streetlights."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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-06T00:03:06.300703+00:00", "objects": ["inside_tunnel", "image_description", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "road_blockade_reason", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:16.807367+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:25.208276+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, landslides, fires, or other problems. The road surface is dry and there are no signs of water on the road. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:24.496019+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:24.722272+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:22.449865+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:24.958411+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:22.696478+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:17.710905+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:22.968081+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:24.249072+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:23.226471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:23.522943+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, landslides, fires, or other problems."}]}, {"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-05T23:49:48.495178+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "fire", "building_collapse", "brt_lane", "image_description", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T23:50:26.384404+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:50:31.580597+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through without any difficulty."}, {"object": "fire", "timestamp": "2024-02-05T23:50:31.273012+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas indicating a fire."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:50:31.073430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:50:27.079936+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-05T22:46:16.600515+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, obstructions, or signs of trouble. The road surface is dry and free of debris. There are no people or vehicles visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-05T23:50:29.890843+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions in the image."}, {"object": "landslide", "timestamp": "2024-02-05T23:50:31.768321+00:00", "label": "false", "label_explanation": "There is no evidence of landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:50:30.383438+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:50:30.581838+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:50:30.154517+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-05T23:50:30.885026+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockades or disruptions."}]}, {"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-06T00:03:06.845370+00:00", "objects": ["landslide", "brt_lane", "water_in_road", "road_blockade_reason", "inside_tunnel", "alert_category", "fire", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_condition", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:26.479341+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:18.880751+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:24.621571+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:25.214396+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:18.114467+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:25.509610+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockades or other issues."}, {"object": "fire", "timestamp": "2024-02-06T00:01:26.033065+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:24.900815+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:26.266025+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:25.765456+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:24.190199+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:26.713266+00:00", "label": "null", "label_explanation": "The image is of a road with a clear sky. There are no signs of any issues or blockades. The road is dry and there are no visible vehicles or pedestrians."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:03:09.664540+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "landslide", "building_collapse", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:03:53.541455+00:00", "label": "free", "label_explanation": "There is some water on the road, but it is not enough to block traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:03:49.127093+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:03:53.228738+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-06T00:03:52.963767+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:03:54.150667+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:03:45.904432+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:03:54.436730+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:03:54.735533+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:00:59.549532+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with trees on either side. There are no visible obstructions or signs of accidents or hazards. The road is dry and there are no signs of water accumulation or flooding. The image quality is good and there are no distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:03:52.047921+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not enough to impede traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:03:53.832488+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:03:48.254171+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:27.630661+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "alert_category", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:11.181284+00:00", "label": "impossible", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:11.411870+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:10.687890+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:06.700867+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:10.478858+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:09.507809+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:09.715173+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:11.672972+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road with cars parked on the side and a person crossing the road. There is a tree on the sidewalk and a fallen tree blocking part of the road. The street lights are on."}, {"object": "fire", "timestamp": "2024-02-06T00:02:10.903061+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:09.993684+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:06.014408+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:10.203066+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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-06T00:01:21.115269+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "brt_lane", "image_condition", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:06.489109+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:07.389462+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-06T00:02:07.186636+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:07.679513+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:03.011562+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:05.793735+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:06.695320+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:06.021358+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:07.887531+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are several food stalls and people on the sidewalk. There is a road with cars parked on the side. The road is not blocked and traffic is flowing smoothly."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:06.288980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:06.983218+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:02.284615+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:01:24.861657+00:00", "objects": ["image_description", "road_blockade", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "water_in_road", "fire", "building_collapse", "landslide", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:02:19.536378+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street in Rio de Janeiro. There are cars, buses, and people crossing the street. The street is well-lit and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:17.730219+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:17.215925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:18.235710+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:14.028548+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with the respective signage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:13.209976+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:17.515890+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:02:18.739872+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:18.532032+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:19.340787+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:19.036237+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:18.016166+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:22.779252+00:00", "objects": ["inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "road_blockade", "image_description", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:09.891654+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:10.599477+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with the label 'BRT'."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:13.689783+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:59:14.864198+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:14.160187+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:14.370984+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:13.395796+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:13.886555+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:15.577762+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The road is wet from the rain, but there are no major puddles or blockages. The buildings along the street are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:15.289574+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:15.081675+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:14.598530+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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-06T00:01:22.167408+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "fire", "water_in_road", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T23:53:09.575104+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:08.879868+00:00", "label": "false", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:13.273261+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no signs of flooding, accidents, or other disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:53:12.770703+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:14.181929+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:13.972664+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. There are small, insignificant puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:13.483845+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:14.369335+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance. The road is clear, with no signs of flooding, accidents, or other disruptions. There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:13.005104+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-05T23:53:13.667543+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:12.501927+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are small, insignificant puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:53:12.291697+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:09.738301+00:00", "objects": ["alert_category", "image_description", "brt_lane", "fire", "inside_tunnel", "water_in_road", "landslide", "image_condition", "traffic_ease_vehicle", "building_collapse", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:02:00.942769+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:07.077338+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars, trucks, and people crossing the road. There are some trees on the side of the road and buildings in the background. The street is lit by streetlights."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:57.237036+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:02:01.399503+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:56.529489+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:00.224503+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:01.820667+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:00.033473+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:01.610253+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:01.201588+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:00.501012+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:00.708955+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:09.193718+00:00", "objects": ["alert_category", "traffic_ease_vehicle", "landslide", "inside_tunnel", "fire", "brt_lane", "road_blockade_reason", "image_condition", "building_collapse", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:02:02.227704+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:03.035381+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:03.356194+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.109679+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:02:02.729045+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:57.838007+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:02.004177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:01.148403+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.516236+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:03.647956+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The traffic lights are green and there are no signs of congestion. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.429998+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:01.708082+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:11.289396+00:00", "objects": ["road_blockade", "alert_category", "road_blockade_reason", "water_in_road", "image_condition", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T23:53:10.776193+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:11.208499+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:11.004766+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:10.504259+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:53:10.303487+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:53:07.598126+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:11.416848+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T23:53:11.673268+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:11.895444+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:12.091023+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:06.903143+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:12.318449+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy urban intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The traffic lights are green for both directions. There are buildings and trees on either side of the intersection. The image is clear and well-lit."}]}, {"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-06T00:01:16.779947+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:05.946998+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:06.456452+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:01.559095+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T23:59:06.666346+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:06.938614+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:05.455309+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:02.362433+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:05.662444+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:07.067105+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:05.171471+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:06.188971+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:07.371509+00:00", "label": "null", "label_explanation": "A night-time image of a street in Rio de Janeiro. There is a bus driving in the foreground, and a car is parked on the side of the road. A woman is standing on the sidewalk, and there are a few trees in the background."}]}, {"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-06T00:01:14.343116+00:00", "objects": ["image_description", "building_collapse", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "brt_lane", "image_condition", "landslide", "inside_tunnel", "water_in_road", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:02:03.070072+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a central reservation. There are trees on either side of the road and street lights along the roadside. The road is dry and there is no traffic visible."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.117871+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:02.587080+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:01.379959+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and there are no signs of traffic disruption."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:01.606806+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:58.092257+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:00.874362+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:02.806485+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.471682+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.107144+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-06T00:02:02.372305+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:01.870837+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:15.365663+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "landslide", "image_condition", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.839740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:26.426181+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:20.747172+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:26.664299+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.570379+00:00", "label": "true", "label_explanation": "The image shows a dedicated lane for bus rapid transit (BRT) with a sign indicating 'BRT'."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:26.212194+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:26.984951+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There are no traffic lights visible. The road is well-lit and there are no visible obstructions. The road surface is dry and there are no signs of water accumulation. There are a few cars and buses on the road, all of which are moving slowly. There are also a few people walking on the sidewalk. The image is clear and there are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:23.092193+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, accidents, fires, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:23.956198+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:12.708349+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.430789+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:25.913071+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-06T00:03:17.025577+00:00", "objects": ["landslide", "alert_category", "image_condition", "brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "fire", "inside_tunnel", "road_blockade_reason", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:27.564482+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:26.650386+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.480608+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.399490+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:25.932876+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:27.346751+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:26.187547+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:27.759468+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are no cars on the road and the street is lit by streetlights. There are trees and buildings on either side of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:01:27.151226+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.760457+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:26.454839+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:26.870810+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:16.505647+00:00", "objects": ["water_in_road", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade", "inside_tunnel", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-05T23:59:02.193471+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:02.747997+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:02.982610+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:03.874004+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:03.272267+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:04.389109+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear night sky. There are trees and buildings on either side of the road. The road is well-lit and there is no traffic. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:02.467674+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:58.659151+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:01.971818+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:58:59.359237+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:04.097291+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T23:59:03.574736+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:00:56.527728+00:00", "objects": ["road_blockade", "brt_lane", "image_description", "inside_tunnel", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.346891+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.772009+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:47.046210+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There is a bus driving through the intersection, and several cars are parked on the side of the road. The street is lit by streetlights, and there are trees and buildings in the background. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:41.041792+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:46.062120+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:45.068106+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.344222+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.551923+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.844637+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:44.852681+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.547303+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.828312+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:06.216622+00:00", "objects": ["image_description", "building_collapse", "road_blockade", "image_condition", "fire", "landslide", "inside_tunnel", "brt_lane", "alert_category", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T23:59:11.190510+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars and a bus driving on it. There are trees and buildings on either side of the street. There are also some people walking on the sidewalk. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:10.174085+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:09.470367+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:08.977270+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T23:59:10.387173+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:10.971071+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:05.092991+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:06.101637+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:09.892447+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:10.682863+00:00", "label": "easy", "label_explanation": "The road is clear with no water on it."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:09.678900+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:09.188583+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:01:37.834450+00:00", "objects": ["road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "brt_lane", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:02:19.990536+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:20.454095+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:21.158224+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:20.666195+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:21.573304+00:00", "label": "null", "label_explanation": "A night-time view of a street with cars parked on the side and a gas station on the left. There is a black car driving in the foreground and a white car in the background. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:20.179224+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:19.548863+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:19.783094+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:16.672716+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:15.980408+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:02:20.946253+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:21.361498+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:05.751339+00:00", "objects": ["road_blockade", "inside_tunnel", "alert_category", "fire", "brt_lane", "landslide", "water_in_road", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T23:56:20.293574+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:56:16.698288+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T23:56:20.685810+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-05T23:56:21.089307+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:56:17.314230+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T23:56:21.519057+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:56:20.151448+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:56:20.513454+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:56:21.814895+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a white car driving through the intersection and a silver car parked on the side of the road. The street is lit by streetlights and there are trees on either side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:56:21.308849+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:56:19.896457+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:56:20.800827+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:01:13.769824+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "road_blockade", "building_collapse", "landslide", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T23:59:00.727709+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:54.921186+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:58:55.631703+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:58:58.734386+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:58:59.920972+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:00.194717+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:58:59.225890+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:58:59.435117+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:58:58.940852+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:58:59.711675+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:00.472503+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T23:58:58.512851+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-06T00:00:59.101435+00:00", "objects": ["road_blockade_reason", "brt_lane", "water_in_road", "road_blockade", "building_collapse", "fire", "image_description", "inside_tunnel", "image_condition", "alert_category", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.428815+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.538487+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:44.921637+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.133409+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:45.862699+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.124086+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:46.831491+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars, buses, and people on the street. The street is lit by streetlights. There are buildings on either side of the street. The buildings are tall and brightly lit. The sky is dark and cloudy."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:40.862720+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:44.612860+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.613642+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.342867+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.549749+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:13.992161+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "road_blockade_reason", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-05T23:59:03.619988+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:03.833080+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:03.342363+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:04.048830+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:59:04.830467+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:59.536764+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:00.263497+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:04.323151+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:04.539182+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:05.318051+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:05.692251+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There is a traffic light at the intersection, showing red for the cars coming from the left side of the image. There is a statue in the middle of the intersection. The road is wet from rain, but there are no major puddles or blockages. There are cars and people crossing the intersection. The image is clear and well-lit."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:05.042242+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file From 980059fcd3bee5381056dd8497bdd1e3fd4b67eb Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 00:15:00 +0000 Subject: [PATCH 33/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/Home.py | 10 ++-------- app/pages/Classificador de Labels.py | 3 ++- app/utils/utils.py | 3 ++- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/app/Home.py b/app/Home.py index ff32765..25fc5a9 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,14 +3,8 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import ( - create_map, - display_camera_details, - get_agrid_table, - get_cameras, - get_filted_cameras_objects, - treat_data, -) +from utils.utils import (create_map, display_camera_details, get_agrid_table, + get_cameras, get_filted_cameras_objects, treat_data) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index 60ad068..89bfc94 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -1,7 +1,8 @@ # -*- coding: utf-8 -*- import pandas as pd import streamlit as st -from utils.utils import get_cameras, get_objects, get_objetcs_labels_df, treat_data +from utils.utils import (get_cameras, get_objects, get_objetcs_labels_df, + treat_data) st.set_page_config(layout="wide", page_title="Pontos de Alagamento") st.image("./data/logo/logo.png", width=300) diff --git a/app/utils/utils.py b/app/utils/utils.py index 30a89ec..3a186b4 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,8 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode +from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, + GridUpdateMode) from utils.api import APIVisionAI vision_api = APIVisionAI( From 243213836571195d0776eda5fe091fa7df8dd90d Mon Sep 17 00:00:00 2001 From: d116626 Date: Mon, 5 Feb 2024 21:38:53 -0300 Subject: [PATCH 34/64] feat: add classification option --- app/pages/Classificador de Labels.py | 72 +++++++++++++++++----------- data/temp/mock_api_data.json | 2 +- 2 files changed, 46 insertions(+), 28 deletions(-) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index 60ad068..b57919a 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -3,8 +3,8 @@ import streamlit as st from utils.utils import get_cameras, get_objects, get_objetcs_labels_df, treat_data -st.set_page_config(layout="wide", page_title="Pontos de Alagamento") -st.image("./data/logo/logo.png", width=300) +st.set_page_config(layout="wide") +# st.image("./data/logo/logo.png", width=300) st.markdown("# Classificador de labels | Vision AI") @@ -31,19 +31,6 @@ cameras_objs = cameras_objs.head(4) -st.markdown( - """ - - """, - unsafe_allow_html=True, -) - def put_selected_label(labels_options, label): selected_label = labels_options[labels_options["value"] == label] @@ -53,6 +40,34 @@ def put_selected_label(labels_options, label): print(label_to_put, "\n") +customized_button = st.markdown( + """ + """, + unsafe_allow_html=True, +) + + +def buttom(label, labels_options): + + if st.button( + label, + on_click=put_selected_label, + args=( + labels_options, + label, + ), + ): # noqa + pass + + # Create a state variable to keep track of the current image index if "current_image_index" not in st.session_state: st.session_state.current_image_index = 0 @@ -74,18 +89,21 @@ def put_selected_label(labels_options, label): snapshot_url = current_image["snapshot_url"] st.image(snapshot_url, use_column_width=True) labels_options = labels.loc[name] - choces = labels_options["value"].tolist() + choices = labels_options["value"].tolist() - st.markdown(f"**Options for {name}:**") + st.markdown( + f"

{name}

", + unsafe_allow_html=True, + ) + + # place labels in a grid of 2 columns + col1, col2 = st.columns(2) + for i, label in enumerate(choices): + if i % 2 == 0: + with col1: + buttom(label, labels_options) + else: + with col2: + buttom(label, labels_options) - for label in choces: - if st.button( - label, - on_click=put_selected_label, - args=( - labels_options, - label, - ), - ): # noqa - pass st.session_state.current_image_index += 1 # noqa diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index df7ed6d..c83b4d6 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": 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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:22.575475+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "brt_lane", "image_description", "image_condition", "landslide", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:01:25.425945+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:24.722288+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:25.846779+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-06T00:01:25.638382+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:24.546098+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:25.202390+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:19.066518+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:26.324217+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a car driving on the road, and a pedestrian is crossing the road. There are trees and buildings on either side of the road. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:24.223616+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:26.123668+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:24.898923+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:18.338421+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:26.125764+00:00", "objects": ["image_condition", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "landslide", "road_blockade_reason", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:01:26.626207+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:26.883507+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:22.509780+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:27.095251+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:27.500970+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:23.332154+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:27.767845+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:27.972335+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:28.200953+00:00", "label": "moderate", "label_explanation": "There are large puddles on the road, but most vehicles can still pass with caution."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:28.502731+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There is soil displacement, rocks, and debris on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:27.302640+00:00", "label": "water_puddle", "label_explanation": "There are large puddles on the road, but most vehicles can still pass with caution."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:28.684742+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 road. A person is walking on the left side of the road. There are cars parked on both sides of the road. The road is lit by streetlights."}]}, {"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-06T00:03:14.402618+00:00", "objects": ["brt_lane", "image_condition", "water_in_road", "road_blockade", "road_blockade_reason", "inside_tunnel", "image_description", "traffic_ease_vehicle", "alert_category", "landslide", "building_collapse", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:25.107824+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.913205+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.194381+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.393744+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.627600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.935538+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.009120+00:00", "label": "null", "label_explanation": "The image shows a wide road intersection at night. There are several cars parked on the side of the road and a few people walking around. The road is well-lit and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.598452+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.884941+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.797599+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.090685+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.313170+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:28.110564+00:00", "objects": ["brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_condition", "building_collapse", "landslide", "water_in_road", "road_blockade_reason", "fire", "image_description", "alert_category"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:21.448110+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:18.936939+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:25.636406+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:26.953129+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.050103+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:26.388675+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:27.229237+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:25.351757+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:25.873941+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:26.702014+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:30.166726+00:00", "label": "null", "label_explanation": "A night-time 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 building on the left side of the road, and a wall on the right side. There are two motorbikes on the street, both traveling in the same direction. There are no people visible in the image."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:26.134777+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-06T00:03:09.572502+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "alert_category", "fire", "image_condition", "road_blockade_reason", "building_collapse", "image_description", "water_in_road", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:03:47.426791+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:03:48.084639+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:03:51.360734+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:03:51.852771+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:03:52.287866+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:03:50.878946+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:03:51.573437+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:03:52.073621+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:03:53.379547+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There are cars parked on the side of the road. There are no people visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:03:51.158148+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:03:53.162313+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:03:52.967094+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-06T00:03:19.812117+00:00", "objects": ["brt_lane", "inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "water_in_road", "fire", "traffic_ease_vehicle", "building_collapse", "alert_category", "road_blockade", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:01.890033+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:00:59.808936+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal fence on the left side of the image."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:00.040449+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:00.664767+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:00.915994+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:01.656414+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is murky and covers a large portion of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:01:00.309490+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:02.505355+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:02.721505+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:02.999447+00:00", "label": "minor", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass. This could cause traffic delays and inconvenience for motorists."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:02.293265+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:05.903560+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with visible light sources on the ceiling. The walls are made of concrete and have graffiti on them. There is a metal fence on the left side of the image. The road is partially blocked by water. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:04.914569+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:01:29.500627+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are no signs of landslides, fires, or building collapses. The road is dry, with no significant puddles or water accumulation. The image quality is good, with no blurring or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:27.582736+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.262589+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.704781+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit (BRT) lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.294575+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.694368+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.387543+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:28.796583+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:28.498923+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.068380+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.003527+00:00", "label": "easy", "label_explanation": "The road is clear, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:27.805925+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:11.613623+00:00", "objects": ["road_blockade", "building_collapse", "landslide", "brt_lane", "inside_tunnel", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade_reason", "image_description", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:01:22.879844+00:00", "label": "free", "label_explanation": "There are no features that blockade the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:23.645537+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:24.463916+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:17.463555+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:16.535448+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:01:23.968216+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:24.216631+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:23.370535+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:23.127018+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:24.736145+00:00", "label": "null", "label_explanation": "The image is a night scene of a busy street in Rio de Janeiro. There are cars, buses, and people crossing the street. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:22.364383+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:22.632793+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}]}, {"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-06T00:03:20.776988+00:00", "objects": ["image_description", "image_condition", "inside_tunnel", "building_collapse", "landslide", "fire", "traffic_ease_vehicle", "water_in_road", "road_blockade", "brt_lane", "road_blockade_reason", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:01:30.154838+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a blue and white striped wall on the left and a gray wall on the right. There is a street light on the right side of the intersection. There is a motorcycle parked on the side of the road on the right. There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.867776+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.374827+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.155919+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.891065+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.367960+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.655583+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.163096+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.403647+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.487541+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.676396+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.950959+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:03:23.457272+00:00", "objects": ["brt_lane", "image_condition", "image_description", "inside_tunnel", "road_blockade_reason", "fire", "alert_category", "landslide", "water_in_road", "road_blockade", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:00.370682+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a bus currently occupying the lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:03.174712+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:14.504032+00:00", "label": "null", "label_explanation": "A night-time view of a busy street in Rio de Janeiro. There is a bus driving in the foreground, and cars parked on either side of the street. There are also a few trees and buildings in the background."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:00:59.814422+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:14.034455+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:00:53.971653+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:01.577428+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:00:53.700333+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:03.380773+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:05.907578+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:14.257510+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:02.292959+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:25.367128+00:00", "objects": ["brt_lane", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "inside_tunnel", "landslide", "image_condition", "alert_category", "building_collapse", "image_description", "fire", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:01:00.896777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.058306+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:26.247225+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:26.783679+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:00:59.674504+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.656092+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.964215+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:27.245911+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:27.855395+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.225152+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars parked on the side of the road and a motorcycle driving through the intersection. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-06T00:01:28.470651+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:26.543570+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:08.909485+00:00", "objects": ["inside_tunnel", "brt_lane", "building_collapse", "fire", "image_condition", "alert_category", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.933518+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.951688+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.395545+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.609650+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:28.199038+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:29.113850+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.630064+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.889581+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible puddles or obstructions. Vehicles can pass through the area without difficulty."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.919230+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.419142+00:00", "label": "false", "label_explanation": "There is minimal water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.402760+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There are no signs of landslides, fires, or road blockades. The image quality is good, with no blurring or distortions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:30.118042+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-06T00:03:18.080014+00:00", "objects": ["inside_tunnel", "brt_lane", "image_condition", "fire", "road_blockade_reason", "alert_category", "road_blockade", "building_collapse", "traffic_ease_vehicle", "water_in_road", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:24.221977+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:25.405452+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations for bus rapid transit use."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:28.210426+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.721305+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.992320+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:29.192421+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.719946+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.513640+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.933546+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.494885+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:30.191148+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.401295+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with a green traffic light, a pedestrian crossing the street, and a few trees on the sidewalk. The street is lit by streetlights."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:00:53.613867+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "traffic_ease_vehicle", "image_description", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:46.830259+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:48.042323+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:46.619820+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:47.814119+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:48.328319+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are cars and motorbikes on the road, and people are walking on the sidewalks. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:46.120362+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:47.535309+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:47.041422+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:47.315754+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:46.356491+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:43.123777+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:42.420543+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:03:52.109268+00:00", "objects": ["landslide", "image_condition", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:31.994350+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:30.183800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:32.203154+00:00", "label": "null", "label_explanation": "A car accident on a road at night. A police car is on the scene with its lights flashing. A person is walking on the sidewalk next to the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:30.813636+00:00", "label": "car_accident", "label_explanation": "There is a car accident on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:26.793098+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:01:31.501993+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:30.612409+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by the car accident, making it impossible for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:31.307049+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:27.490355+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:30.421906+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:31.022977+00:00", "label": "major", "label_explanation": "There is a car accident on the road. This is a major issue that affects city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:31.723157+00:00", "label": "impossible", "label_explanation": "The road is completely blocked by the car accident, making it impossible for vehicles to pass."}]}, {"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-06T00:03:52.866377+00:00", "objects": ["image_description", "landslide", "alert_category", "building_collapse", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:01:31.108092+00:00", "label": "null", "label_explanation": "The image shows a clear road with a fallen tree blocking part of the road. There is a yellow car stopped on the road near the fallen tree. There are no signs of flooding or other hazards. The image is clear and easy to see."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:30.845162+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:29.941669+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:30.136919+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:25.188890+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:26.231631+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:29.237572+00:00", "label": "false", "label_explanation": "There are no significant, larger puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:01:30.424566+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:29.519727+00:00", "label": "free", "label_explanation": "The road is free and clear."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:29.038448+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:30.634653+00:00", "label": "moderate", "label_explanation": "There are larger puddles on the road, but vehicles can still pass."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:29.731139+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}]}, {"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-06T00:00:50.877753+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "building_collapse", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:32.353692+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:01:31.867213+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:31.382594+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:30.480295+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:31.655850+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:30.958378+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:30.689424+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:32.087485+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:32.594961+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy urban street with cars, buses, and people crossing the road. There are also trees and buildings on either side of the street. The street is well-lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:27.655317+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:31.169795+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:28.099299+00:00", "label": "true", "label_explanation": "There is a dedicated lane for BRT (Bus Rapid Transit) with a yellow sign indicating 'BRT'."}]}, {"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-06T00:03:48.084420+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:27.901961+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:31.399172+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:33.013882+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:28.539848+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:32.109171+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:33.432546+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:32.518320+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:31.603222+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:32.726070+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:32.305437+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:31.823594+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:33.209403+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:47.344578+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:01:34.355945+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there is no debris on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:33.104910+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:35.279447+00:00", "label": "null", "label_explanation": "The image shows a dark enclosed space with no visible light sources. The walls and ceiling of the tunnel are made of concrete and the road surface is made of asphalt. There is a car driving through the tunnel."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:33.366166+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:01:34.576600+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:33.588725+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:34.777381+00:00", "label": "easy", "label_explanation": "The road is completely dry with no puddles or water."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:29.668640+00:00", "label": "true", "label_explanation": "The image shows a dark enclosed space with no visible light sources. The walls and ceiling of the tunnel are made of concrete and the road surface is made of asphalt. There is a car driving through the tunnel."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:34.086640+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:35.082277+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no debris on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:33.865562+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:31.167410+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}]}, {"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-06T00:03:50.697480+00:00", "objects": ["inside_tunnel", "image_condition", "alert_category", "building_collapse", "fire", "image_description", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:42.932478+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:46.618682+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:47.643473+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:47.909156+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:48.126873+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:48.864928+00:00", "label": "null", "label_explanation": "This is a night-time image of a street corner in Rio de Janeiro. There is a white car driving in the foreground, and a few other cars parked on the side of the road. There are also some people walking on the sidewalk. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:46.921248+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:47.323009+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:48.403038+00:00", "label": "easy", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:43.635920+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:47.119798+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:48.613590+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:40.726859+00:00", "objects": ["water_in_road", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_condition", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:27.431301+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:28.635277+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.217855+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.006505+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.121123+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:28.326869+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.128269+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.232911+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:27.705976+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:28.839318+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:27.916096+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:29.328619+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are a few cars parked on the side of the road and some people walking around. The street is lit by streetlights."}]}, {"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-06T00:03:46.587750+00:00", "objects": ["image_condition", "road_blockade_reason", "inside_tunnel", "brt_lane", "landslide", "fire", "building_collapse", "water_in_road", "road_blockade", "image_description", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T23:58:59.112766+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:58:59.784423+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:55.579446+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:58:56.277979+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:00.982186+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T23:59:00.512429+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:00.294616+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:58:59.300290+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:58:59.521657+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:54:33.475350+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are cars on the road and people crossing the street. The street is well-lit, and there are no visible hazards."}, {"object": "alert_category", "timestamp": "2024-02-05T23:58:59.993935+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:00.715297+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}]}, {"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-06T00:00:52.771340+00:00", "objects": ["landslide", "image_description", "inside_tunnel", "road_blockade_reason", "fire", "water_in_road", "road_blockade", "building_collapse", "traffic_ease_vehicle", "brt_lane", "image_condition", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:45.216654+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:46.023958+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars and buses on the street, and people are walking on the sidewalk. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:39.531891+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:43.910828+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:01:44.705869+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:43.489742+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:43.720249+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road, but it is still possible for vehicles to pass with caution."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:44.413142+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:44.942495+00:00", "label": "difficult", "label_explanation": "There is a fallen tree blocking part of the road, but it is still possible for vehicles to pass with caution."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:40.206308+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:43.235428+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:44.204167+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which is causing traffic congestion. This is a minor issue that should be reported."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:13.468589+00:00", "objects": ["road_blockade", "water_in_road", "inside_tunnel", "alert_category", "image_condition", "road_blockade_reason", "fire", "traffic_ease_vehicle", "building_collapse", "brt_lane", "landslide", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:01:18.035823+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:09.873149+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:00.366823+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:02.308979+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:09.598254+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:06.769421+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:00:59.307451+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:09.249727+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:02.786454+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:01.585826+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:00:56.573595+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T23:55:28.856796+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tall building on the left side of the image and a row of parked cars on the right side. The street is lit by streetlights."}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:28.811744+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "brt_lane", "image_description", "road_blockade_reason", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.480029+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.510642+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:30.000628+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:30.274851+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.767485+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.708639+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:29.260926+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.980216+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.936264+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.558611+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road with a BRT lane on the left side. There is a wall with graffiti on the right side of the road. There are no cars on the road. The image is clear and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:29.000180+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:28.203007+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:16.912171+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_description", "road_blockade_reason", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "alert_category", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:02.831141+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet, with small, insignificant puddles. Traffic flow is not affected."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:01.614835+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:03.370184+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or issues. The road is dry, and there are no signs of water accumulation. There are no people or vehicles visible in the image."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:01.827760+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:03.039697+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:01.123830+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:02:02.609178+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.337770+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.343057+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:02.128946+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.328492+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structure, artificial lighting, or tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:58.024901+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}]}, {"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-06T00:01:17.224262+00:00", "objects": ["inside_tunnel", "building_collapse", "image_condition", "road_blockade_reason", "brt_lane", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "landslide", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:55.996633+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:00.577330+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:59.462151+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:00.160737+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:56.698910+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:59.878053+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:00.364466+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:00.997247+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water accumulation."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:01.494456+00:00", "label": "null", "label_explanation": "A night-time image of a bus driving on a busy road. There are trees on either side of the road and buildings in the background. The road is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:01.274966+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:02:00.800125+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:59.675866+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear and dry."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:40.852911+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:01:43.601629+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:39.785929+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:44.304411+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:44.785191+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:45.266835+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The surrounding buildings are intact and there are no signs of collapse or structural damage. There is no evidence of fire, landslide, or any other issues that would interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:01:44.568918+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:40.489514+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:43.109577+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:43.366153+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:44.077187+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:43.807091+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:44.995263+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:37.632306+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:01:44.821839+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:41.109826+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:45.036575+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:46.026198+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.739934+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.820387+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.229930+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.548087+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.804378+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:47.104072+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars parked on the side. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.523204+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.336612+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:35.302765+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "alert_category", "building_collapse", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:01:47.944434+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:48.526172+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:47.241337+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:46.519366+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:48.232610+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:47.029140+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:43.646221+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:47.517506+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:47.748470+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:48.757759+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are two cars on the road, one black and one silver. The black car is in the foreground, and the silver car is in the background. The road is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:46.741574+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:42.922990+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}]}, {"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-06T00:03:38.680221+00:00", "objects": ["water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "image_description", "brt_lane", "building_collapse", "image_condition", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:43.258443+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-06T00:01:44.382818+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:43.465984+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:44.635134+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:43.694154+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:57.693541+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a red traffic light and a pedestrian crossing. There are cars parked on the side of the road and a few people walking around."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:40.174010+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:44.152153+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:42.981795+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:39.521639+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:44.873916+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:43.944683+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:03:38.097540+00:00", "objects": ["traffic_ease_vehicle", "fire", "image_condition", "road_blockade_reason", "image_description", "water_in_road", "road_blockade", "brt_lane", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:43.760334+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water accumulation. Traffic can flow easily."}, {"object": "fire", "timestamp": "2024-02-06T00:01:43.485408+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:42.060025+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:42.765473+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:44.273833+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance. There is a bus driving in the right lane and several cars driving in the left lane. The road is dry and clear, with no signs of water accumulation. The surrounding buildings are intact, with no signs of damage or structural issues. There are no visible signs of a fire, landslide, or road blockade. The image is clear and has good visibility, with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:42.281924+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-06T00:01:42.560466+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:39.192832+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:43.273924+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:38.527057+00:00", "label": "false", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:43.008824+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear and free of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:43.996023+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:42.908006+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T23:16:25.956987+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:16:20.792780+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:16:25.679449+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "alert_category", "timestamp": "2024-02-05T23:16:25.457222+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:16:21.554867+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:16:25.178284+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:16:24.959352+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:16:24.743113+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-05T23:16:26.664627+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left lane, behind the fallen tree. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-05T23:16:24.474302+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:16:26.167408+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "landslide", "timestamp": "2024-02-05T23:16:26.459043+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:19.843014+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:01:20.082538+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:19.824458+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.326805+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:23.690047+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.527949+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:25.974331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:35.140144+00:00", "label": "null", "label_explanation": "A night view of a busy road with cars, a bus, and a fallen tree. There are street lights and buildings on either side of the road. The sky is dark and cloudy."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:25.332052+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:25.761340+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:23.138781+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.069126+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:25.090139+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:14.643768+00:00", "objects": ["road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "alert_category", "image_condition", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:24.234505+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:16.051353+00:00", "label": "false", "label_explanation": "There are no signs of a bus rapid transit (BRT) lane. The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:26.611386+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water or other obstructions that might hinder vehicle movement."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:24.833602+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:19.034751+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:26.050316+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:21.195594+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:23.217326+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:27.806553+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or hazards. There are no signs of water, landslides, fires, or building collapses. The image is clear and there are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:27.236065+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:25.463867+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:15.337695+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:11.665636+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:02:02.622575+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. The road surface is dry, and there are no signs of water accumulation. The surrounding buildings are intact, and there are no signs of collapse or structural damage. There are no visible flames, smoke, or signs of burn damage. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:56.567226+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:01.134086+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:57.274466+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:00.559347+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-06T00:02:01.852518+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:00.875388+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:00.344414+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:02.068843+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no water accumulation or puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:02.350767+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:01.361652+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:01.632772+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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-06T00:01:08.503485+00:00", "objects": ["alert_category", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "image_condition", "fire", "road_blockade_reason", "landslide"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:01:21.994127+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:06.496108+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:25.054824+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:23.104302+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:23.677498+00:00", "label": "null", "label_explanation": "A night-time image of a street intersection. There is a bus driving through the intersection and other vehicles parked on the side of the road. The street is wet from rain and there are some puddles on the ground."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:05.925463+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:25.751150+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:22.383510+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:03.454664+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:22.757902+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:11.881729+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:23.369459+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:19.511319+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T23:59:03.860980+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:03.137079+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:58:59.555942+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:02.566055+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:56:19.694754+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are a few cars and motorcycles on the road, and a bus is stopped at the bus stop. The road is lit by streetlights, and there are trees and buildings in the background."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:02.361964+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:04.340047+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:03.366887+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:58.859502+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:03.651042+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:02.888003+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:04.122758+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}]}, {"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-06T00:01:09.008840+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T23:53:16.332626+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:53:11.929015+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:15.614110+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:53:15.355960+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:16.104061+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-05T23:53:14.846160+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:15.118117+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:15.822886+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:11.292817+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:16.530915+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:17.022621+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There are no traffic lights visible. The road is clear with no blockades or significant puddles. There are a few small trees on the side of the road. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:16.798441+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:11.835212+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T23:56:00.529484+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:56:02.532707+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:56:00.742741+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:56:01.021614+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:55:57.641256+00:00", "label": "true", "label_explanation": "There is a dedicated lane for BRT buses, marked with a sign on the road."}, {"object": "fire", "timestamp": "2024-02-05T23:56:02.036964+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-05T23:56:02.746620+00:00", "label": "null", "label_explanation": "The image shows a night scene of a six-lane road with a BRT lane. There are trees on both sides of the road and buildings in the background. The road is lit by streetlights. There are a few cars and buses on the road. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:56:01.733727+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:56:02.275128+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:55:56.845322+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T23:56:01.526500+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:56:01.237501+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:20.717963+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:02:05.490019+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:07.210609+00:00", "label": "easy", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:01.877966+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:02:06.971539+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:05.766599+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:07.683902+00:00", "label": "null", "label_explanation": "The image shows 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 some trees and buildings in the background."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:06.474435+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:05.985140+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:06.684599+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:02.578202+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:07.477187+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:06.270722+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:19.246526+00:00", "objects": ["image_condition", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T23:53:18.022365+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:53:18.567200+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:19.341659+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:53:14.826314+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:19.927637+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:20.433333+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road intersection. There are no cars on the road and the traffic lights are not visible. The street lights are on and there are trees on either side of the road. There is a building on the left side of the road and a statue on the right side. The road is wet from rain."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:14.021372+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:20.220411+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:18.331631+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:19.132384+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:18.836076+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:53:19.640444+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:01:21.979648+00:00", "objects": ["fire", "image_condition", "brt_lane", "alert_category", "image_description", "building_collapse", "traffic_ease_vehicle", "water_in_road", "road_blockade_reason", "road_blockade", "landslide", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-05T23:53:06.207388+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-05T23:53:04.716680+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:53:01.915658+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:05.716995+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:06.935961+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars and a person crossing the road. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:05.946858+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:06.429990+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:04.925219+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:05.504986+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:53:05.210891+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:06.642131+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:01.201321+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:08.042516+00:00", "objects": ["landslide", "image_description", "traffic_ease_vehicle", "water_in_road", "building_collapse", "fire", "road_blockade", "inside_tunnel", "image_condition", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:03:48.738255+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:26.386707+00:00", "label": "null", "label_explanation": "The image is distorted and it is not possible to see the road clearly. There is a green bar at the bottom of the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:03:53.358580+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no water accumulation or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:03:53.838952+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:03:54.746954+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:03:55.139875+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:03:54.057816+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:03:49.960117+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:03:53.563103+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "alert_category", "timestamp": "2024-02-06T00:03:54.534517+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:03:50.631846+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:03:54.296468+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:10.061945+00:00", "objects": ["water_in_road", "alert_category", "inside_tunnel", "brt_lane", "image_description", "traffic_ease_vehicle", "road_blockade", "fire", "building_collapse", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:03:52.269330+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:03:54.358837+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:03:52.667265+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:03:53.463869+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T23:58:29.134786+00:00", "label": "null", "label_explanation": "A night-time image of a street with a fallen tree. The tree is blocking the entire road, making it impassable for vehicles. There is a car approaching the tree from the left side of the image. The car is stopped, and its headlights are on. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:03:54.644366+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:03:55.157679+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:03:50.866511+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:03:54.881878+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:03:50.551878+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:03:51.145123+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:03:53.669038+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:03:12.689608+00:00", "objects": ["water_in_road", "alert_category", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "road_blockade_reason", "image_condition", "road_blockade", "fire", "landslide", "image_description", "building_collapse"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:26.177586+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:26.987888+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:27.870536+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.163509+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.223330+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:26.704137+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.892206+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:26.462988+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:27.585276+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:28.166369+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:28.396669+00:00", "label": "null", "label_explanation": "The image is of a road scene at night. There are no cars on the road. The road is lit by streetlights. There are trees and buildings on either side of the road. The sky is clear."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:27.265057+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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-06T00:03:04.621095+00:00", "objects": ["alert_category", "building_collapse", "inside_tunnel", "image_description", "road_blockade", "fire", "brt_lane", "water_in_road", "road_blockade_reason", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:01:27.966337+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:28.172349+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.564952+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:01.584095+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are a few cars parked on the side of the road and a bus driving in the middle of the road. There are also some trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:27.461324+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:28.467789+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.395232+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:27.246659+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:27.682748+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:26.994705+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:28.948880+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:28.728630+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:15.174548+00:00", "objects": ["brt_lane", "image_condition", "traffic_ease_vehicle", "alert_category", "image_description", "inside_tunnel", "water_in_road", "fire", "landslide", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T23:59:21.460455+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:20.048972+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:00:59.200523+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water."}, {"object": "alert_category", "timestamp": "2024-02-06T00:00:58.329222+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:00:59.724571+00:00", "label": "null", "label_explanation": "A night-time image of a road with a motorcycle driving in the foreground. Trees line the left side of the road, and buildings can be seen on the right side. The road is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:20.781702+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:20.471719+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-06T00:00:58.907894+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:00:59.469440+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:00:55.187253+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:00:58.590044+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:00:41.645059+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-06T00:01:12.369044+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_description", "image_condition", "road_blockade", "landslide", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:59.631990+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:00.334511+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:04.129940+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:03.666437+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:05.129589+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:02:04.845723+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:04.626218+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:05.622964+00:00", "label": "null", "label_explanation": "The image shows a night scene of a bus driving on a busy road. The bus is in the foreground, with the driver's side facing the camera. The road is wet from rain, and there are some puddles on the road. There are cars and trucks driving in the opposite direction of the bus. The street lights are on, and there are buildings and trees on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:03.441164+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:03.920204+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:05.351072+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:04.409341+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:01:09.382433+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:02:00.784761+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:57.291356+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:00.996894+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:59.197809+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:59.487653+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:00.008255+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:01.308090+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:59.765775+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:00.301746+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, and there are no signs of any problems."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:01.601750+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls on both sides. The road is dry, and there is no traffic. There are no signs of any problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:55.682095+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls on both sides."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:00.529457+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of structural damage."}]}, {"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-06T00:01:17.917587+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "inside_tunnel", "water_in_road", "building_collapse", "fire", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:20.027609+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no signs of water or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:15.457263+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:20.521154+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There is a white car driving on the road, and there are trees and buildings on either side of the road. The image is well-lit and the weather is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:14.754364+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:18.527227+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:19.523172+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "fire", "timestamp": "2024-02-05T23:59:19.814286+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:20.236150+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:18.316597+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:18.743842+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:19.018397+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:19.244785+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-06T00:01:12.524198+00:00", "objects": ["landslide", "inside_tunnel", "fire", "image_condition", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "building_collapse", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:58.397746+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:51.341505+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:01:57.828358+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:55.848403+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:52.319171+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:57.106606+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:56.524293+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:58.119416+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:56.810827+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:56.234217+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:57.456353+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:58.716948+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection in Rio de Janeiro. There are cars, trees, and buildings in the image. The road is partially blocked by a fallen tree."}]}, {"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-06T00:01:12.413360+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "building_collapse", "inside_tunnel", "road_blockade", "fire", "landslide", "road_blockade_reason", "alert_category", "brt_lane"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-05T23:59:08.157232+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:09.796456+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:08.369496+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:04.569495+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with no visible obstructions or issues. The road is dry with no signs of water or flooding. There are no vehicles or pedestrians visible in the image."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:09.276656+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:04.286048+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:08.585085+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:59:09.566947+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:10.060655+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:08.855336+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:09.062711+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:05.074466+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:01:09.860108+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "inside_tunnel", "road_blockade_reason", "road_blockade", "alert_category", "fire"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:02:03.523835+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:01.655860+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:03.334520+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:03.743357+00:00", "label": "null", "label_explanation": "The image shows a night view of a city intersection. There is a white car and a motorcycle on the road. The traffic light is green. There are no people on the street. The buildings are tall and brightly lit."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.918271+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:58.627089+00:00", "label": "false", "label_explanation": "The image does not show any lanes marked or designated for bus rapid transit use."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.846822+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.825646+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:02.355375+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:02.136067+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:02.614212+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:02:03.045490+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:01:15.190169+00:00", "objects": ["traffic_ease_vehicle", "fire", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "landslide", "inside_tunnel", "water_in_road", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:03.334243+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:02:03.051101+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:58.531442+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:03.741394+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with a tree in the center. There are no cars or people visible in the image. The road is lined with trees and buildings. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:01.635696+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:02.350382+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:03.543841+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.836009+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.835031+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.831443+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:02.148572+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:02.544691+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:43.810059+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:48.895794+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:43.535223+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:49.362360+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There are cars, motorcycles, and people crossing the intersection. The street is lit by streetlights. There are buildings and trees on either side of the street."}, {"object": "fire", "timestamp": "2024-02-06T00:01:48.669127+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:44.245458+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:48.451908+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:47.448484+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:48.232196+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:47.680206+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:47.184909+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:49.134628+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:47.960895+00:00", "label": "water_puddle", "label_explanation": "There is a large puddle of water on the road."}]}, {"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-06T00:03:45.583987+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "alert_category", "inside_tunnel"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:01:44.304057+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.111461+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:01:45.873534+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:44.883023+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.394950+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.094518+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:44.608123+00:00", "label": "true", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.083098+00:00", "label": "difficult", "label_explanation": "There is presence of significant, larger puddles. The puddles are large and indicative of significant water accumulation."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:46.674820+00:00", "label": "null", "label_explanation": "The image is showing a road with cars driving in both directions. There are street lights on the side of the road and a building with a sign that says 'CAIXA' in the background. The road is wet from the rain and there are some puddles on the road. There is a white car driving in the foreground."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:45.616847+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.385554+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:40.402920+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}]}, {"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-06T00:03:49.365914+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:29.549762+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:30.027144+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a yellow car driving through the intersection. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:28.145204+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:28.402536+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:24.816818+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:27.932570+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:23.931635+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:28.917346+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-06T00:01:29.328291+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:28.659970+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:29.127627+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:29.831526+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:43.033243+00:00", "objects": ["image_description", "building_collapse", "brt_lane", "landslide", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "water_in_road", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:01:43.885272+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of accidents, fires, or landslides. The road is dry and there is no water on the road. The image is clear and there are no issues that would interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:42.963319+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:38.883957+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:43.677866+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:38.247559+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:42.678708+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:01:43.155100+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:42.468713+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:42.059649+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:42.270297+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:41.852595+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:43.372928+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}]}, {"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-06T00:03:54.768848+00:00", "objects": ["inside_tunnel", "image_condition", "fire", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "brt_lane", "water_in_road", "alert_category", "building_collapse", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:40.327401+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:44.039832+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:01:45.542520+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:45.746359+00:00", "label": "easy", "label_explanation": "The road surface is mostly dry, with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:44.522565+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:44.748980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.038242+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:44.251231+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.043025+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:45.336944+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.033428+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:46.234155+00:00", "label": "null", "label_explanation": "A night-time image of a wide, straight road with a pedestrian crossing. There is a green area to the left of the road and a building with a white wall to the right. A motorcycle is driving in the right lane, and a car is driving in the left lane in the foreground. There are no other vehicles visible in the image. The road is well-lit, and the weather is clear."}]}, {"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-06T00:00:47.512508+00:00", "objects": ["water_in_road", "road_blockade_reason", "road_blockade", "image_description", "alert_category", "building_collapse", "fire", "inside_tunnel", "brt_lane", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:01:45.312685+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.797858+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.600995+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:55:49.719696+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a central reservation. Street lights are on, and there are trees on either side of the road. There are cars and motorbikes on the road, and the road surface is dry. There are buildings and shops on either side of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:46.178580+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:46.385098+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.661946+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:41.364851+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:42.070128+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:45.072601+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:47.185274+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.879199+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can easily pass through."}]}, {"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-06T00:00:57.988678+00:00", "objects": ["inside_tunnel", "fire", "building_collapse", "road_blockade", "water_in_road", "alert_category", "brt_lane", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:56.215185+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:02:00.553774+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:00.362201+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:59.850215+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:59.567040+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:00.234461+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:56.931490+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:59.352769+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:00.060023+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:00.841021+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:01.048523+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:01.363419+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There are people walking on the sidewalk and street. There are cars parked on the side of the road. There are buildings and trees in the background."}]}, {"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-06T00:00:41.606972+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade_reason", "fire", "image_condition", "inside_tunnel", "building_collapse", "road_blockade", "image_description", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:45.689030+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:44.285684+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.301619+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:44.705295+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:45.485272+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:44.021580+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:40.585077+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:45.214895+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:44.486689+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:46.183199+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. The road is dry and there are no signs of water or puddles. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:44.975194+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:45.896242+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:03:53.312395+00:00", "objects": ["building_collapse", "road_blockade", "road_blockade_reason", "inside_tunnel", "brt_lane", "water_in_road", "landslide", "image_condition", "alert_category", "traffic_ease_vehicle", "fire", "image_description"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:01:46.325940+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.602905+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.836973+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:41.529364+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:42.229671+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:45.348661+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:47.127535+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:45.131803+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:00.402394+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:01.855434+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. There are no large puddles or significant water accumulation."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.622214+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:02.580460+00:00", "label": "null", "label_explanation": "The image shows a night view of a city intersection. There are no cars on the road and the traffic lights are green. The street is lit by streetlights."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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-06T00:03:06.300703+00:00", "objects": ["inside_tunnel", "image_description", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "road_blockade_reason", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:16.807367+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:25.208276+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, landslides, fires, or other problems. The road surface is dry and there are no signs of water on the road. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:24.496019+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:24.722272+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:22.449865+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:24.958411+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:22.696478+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:17.710905+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:22.968081+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:24.249072+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:23.226471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:23.522943+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, landslides, fires, or other problems."}]}, {"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-05T23:49:48.495178+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "fire", "building_collapse", "brt_lane", "image_description", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T23:50:26.384404+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:50:31.580597+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, insignificant puddles. Traffic can easily pass through without any difficulty."}, {"object": "fire", "timestamp": "2024-02-05T23:50:31.273012+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas indicating a fire."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:50:31.073430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:50:27.079936+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-05T22:46:16.600515+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, obstructions, or signs of trouble. The road surface is dry and free of debris. There are no people or vehicles visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-05T23:50:29.890843+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions in the image."}, {"object": "landslide", "timestamp": "2024-02-05T23:50:31.768321+00:00", "label": "false", "label_explanation": "There is no evidence of landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:50:30.383438+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:50:30.581838+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:50:30.154517+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-05T23:50:30.885026+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that might affect city life. The image shows a clear road with no blockades or disruptions."}]}, {"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-06T00:03:06.845370+00:00", "objects": ["landslide", "brt_lane", "water_in_road", "road_blockade_reason", "inside_tunnel", "alert_category", "fire", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_condition", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:26.479341+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:18.880751+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lane is not marked or designated for bus rapid transit use."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:24.621571+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:25.214396+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:18.114467+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:25.509610+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockades or other issues."}, {"object": "fire", "timestamp": "2024-02-06T00:01:26.033065+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:24.900815+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:26.266025+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:25.765456+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:24.190199+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:26.713266+00:00", "label": "null", "label_explanation": "The image is of a road with a clear sky. There are no signs of any issues or blockades. The road is dry and there are no visible vehicles or pedestrians."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:03:09.664540+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "landslide", "building_collapse", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:03:53.541455+00:00", "label": "free", "label_explanation": "There is some water on the road, but it is not enough to block traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:03:49.127093+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:03:53.228738+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-06T00:03:52.963767+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:03:54.150667+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:03:45.904432+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:03:54.436730+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:03:54.735533+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:00:59.549532+00:00", "label": "null", "label_explanation": "The image shows a clear view of a road with trees on either side. There are no visible obstructions or signs of accidents or hazards. The road is dry and there are no signs of water accumulation or flooding. The image quality is good and there are no distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:03:52.047921+00:00", "label": "easy", "label_explanation": "There is some water on the road, but it is not enough to impede traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:03:53.832488+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:03:48.254171+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:27.630661+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "alert_category", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:11.181284+00:00", "label": "impossible", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:11.411870+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:10.687890+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:06.700867+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:10.478858+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:09.507809+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:09.715173+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:11.672972+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road with cars parked on the side and a person crossing the road. There is a tree on the sidewalk and a fallen tree blocking part of the road. The street lights are on."}, {"object": "fire", "timestamp": "2024-02-06T00:02:10.903061+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:09.993684+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:06.014408+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:10.203066+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}]}, {"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-06T00:01:21.115269+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "brt_lane", "image_condition", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:06.489109+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:07.389462+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-06T00:02:07.186636+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:07.679513+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:03.011562+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:05.793735+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:06.695320+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:06.021358+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:07.887531+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are several food stalls and people on the sidewalk. There is a road with cars parked on the side. The road is not blocked and traffic is flowing smoothly."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:06.288980+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:06.983218+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:02.284615+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:01:24.861657+00:00", "objects": ["image_description", "road_blockade", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "water_in_road", "fire", "building_collapse", "landslide", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:02:19.536378+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street in Rio de Janeiro. There are cars, buses, and people crossing the street. The street is well-lit and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:17.730219+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:17.215925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:18.235710+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:14.028548+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with the respective signage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:13.209976+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:17.515890+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:02:18.739872+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:18.532032+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:19.340787+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:19.036237+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:18.016166+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:22.779252+00:00", "objects": ["inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "road_blockade", "image_description", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:09.891654+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:10.599477+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with the label 'BRT'."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:13.689783+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:59:14.864198+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:14.160187+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:14.370984+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:13.395796+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:13.886555+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:15.577762+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The road is wet from the rain, but there are no major puddles or blockages. The buildings along the street are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:15.289574+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:15.081675+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:14.598530+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}]}, {"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-06T00:01:22.167408+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "fire", "water_in_road", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-05T23:53:09.575104+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:08.879868+00:00", "label": "false", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:13.273261+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no signs of flooding, accidents, or other disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:53:12.770703+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:14.181929+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:13.972664+00:00", "label": "easy", "label_explanation": "There is minimal water on the road. There are small, insignificant puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:13.483845+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:14.369335+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance. The road is clear, with no signs of flooding, accidents, or other disruptions. There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:13.005104+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-05T23:53:13.667543+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:12.501927+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are small, insignificant puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:53:12.291697+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:09.738301+00:00", "objects": ["alert_category", "image_description", "brt_lane", "fire", "inside_tunnel", "water_in_road", "landslide", "image_condition", "traffic_ease_vehicle", "building_collapse", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:02:00.942769+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:07.077338+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars, trucks, and people crossing the road. There are some trees on the side of the road and buildings in the background. The street is lit by streetlights."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:57.237036+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:02:01.399503+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:56.529489+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:00.224503+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:01.820667+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:00.033473+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:01.610253+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:01.201588+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:00.501012+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:00.708955+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:09.193718+00:00", "objects": ["alert_category", "traffic_ease_vehicle", "landslide", "inside_tunnel", "fire", "brt_lane", "road_blockade_reason", "image_condition", "building_collapse", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:02:02.227704+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:03.035381+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:03.356194+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.109679+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:02:02.729045+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:57.838007+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:02.004177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:01.148403+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.516236+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:03.647956+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The traffic lights are green and there are no signs of congestion. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.429998+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:01.708082+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:01:11.289396+00:00", "objects": ["road_blockade", "alert_category", "road_blockade_reason", "water_in_road", "image_condition", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T23:53:10.776193+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:53:11.208499+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:53:11.004766+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:53:10.504259+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:53:10.303487+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:53:07.598126+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:53:11.416848+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-05T23:53:11.673268+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:53:11.895444+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T23:53:12.091023+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:53:06.903143+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-05T23:53:12.318449+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy urban intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The traffic lights are green for both directions. There are buildings and trees on either side of the intersection. The image is clear and well-lit."}]}, {"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-06T00:01:16.779947+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:05.946998+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:06.456452+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:01.559095+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-05T23:59:06.666346+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:06.938614+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:05.455309+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:02.362433+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:05.662444+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:07.067105+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:05.171471+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:06.188971+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:07.371509+00:00", "label": "null", "label_explanation": "A night-time image of a street in Rio de Janeiro. There is a bus driving in the foreground, and a car is parked on the side of the road. A woman is standing on the sidewalk, and there are a few trees in the background."}]}, {"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-06T00:01:14.343116+00:00", "objects": ["image_description", "building_collapse", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "brt_lane", "image_condition", "landslide", "inside_tunnel", "water_in_road", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:02:03.070072+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a central reservation. There are trees on either side of the road and street lights along the roadside. The road is dry and there is no traffic visible."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:02.117871+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:02.587080+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:02:01.379959+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and there are no signs of traffic disruption."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:01.606806+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:58.092257+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:00.874362+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:02.806485+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:57.471682+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:01.107144+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "fire", "timestamp": "2024-02-06T00:02:02.372305+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:01.870837+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:15.365663+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "landslide", "image_condition", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.839740+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:26.426181+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:20.747172+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:26.664299+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.570379+00:00", "label": "true", "label_explanation": "The image shows a dedicated lane for bus rapid transit (BRT) with a sign indicating 'BRT'."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:26.212194+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:26.984951+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There are no traffic lights visible. The road is well-lit and there are no visible obstructions. The road surface is dry and there are no signs of water accumulation. There are a few cars and buses on the road, all of which are moving slowly. There are also a few people walking on the sidewalk. The image is clear and there are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:23.092193+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, accidents, fires, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:23.956198+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:12.708349+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.430789+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:25.913071+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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-06T00:03:17.025577+00:00", "objects": ["landslide", "alert_category", "image_condition", "brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "fire", "inside_tunnel", "road_blockade_reason", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:01:27.564482+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:26.650386+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:25.480608+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:22.399490+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:25.932876+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:27.346751+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:26.187547+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:27.759468+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are no cars on the road and the street is lit by streetlights. There are trees and buildings on either side of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:01:27.151226+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:21.760457+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:26.454839+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:26.870810+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:01:16.505647+00:00", "objects": ["water_in_road", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade", "inside_tunnel", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-05T23:59:02.193471+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:02.747997+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:02.982610+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:03.874004+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:03.272267+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:04.389109+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear night sky. There are trees and buildings on either side of the road. The road is well-lit and there is no traffic. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:02.467674+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:58.659151+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:01.971818+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:58:59.359237+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:04.097291+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-05T23:59:03.574736+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:00:56.527728+00:00", "objects": ["road_blockade", "brt_lane", "image_description", "inside_tunnel", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.346891+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.772009+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:47.046210+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There is a bus driving through the intersection, and several cars are parked on the side of the road. The street is lit by streetlights, and there are trees and buildings in the background. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:41.041792+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:46.062120+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:45.068106+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.344222+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.551923+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.844637+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:44.852681+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.547303+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.828312+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:06.216622+00:00", "objects": ["image_description", "building_collapse", "road_blockade", "image_condition", "fire", "landslide", "inside_tunnel", "brt_lane", "alert_category", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T23:59:11.190510+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars and a bus driving on it. There are trees and buildings on either side of the street. There are also some people walking on the sidewalk. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:10.174085+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:09.470367+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:08.977270+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-05T23:59:10.387173+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:10.971071+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:59:05.092991+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:06.101637+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:09.892447+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:10.682863+00:00", "label": "easy", "label_explanation": "The road is clear with no water on it."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:09.678900+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:59:09.188583+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:01:37.834450+00:00", "objects": ["road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "brt_lane", "inside_tunnel", "fire", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:02:19.990536+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-06T00:02:20.454095+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:02:21.158224+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:02:20.666195+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:02:21.573304+00:00", "label": "null", "label_explanation": "A night-time view of a street with cars parked on the side and a gas station on the left. There is a black car driving in the foreground and a white car in the background. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:02:20.179224+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:02:19.548863+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:02:19.783094+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:02:16.672716+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:02:15.980408+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:02:20.946253+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:02:21.361498+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:05.751339+00:00", "objects": ["road_blockade", "inside_tunnel", "alert_category", "fire", "brt_lane", "landslide", "water_in_road", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-05T23:56:20.293574+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:56:16.698288+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-05T23:56:20.685810+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-05T23:56:21.089307+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:56:17.314230+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-05T23:56:21.519057+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:56:20.151448+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:56:20.513454+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-05T23:56:21.814895+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a white car driving through the intersection and a silver car parked on the side of the road. The street is lit by streetlights and there are trees on either side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:56:21.308849+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:56:19.896457+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:56:20.800827+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:01:13.769824+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "road_blockade", "building_collapse", "landslide", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-05T23:59:00.727709+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:54.921186+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:58:55.631703+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-05T23:58:58.734386+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:58:59.920972+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:00.194717+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:58:59.225890+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-05T23:58:59.435117+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:58:58.940852+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:58:59.711675+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:00.472503+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-05T23:58:58.512851+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-06T00:00:59.101435+00:00", "objects": ["road_blockade_reason", "brt_lane", "water_in_road", "road_blockade", "building_collapse", "fire", "image_description", "inside_tunnel", "image_condition", "alert_category", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:01:45.428815+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:01:41.538487+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:01:44.921637+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:01:45.133409+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:01:45.862699+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:01:46.124086+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:01:46.831491+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars, buses, and people on the street. The street is lit by streetlights. There are buildings on either side of the street. The buildings are tall and brightly lit. The sky is dark and cloudy."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:01:40.862720+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:01:44.612860+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:01:45.613642+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:01:46.342867+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-06T00:01:46.549749+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:01:13.992161+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "road_blockade_reason", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-05T23:59:03.619988+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-05T23:59:03.833080+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-05T23:59:03.342363+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-05T23:59:04.048830+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-05T23:59:04.830467+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-05T23:58:59.536764+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-05T23:59:00.263497+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-05T23:59:04.323151+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-05T23:59:04.539182+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-05T23:59:05.318051+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-05T23:59:05.692251+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There is a traffic light at the intersection, showing red for the cars coming from the left side of the image. There is a statue in the middle of the intersection. The road is wet from rain, but there are no major puddles or blockages. There are cars and people crossing the intersection. The image is clear and well-lit."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-05T23:59:05.042242+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file +[{"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-06T00:37:04.797427+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "alert_category", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:44.312868+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:41.316004+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:44.614016+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:43.311853+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:44.107484+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:41.836768+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:42.328902+00:00", "label": "false", "label_explanation": "There are no signs of water on the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:00.329576+00:00", "label": "null", "label_explanation": "The image shows a wide, two-lane road with a tree-lined median. There is a car parked on the side of the road. The road is lit by streetlights. The image is clear and there are no obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.593018+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:58.423381+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:42.603211+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:43.521637+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-06T00:37:05.107006+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "brt_lane", "image_condition", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.249865+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:59.815798+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.741341+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.537759+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:55.344730+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:44.057652+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:59.124079+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:44.460492+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:00.244602+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are people walking around, and there are some food stalls set up. There are also some trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:58.639869+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:59.338884+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:43.235135+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:37:04.249227+00:00", "objects": ["image_description", "road_blockade", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "water_in_road", "fire", "building_collapse", "landslide", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:35:08.372849+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is well-lit and there are no obvious signs of any problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:35:06.584781+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:35:06.100136+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:35:07.092381+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:35:03.215858+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:35:02.408960+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:35:06.382451+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:35:07.584581+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:35:07.369859+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:35:08.093809+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:35:07.860116+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:35:06.864119+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:37:04.199570+00:00", "objects": ["inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "road_blockade", "image_description", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:59.881518+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:35:00.501197+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:35:03.675794+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:35:04.873662+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:35:04.163883+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:35:04.376731+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-06T00:35:03.471333+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:35:03.886023+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:05.601207+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are a few cars and buses on the road, and people are walking on the sidewalks. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-06T00:35:05.294623+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:35:05.078336+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:35:04.610400+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:37:02.278433+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "fire", "water_in_road", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:36.564959+00:00", "label": "false", "label_explanation": "There is no BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:35.857764+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:40.861647+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:40.345588+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:41.893316+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:41.636580+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:41.153160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:42.152693+00:00", "label": "null", "label_explanation": "The image shows a road with cars driving in both directions. There are trees on either side of the road and buildings in the background. The road is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:40.644609+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.367401+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.154719+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:39.849913+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:01.165017+00:00", "objects": ["water_in_road", "road_blockade", "inside_tunnel", "image_condition", "alert_category", "road_blockade_reason", "traffic_ease_vehicle", "fire", "building_collapse", "brt_lane", "landslide", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:00.443397+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:00.630951+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:40.554446+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:58.881561+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:01.131211+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:00.916503+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:07.108363+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the surface."}, {"object": "fire", "timestamp": "2024-02-06T00:37:04.257263+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:01.328773+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:41.311049+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:07.831175+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:08.412361+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There is a fence on the right side of the road and a few trees on the left side. The road is lit by streetlights."}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:32.621634+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.365720+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:24.083730+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:29.875128+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are cars parked on the side of the road and a few people walking around. The traffic lights are green and there is a building in the background."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.165360+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:24.872639+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:28.874607+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:27.974065+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.662311+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.177755+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:27.687975+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.573432+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.404796+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:25.078117+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "landslide", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:17.912546+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:18.373109+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are a few cars parked on the side of the road and some trees on the sidewalk. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:16.474767+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:16.691109+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:13.502673+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:16.269707+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:12.790499+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:17.193963+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:37:17.682443+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:16.965340+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:18.179836+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:17.411178+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:36:27.393257+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:26.690450+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:23.777280+00:00", "label": "false", "label_explanation": "There is no BRT lane."}, {"object": "fire", "timestamp": "2024-02-06T00:37:28.178063+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:27.211215+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, and there are no signs of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:28.707877+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear, and there are no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:27.403370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, and there are no signs of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:26.974609+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry, and there are no signs of any puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:28.441960+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry, and there are no signs of any puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:28.979614+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are street lights on, and the road is wet from the rain. There are cars driving on the road, and the traffic is moderate. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:27.897064+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact, and there are no signs of any damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:23.003780+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is surrounded by buildings and trees, and there are no visible signs of a tunnel."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:27.680316+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, and there are no signs of any problems."}]}, {"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-06T00:36:26.842461+00:00", "objects": ["image_description", "building_collapse", "brt_lane", "inside_tunnel", "landslide", "alert_category", "fire", "road_blockade_reason", "water_in_road", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:14.174442+00:00", "label": "null", "label_explanation": "The image shows a dark tunnel with no visible light sources. The walls of the tunnel are made of concrete and there is a slight curve to the left."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:13.282373+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there are no signs of damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:10.208067+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:08.868706+00:00", "label": "true", "label_explanation": "The image shows a dark tunnel with no visible light sources. The walls of the tunnel are made of concrete and there is a slight curve to the left."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:13.970687+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no debris on the side of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:13.057794+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear and there are no obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:13.474897+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:12.853481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:12.385189+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:12.583412+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:12.168828+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:13.693455+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}]}, {"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-06T00:37:01.833396+00:00", "objects": ["inside_tunnel", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:19.633670+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:22.712744+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:34:24.014109+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:24.223016+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:20.929399+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:23.125887+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:23.332796+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:22.907911+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:23.541544+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:23.803300+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:24.430939+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:24.707894+00:00", "label": "null", "label_explanation": "A night view of a tunnel in Rio de Janeiro. The tunnel is well-lit and there are no cars visible. The road is dry and there are no signs of construction or other hazards."}]}, {"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-06T00:36:27.914657+00:00", "objects": ["inside_tunnel", "fire", "building_collapse", "road_blockade", "water_in_road", "alert_category", "brt_lane", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:12.271813+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:16.884970+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:16.683732+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:15.979196+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:15.758736+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:16.461480+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:12.862552+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:15.552657+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:16.245264+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:17.156570+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. Traffic can flow freely."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:17.399819+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:17.660781+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are people walking on the street and some cars parked on the side. There are also some trees and buildings in the background. The street is lit by streetlights."}]}, {"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-06T00:36:30.495701+00:00", "objects": ["water_in_road", "road_blockade_reason", "road_blockade", "image_description", "alert_category", "building_collapse", "fire", "inside_tunnel", "brt_lane", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:12.915256+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:13.485150+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:13.211391+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:14.987516+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars driving in both directions. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:13.682879+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:13.976605+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:14.192845+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:09.022483+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:09.707475+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:12.676219+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:14.701240+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:14.413198+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-06T00:36:28.048529+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "water_in_road", "road_blockade_reason", "fire", "image_condition", "inside_tunnel", "building_collapse", "road_blockade", "image_description", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:24.944055+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:20.151835+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:23.448867+00:00", "label": "false", "label_explanation": "There are no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:23.967025+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:24.670827+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:23.232247+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:19.442919+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:24.446766+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:23.661290+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:33.442209+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with no cars. The street is lit by streetlights. There are trees on either side of the street. The image is clear and there is no blur."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:24.241355+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:25.158617+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:34.054540+00:00", "objects": ["building_collapse", "inside_tunnel", "brt_lane", "road_blockade", "road_blockade_reason", "water_in_road", "landslide", "image_condition", "alert_category", "traffic_ease_vehicle", "fire", "image_description"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:37:24.429184+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:19.816883+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:20.502533+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:23.696909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:23.963226+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:23.494415+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:25.206900+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:23.233039+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:24.230441+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no signs of accidents, fires, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:24.931190+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water or other obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:24.710970+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:25.410439+00:00", "label": "null", "label_explanation": "The image shows a night view of an urban area. There are no cars on the road and the street lights are on. The image is clear and there are no obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:58.893563+00:00", "objects": ["brt_lane", "image_condition", "water_in_road", "road_blockade", "road_blockade_reason", "inside_tunnel", "image_description", "traffic_ease_vehicle", "alert_category", "landslide", "building_collapse", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.745487+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.683297+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.895571+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.109476+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.380563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.826579+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:11.726093+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars parked on the side of the road and a few people walking around. The street is well-lit and there are no signs of any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.294054+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.602117+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.503248+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:10.799825+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.089220+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:35:53.795644+00:00", "objects": ["image_condition", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "building_collapse", "traffic_ease_vehicle", "fire", "road_blockade_reason", "landslide", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:08.566408+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.854111+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:04.475201+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.142039+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:09.634203+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or signs of trouble."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:05.270306+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.835667+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.410910+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. Vehicles can pass without difficulty."}, {"object": "fire", "timestamp": "2024-02-06T00:37:10.042008+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.348635+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:10.630570+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:10.886837+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, obstructions, or signs of trouble. The road surface is dry and there are no visible markings or signs."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:43.144849+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "traffic_ease_vehicle", "image_description", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:30.486347+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:31.731417+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:30.221188+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:31.488788+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:31.992632+00:00", "label": "null", "label_explanation": "The image shows a cyclist riding on a bike lane. There are cars parked on the side of the road and a few people walking on the sidewalk. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:29.707246+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:31.205357+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:30.691799+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:30.999087+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:30.000844+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:26.674386+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:25.882572+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:36:25.103436+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:11.725163+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:13.700543+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:13.962189+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There is a white car driving on the right side of the road. There are trees and buildings on either side of the road. The image is well-lit and the weather is clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:12.495565+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:08.078063+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:13.198258+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:12.206995+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:12.967971+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:08.780863+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:11.970135+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:12.687437+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:13.395227+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow smoothly."}]}, {"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-06T00:36:40.551989+00:00", "objects": ["image_description", "landslide", "alert_category", "building_collapse", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:30.030576+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy urban intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The traffic lights are red and yellow. The street is lit by streetlights. The buildings are tall and brightly lit. The sky is dark and cloudy."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.824702+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.848923+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:29.125430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:24.449714+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:25.142231+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:28.227580+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.351900+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.444270+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:27.967047+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.541928+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.635029+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:39.454637+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "building_collapse", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:27.291094+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:26.802491+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:25.498292+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:26.378639+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:26.599820+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no signs of damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:25.902444+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:25.683279+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:27.078422+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:27.502711+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is well-lit and there is moderate traffic. There are a few trees and buildings in the background. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:22.086189+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:26.106712+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:22.788064+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}]}, {"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-06T00:36:24.943316+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:29.482778+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:25.993201+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:31.070798+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:26.704424+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:30.186580+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:28:31.675761+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 person crossing the street in the foreground."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:30.657163+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:29.689818+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:30.874888+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:30.379540+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:29.980491+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:31.327634+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:31.543121+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:37:19.861234+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:18.611130+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:20.863211+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of water accumulation. The road is surrounded by trees and buildings, and the sky is clear."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:18.877583+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-06T00:37:20.094614+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:19.081308+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:20.362819+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:19.594531+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:14.890651+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:20.602734+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:19.368355+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:15.591098+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:36:29.918077+00:00", "objects": ["inside_tunnel", "image_condition", "alert_category", "building_collapse", "fire", "image_description", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:24.668749+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:28.062143+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.946121+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:29.163028+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.433184+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:29.192756+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a red car driving on it. The road is surrounded by trees and buildings. The sky is clear and blue."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:28.347334+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.738822+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.646184+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:25.349084+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.535291+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.860936+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:36.673456+00:00", "objects": ["water_in_road", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_condition", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:27.819935+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.332460+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:23.746771+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:24.506482+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.717602+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:29.044651+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.822935+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:27.598863+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.135169+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.601903+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.429873+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:30.025167+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a bus driving on the road, and a person is walking on the sidewalk. There are buildings on either side of the road, and trees are lining the sidewalk. The image is well-lit, and the weather is clear."}]}, {"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-06T00:36:35.279410+00:00", "objects": ["image_description", "landslide", "inside_tunnel", "road_blockade_reason", "fire", "water_in_road", "road_blockade", "brt_lane", "building_collapse", "traffic_ease_vehicle", "image_condition", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:34:35.995640+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars and buses on the street, and people are walking on the sidewalk. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:33.763662+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:27.775526+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:32.192943+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:33.271772+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:31.694378+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:31.976747+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:28.484338+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:32.926509+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:33.494146+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:31.489438+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:32.479535+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}]}, {"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-06T00:36:37.860117+00:00", "objects": ["image_condition", "road_blockade_reason", "inside_tunnel", "brt_lane", "landslide", "fire", "building_collapse", "water_in_road", "road_blockade", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:30.671549+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:31.376566+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:27.076159+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:27.782818+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:32.590548+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:32.161684+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:31.912575+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:30.883915+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:31.155765+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:31.585701+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:32.853122+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is well-lit and there are no obvious signs of any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:32.361813+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:37:00.281397+00:00", "objects": ["brt_lane", "image_condition", "traffic_ease_vehicle", "alert_category", "image_description", "inside_tunnel", "water_in_road", "fire", "landslide", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:37.359246+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:40.230146+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:41.926209+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:41.201873+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:42.406349+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a bike lane on the right side, separated by a painted line. On the left side of the road, there is a sidewalk lined with trees. In the background, there are tall buildings and street lights. The road is well-lit and there is no traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:36.545890+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.507586+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.637490+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.134024+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:40.930479+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:41.412530+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:40.722948+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or puddles that interfere with traffic."}]}, {"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-06T00:36:56.197280+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:34:23.235604+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:24.223536+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:24.753522+00:00", "label": "easy", "label_explanation": "The road is completely clear with no obstacles or water."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:23.462281+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:23.951851+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:23.729788+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:22.959390+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:24.456730+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:25.248388+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image is clear."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:25.498783+00:00", "label": "null", "label_explanation": "A night view of a road tunnel in Rio de Janeiro. On the left side of the road, there is a wall with graffiti. On the right side, there is a grassy area and a fence. There are no cars on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:22.768128+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:25.017248+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of damage."}]}, {"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-06T00:36:54.698087+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_condition", "image_description", "road_blockade", "landslide", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:40.247234+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:41.003815+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:43.608402+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:44.430095+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:43.847718+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:39.140541+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:42.230781+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:44.108565+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:54.974655+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection. There are cars driving on the road and the street lights are on. The road is dry and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:43.079565+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:38.926722+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:41.712137+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-06T00:36:54.459947+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "inside_tunnel", "water_in_road", "building_collapse", "fire", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:42.484540+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:37.712960+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:42.992757+00:00", "label": "null", "label_explanation": "The image shows a night view of a street corner in Rio de Janeiro. The street is lit by streetlights and there are trees on either side of the road. There is a building in the background and a park to the right of the road. The road is empty, with no cars or pedestrians visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:36.972929+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.991551+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:41.988267+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:42.207582+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.783014+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:40.799234+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:41.271905+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:41.489570+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:41.772855+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-06T00:36:55.761366+00:00", "objects": ["landslide", "inside_tunnel", "fire", "image_condition", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "building_collapse", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:43.065251+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:37.516238+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:42.530160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:41.110509+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:38.210826+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:42.015815+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:41.540122+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:42.761892+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:41.817265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:41.313464+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:42.230921+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:43.311442+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There are trees and buildings on either side of the road. The road is well-lit and there are no visible obstructions."}]}, {"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-06T00:36:54.190842+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_in_road", "image_description", "building_collapse", "inside_tunnel", "road_blockade", "fire", "landslide", "road_blockade_reason", "alert_category", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:58.249506+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water or puddles. Vehicles can easily pass through without any difficulty."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:42.679068+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:43.184506+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:56.431818+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:57.758206+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:43.548489+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:57.060468+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:42.456756+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.176809+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.603921+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:57.539108+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:44.267480+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:36:59.458266+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "inside_tunnel", "road_blockade_reason", "road_blockade", "alert_category", "fire"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:38.209769+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:42.815909+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:44.508697+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:00.347619+00:00", "label": "null", "label_explanation": "The image shows a night view of a city intersection. There is a yellow taxi on the left side of the image, and other vehicles in the background. The road is dry and there are no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:43.013214+00:00", "label": "false", "label_explanation": "There are no signs of water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:40.011914+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:44.105928+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:39.309002+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:43.545165+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:43.213953+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and there are no signs of traffic disruption."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:43.854274+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:37:44.313967+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:37:04.442922+00:00", "objects": ["traffic_ease_vehicle", "fire", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "landslide", "inside_tunnel", "water_in_road", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:35:04.410783+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-06T00:35:04.131545+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:59.709280+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:29:02.317502+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions. There is a tree on the side of the road, and a few cars are parked on the side of the road. The image is well-lit, and the colors are accurate."}, {"object": "image_condition", "timestamp": "2024-02-06T00:35:02.757622+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:35:03.516192+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:35:04.629489+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:59.012245+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:35:03.014247+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:35:03.923149+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:35:03.226351+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:35:03.714314+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:04.166835+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "image_description", "brt_lane", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:37:10.313083+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.532623+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.741965+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-06T00:37:10.523265+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.315479+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.026967+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-06T00:28:17.052954+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with a bridge in the background. There are no cars on the road and the street lights are on. The image is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:05.468365+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.034507+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.024952+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:04.555193+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.736839+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:24.892901+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:24.097749+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:20.314820+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:24.309381+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:25.313706+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:21.028872+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:25.117208+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:37:25.528709+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:24.817636+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:26.031189+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:26.301118+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with a few cars parked on the side. There are trees and buildings on either side of the street. The street is well-lit, and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:25.816472+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:24.605508+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:22.275272+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:37:27.014506+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:22.424475+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:27.818289+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:28.435083+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:29.038667+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are cars and a motorcycle on the road, and a few trees and buildings on the side of the road. The road is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-06T00:37:28.121705+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:23.240058+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:26.512718+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:26.721705+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:27.580403+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:27.304394+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:28.718528+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:30.152670+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "alert_category", "building_collapse", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:37:25.396847+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:25.894667+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:24.688798+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:24.023284+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:25.630559+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:24.415287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:21.188833+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:24.919353+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:25.115269+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:26.098169+00:00", "label": "null", "label_explanation": "A police car is chasing a motorcycle on a road at night. There is a white car on the side of the road. The road is wet from the rain."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:24.231721+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:20.494091+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:36:23.190080+00:00", "objects": ["water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "image_description", "image_condition", "building_collapse", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:29.514767+00:00", "label": "false", "label_explanation": "There is no presence of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:37:30.792837+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:29.785134+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:31.007721+00:00", "label": "impossible", "label_explanation": "The road is completely submerged with high water level, making it impassable for vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:30.013905+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:26.310965+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:31.506398+00:00", "label": "null", "label_explanation": "The image is showing a road with cars passing by. There are buildings on the left side of the road and a mountain on the right side of the road. The image is blurry and it is difficult to see the details."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:29.297485+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:30.518656+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:25.628195+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:31.226914+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:30.302903+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:36:20.855425+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "water_in_road", "image_description", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.381795+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:27.678874+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.165846+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.453247+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:27.968036+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:29.877045+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy road in Rio de Janeiro. The road is lined with trees and buildings, and there are cars and people moving in both directions. The image is clear and well-lit."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:24.669217+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.167338+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:28.879824+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:23.889769+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.673087+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.657214+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:14.575979+00:00", "objects": ["brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "landslide", "image_condition", "alert_category", "building_collapse", "image_description", "road_blockade", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.436880+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.138374+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.633029+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.635736+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.676563+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.837991+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.927741+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.925105+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.132217+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.109747+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a bus is driving in the middle of the road. There are also people walking on the sidewalk. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.415925+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.379949+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:35:56.743677+00:00", "objects": ["inside_tunnel", "brt_lane", "building_collapse", "fire", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:02.401089+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.466846+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.480030+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.809651+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:08.309481+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:09.293396+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.791331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:08.998511+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.082901+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.572056+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:10.501640+00:00", "label": "null", "label_explanation": "The image shows a wide road with cars driving in both directions. There are trees and buildings on either side of the road. The road is wet from rain, but there are no major puddles or blockages. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:10.280473+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:11.814693+00:00", "objects": ["inside_tunnel", "brt_lane", "image_condition", "fire", "road_blockade_reason", "alert_category", "building_collapse", "traffic_ease_vehicle", "road_blockade", "water_in_road", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:00.443975+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.523872+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:07.747148+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.194945+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:08.498538+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:08.708306+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.000395+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:09.407231+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.238902+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.012285+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:09.687158+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:09.897273+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": 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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:54.158892+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:10.311620+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left lane, behind the fallen tree. There are no people visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.487267+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:10.084705+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.710859+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:09.173456+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockades, water, or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:01.545299+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:08.204306+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.659568+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.373941+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:08.905146+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:09.858355+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.672451+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:56.174348+00:00", "objects": ["water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_description", "road_blockade", "inside_tunnel", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:34:48.374217+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:48.878234+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:49.784734+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:49.093503+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:49.302250+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:50.321171+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:48.596913+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:44.304561+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:48.141696+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:45.023567+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:50.062971+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:34:49.567011+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:36:48.092160+00:00", "objects": ["road_blockade", "brt_lane", "image_description", "inside_tunnel", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:34:42.223817+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:38.841318+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:43.958763+00:00", "label": "null", "label_explanation": "The image shows a night scene of a road intersection in Rio de Janeiro. There is a bus driving on the left side of the road, and cars driving in both directions. The road is partially blocked by a fallen tree. There are no people visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:38.033099+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:42.923108+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:41.946924+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:34:43.213398+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:42.448945+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:42.698876+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:41.710137+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:43.430056+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:43.698347+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:47.454717+00:00", "objects": ["image_description", "building_collapse", "road_blockade", "image_condition", "fire", "landslide", "inside_tunnel", "brt_lane", "alert_category", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:31:51.869284+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:41.782401+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:41.073856+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:40.571711+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.979108+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.473867+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:36.694405+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:37.493042+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:41.492651+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:42.262390+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:41.277002+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.780263+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:36:50.872154+00:00", "objects": ["road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "fire", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:34:45.441644+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:44.706640+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:46.625601+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:46.150416+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:47.042438+00:00", "label": "null", "label_explanation": "A night-time image of a street with a gas station on the left and a sports court on the right. There is a tree on the right side of the image and a street light in the middle of the road. The road is clear with no visible obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.092776+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:42.167981+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:42.794156+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:42.989200+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:43.862459+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.877738+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:41.595156+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:50.139154+00:00", "objects": ["road_blockade", "inside_tunnel", "alert_category", "fire", "brt_lane", "landslide", "water_in_road", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:37:42.268605+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:37.956841+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:42.738882+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.114089+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:38.845412+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.650991+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:41.960619+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:42.437331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:43.873842+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are no cars or pedestrians on the street. The street is lit by streetlights. There are buildings on both sides of the street. The buildings are mostly residential, with some commercial buildings on the ground floor. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:43.350246+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:41.777803+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:42.857903+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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-06T00:36:58.874460+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "road_blockade", "building_collapse", "landslide", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:34:55.438928+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There is a car accident on the road. There is a water puddle on the road. There are no people on the street."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:49.337525+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:50.155875+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:53.455278+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:34:54.738857+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:54.942764+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:53.945758+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:54.231756+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:53.737508+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:54.452591+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:55.166447+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:53.215927+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-06T00:36:45.418917+00:00", "objects": ["road_blockade_reason", "brt_lane", "inside_tunnel", "fire", "water_in_road", "road_blockade", "building_collapse", "image_description", "alert_category", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:49.344993+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:45.735212+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a sign indicating 'BRT'."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:43.860805+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:44.310959+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:48.812652+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:49.019449+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:49.831108+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:51.026179+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The traffic lights are green for the cars and red for the pedestrians. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:49.627169+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:50.431205+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:44.516598+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:44.106513+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:47.948500+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "road_blockade_reason", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:26.913338+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:27.124476+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:26.687318+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:27.397319+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:37:28.101105+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:23.115610+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:23.886243+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:27.604958+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic delays."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:27.886637+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:28.586153+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:28.840732+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking part of the road. There are cars and motorcycles on the road. There are buildings and trees on either side of the road. The sky is dark and cloudy."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:28.305690+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:11.972964+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "brt_lane", "image_description", "road_blockade_reason", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:07.512655+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:08.478646+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:08.989018+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:09.252037+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:08.746061+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:07.774251+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:08.237924+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:59.769582+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:00.446981+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:09.476508+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road with a BRT lane to the left. There are no blockades or obstacles on the road, and traffic is flowing smoothly. The image is clear and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:07.972187+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:07.232374+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:37:02.307677+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_description", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "alert_category", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:31:51.196646+00:00", "label": "moderate", "label_explanation": "There is some water on the road, but it is not enough to cause significant hindrance to vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:31:50.075633+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.246720+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:51.873460+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars, buses, and people on the street. The street is lit by streetlights. There are buildings on either side of the street. The buildings are mostly commercial, with a few residential buildings mixed in. The street is relatively clean and there is no visible litter."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.832499+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:43.349665+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.093104+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:31:50.698673+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:43.842430+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:31:50.490583+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:44.036315+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:44.548237+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:37:01.401466+00:00", "objects": ["inside_tunnel", "building_collapse", "image_condition", "road_blockade_reason", "brt_lane", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "landslide", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:44.422601+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:35:15.629141+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:43.732268+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.029801+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:35:11.432414+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:35:14.926367+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:35:15.414508+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:35:16.136636+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:16.628689+00:00", "label": "null", "label_explanation": "A night-time image of a road intersection. There is a white car driving through the intersection. The road is lit by streetlights. There are trees and buildings on either side of the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.247760+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.524356+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:44.238161+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:14.516103+00:00", "objects": ["brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_condition", "building_collapse", "water_in_road", "landslide", "road_blockade_reason", "alert_category", "fire", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:05.790840+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:00.433199+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.932600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.152472+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.449401+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:10.668210+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.737480+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.453204+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.230872+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.444120+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:10.950239+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:11.663333+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars parked on either side. Trees line the street, and a street light is visible in the background. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-06T00:36:09.377033+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "alert_category", "fire", "road_blockade_reason", "image_description", "building_collapse", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:04.252255+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.963279+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.567491+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.064967+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:37:10.612879+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.841037+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:03.478788+00:00", "label": "null", "label_explanation": "A night-time image of a street with a white car driving in the foreground. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:10.278168+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:08.996525+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.295487+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.078446+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.863657+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}]}, {"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-06T00:36:09.184519+00:00", "objects": ["brt_lane", "inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "water_in_road", "fire", "traffic_ease_vehicle", "building_collapse", "alert_category", "road_blockade", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:02.688226+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:45.494761+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with concrete walls and a metal railing on the right side. The space is illuminated by artificial lighting. These characteristics indicate that the image is taken inside a tunnel."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:50.875426+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:57.785018+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:36:59.521374+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:02.390686+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "fire", "timestamp": "2024-02-06T00:36:51.123928+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:04.256031+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a significant portion of the road, making it difficult for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:04.524069+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:04.737961+00:00", "label": "minor", "label_explanation": "The image shows a partially blocked road due to a large puddle of water. This could cause minor traffic disruptions, but it is not a major issue that would affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:03.033492+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a significant portion of the road, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:04.993142+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with concrete walls and a metal railing on the right side. The space is illuminated by artificial lighting. These characteristics indicate that the image is taken inside a tunnel. There is a large puddle of water on the road, which is partially blocking the road and making it difficult for vehicles to pass."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:00.719651+00:00", "objects": ["image_description", "traffic_ease_vehicle", "landslide", "water_in_road", "building_collapse", "fire", "road_blockade", "inside_tunnel", "alert_category", "image_condition", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:15.133034+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are a few cars parked on the side of the road and a bus driving in the middle of the intersection. The street is lit by streetlights and there are buildings on either side of the road. The buildings are mostly commercial and residential, with a few trees in between. The image is clear and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:14.329231+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:14.826472+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.537292+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:13.040920+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:13.642160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:11.150174+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:41.544147+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:12.418695+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.049002+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:42.814515+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:11.837865+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:35:58.936033+00:00", "objects": ["water_in_road", "alert_category", "inside_tunnel", "brt_lane", "image_description", "traffic_ease_vehicle", "road_blockade", "fire", "building_collapse", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.830848+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:09.536813+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:00.649706+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:01.942100+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:10.667759+00:00", "label": "null", "label_explanation": "The image is dark and not well lit. It is night time and the street lights are on. There are trees on either side of the road. The road is wet from the rain and there are some puddles. There is a car driving in the right lane and a motorcycle in the left lane. The motorcycle is driving in between cars that are stopped at a red light. The car is stopped behind the motorcycle."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.259015+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.036315+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.951645+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.740618+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:10.454136+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:08.567624+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.276299+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:01.520796+00:00", "objects": ["water_in_road", "alert_category", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "road_blockade_reason", "image_condition", "road_blockade", "fire", "landslide", "image_description", "building_collapse"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:05.573433+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:06.392029+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:07.197661+00:00", "label": "easy", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:02.442083+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:01.564019+00:00", "label": "false", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:06.143516+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:05.279463+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:05.800456+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:06.967247+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:07.620373+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:08.196215+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance. There is a small puddle of water on the road, but it is not significant and does not interfere with traffic. There is a designated bus rapid transit (BRT) lane on the left side of the road. The surrounding buildings are intact, with no signs of collapse or structural damage. There is no evidence of fire, landslides, or road blockades. The image is clear, with no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:06.763462+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:56.490834+00:00", "objects": ["road_blockade", "building_collapse", "landslide", "brt_lane", "inside_tunnel", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade_reason", "image_description", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.340224+00:00", "label": "free", "label_explanation": "There are no blockades or obstructions on the road. Traffic can flow freely."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.125060+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact and there are no signs of structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.840462+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:07.026203+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:06.180039+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.364377+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.637448+00:00", "label": "easy", "label_explanation": "There are no signs of flooding or water on the road. Vehicles can pass without difficulty."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.943954+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.645432+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.057083+00:00", "label": "null", "label_explanation": "The image shows a street scene with cars, motorcycles, and people crossing the road. There are trees on either side of the road and buildings in the background. The road is wet from rain."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.938946+00:00", "label": "poor", "label_explanation": "The image is slightly blurred but still clear enough to identify objects and potential issues."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.138725+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is mostly dry with a few small puddles that do not interfere with 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-06T00:35:56.539083+00:00", "objects": ["image_description", "image_condition", "inside_tunnel", "building_collapse", "landslide", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade", "brt_lane", "road_blockade_reason", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:33:46.588974+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a street light in the middle of the intersection. There are cars parked on the side of the road. The road is not very busy. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:40.611082+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:41.313644+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:33:45.588683+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:40.121554+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:36:40.351935+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:36:41.105305+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:33:46.083139+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:33:44.874542+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:42.813234+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:36:48.246127+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:01.492013+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:36:06.736067+00:00", "objects": ["brt_lane", "image_condition", "image_description", "inside_tunnel", "road_blockade_reason", "alert_category", "fire", "water_in_road", "road_blockade", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:07.778209+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.772035+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:13.290497+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There is a tall residential building on the left and a few trees on the right. The street is wet from the rain and there are some puddles on the road. There is a car driving on the right side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:07.069350+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:11.706563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:11.990220+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:37:12.572080+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:11.062981+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:11.298443+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:12.858466+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:13.065794+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:12.274183+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:04.093254+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "traffic_ease_vehicle", "fire", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.957085+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:11.217495+00:00", "label": "car_accident", "label_explanation": "There is a truck partially blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:12.313325+00:00", "label": "difficult", "label_explanation": "There is a truck partially blocking the road. This could cause minor traffic disruptions but is still navigable."}, {"object": "fire", "timestamp": "2024-02-06T00:37:12.032580+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.831769+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:11.010194+00:00", "label": "partially_blocked", "label_explanation": "There is a truck partially blocking the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.718838+00:00", "label": "null", "label_explanation": "A truck partially blocks the road after a car accident. The truck is in the middle of the intersection, blocking traffic in both directions. There is a car stopped behind the truck. The road is dry and there are no visible signs of damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:11.503666+00:00", "label": "minor", "label_explanation": "There is a truck partially blocking the road. This could cause minor traffic disruptions but is still navigable."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.725772+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.522523+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:12.523670+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.790511+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-06T00:36:01.426566+00:00", "objects": ["landslide", "alert_category", "image_condition", "brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "fire", "inside_tunnel", "road_blockade_reason", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:12.101099+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:11.083484+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.072388+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.494916+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.314968+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.878888+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.590771+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.382525+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars driving in both directions. There are trees on either side of the street and buildings in the background. The street is well-lit and there are no visible obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.616293+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.705380+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.879800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.314266+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:56.444292+00:00", "objects": ["alert_category", "building_collapse", "inside_tunnel", "image_description", "road_blockade", "fire", "brt_lane", "water_in_road", "road_blockade_reason", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:36:42.810367+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:36:45.494526+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:37.577089+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:36:58.846974+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 there are a few cars parked on the side of the road. There is a cyclist riding in the middle of the street. There are buildings and trees on either side of the street. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:36:41.716789+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:36:45.707481+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:38.221558+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:36:41.496176+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:36:42.149390+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:41.220925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:53.524913+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:36:48.488753+00:00", "label": "easy", "label_explanation": "The road is clear with no water or puddles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:42.908006+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:04:32.494920+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:04:27.173280+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:04:32.315625+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:04:32.088899+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, water, or other hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:04:28.002781+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:04:31.792446+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:04:31.609590+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:04:31.320437+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:04:33.314775+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a clear, dry surface and no visible traffic or pedestrians."}, {"object": "image_condition", "timestamp": "2024-02-06T00:04:31.085069+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:04:32.769959+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water."}, {"object": "landslide", "timestamp": "2024-02-06T00:04:33.031371+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:07.996541+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "alert_category", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:36:59.237146+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:58.839343+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.485907+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:08.078356+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:04.703499+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.789872+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:12.965296+00:00", "label": "null", "label_explanation": "A cyclist is riding on a bike lane next to a busy road with cars going in both directions. There are trees and buildings on either side of the road. The cyclist is wearing a helmet and there are no other people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:08.583859+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:05.230063+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:07.508005+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.295688+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.220441+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:36:02.261527+00:00", "objects": ["road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "alert_category", "image_condition", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:36:47.978687+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:42.272974+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:36:48.344054+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:36:45.695633+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:53.522064+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:36:40.178950+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:36:58.848027+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:36:59.237624+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:33:51.662985+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:39.906596+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:36:46.103873+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:41.080419+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:57.768745+00:00", "objects": ["alert_category", "traffic_ease_vehicle", "landslide", "inside_tunnel", "fire", "brt_lane", "road_blockade_reason", "image_condition", "building_collapse", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:37:40.732673+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:41.408739+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:41.630137+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:36.348669+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.141358+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:37.052265+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:40.479926+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:39.770006+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:40.929873+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:41.841703+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The road is partially blocked by a fallen tree. There are people crossing the street. The buildings are tall and brightly lit. The sky is dark and cloudy."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.027167+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:40.233746+00:00", "label": "free", "label_explanation": "There is no blockade 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-06T00:36:57.557669+00:00", "objects": ["alert_category", "image_description", "brt_lane", "fire", "water_in_road", "inside_tunnel", "landslide", "image_condition", "traffic_ease_vehicle", "building_collapse", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:37:42.426332+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:43.533881+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a motorcycle driving in the middle of the street. There are also people walking on the sidewalk."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:38.542556+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:37:42.834029+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:41.720059+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:37.833164+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.338150+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:41.423710+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:43.029832+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:42.617700+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:41.928204+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:42.142883+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:37:01.451963+00:00", "objects": ["road_blockade", "alert_category", "road_blockade_reason", "water_in_road", "image_condition", "building_collapse", "brt_lane", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:34:54.215355+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:54.718278+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:54.504768+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:54.011043+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:53.795764+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:54.926658+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:50.810076+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:34:55.198618+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:55.423778+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:44.698430+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:44.466706+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:55.899014+00:00", "label": "null", "label_explanation": "A night-time image of a busy intersection in Rio de Janeiro. There is a bus, a motorcycle, and several cars on the road. The traffic lights are green for the bus and the motorcycle, and red for the cars. There are people crossing the street in the background. The buildings are tall and brightly lit. The image is clear and well-lit."}]}, {"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-06T00:36:53.646418+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:42.818715+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:43.226611+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:38.610654+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.544431+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:43.816061+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:42.327386+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:39.222139+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:42.518532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:44.032349+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:42.025200+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:43.007426+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:44.225044+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are two women walking on the left side of the street, and a red car is approaching from the opposite direction. The street is lit by streetlights."}]}, {"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-06T00:36:56.873892+00:00", "objects": ["image_description", "building_collapse", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_condition", "brt_lane", "landslide", "inside_tunnel", "fire", "water_in_road", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:34:46.597751+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees on either side of the road, and a few cars are parked on the side of the road. The road is well-lit, and there are no signs of any problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:45.493186+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of damage or structural issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:45.996549+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:44.709711+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. The road is clear, with no signs of fallen trees or other debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.442721+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:44.169484+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:41.105231+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.751523+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:43.548201+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.959185+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:44.445378+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:45.299839+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:53.501424+00:00", "objects": ["alert_category", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "image_condition", "fire", "road_blockade_reason", "landslide"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:34:55.670203+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:51.051660+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:55.231139+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:56.349476+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:56.846165+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no cars or people visible in the image. The road is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:54.957251+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:51.797286+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:55.926827+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:54.742156+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:34:56.139872+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:55.433275+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:56.630982+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:55.049897+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:39.589407+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of water accumulation. The road is surrounded by trees and buildings, and the sky is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:33.797486+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:38.174059+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:34.536066+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:37.681261+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:37:38.878353+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:37.886430+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:37.477235+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:39.153659+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:39.370487+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:38.386264+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:38.661802+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:36:50.925368+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:34:56.965888+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:56.245177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:52.739205+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:55.755406+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:57.757821+00:00", "label": "null", "label_explanation": "The image shows a night view of a relatively empty intersection. There are a few cars parked on the side of the road and a bus\u505c\u9760\u5728\u516c\u4ea4\u8f66\u7ad9. The street lights are on and there are some trees in the background."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:55.544543+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:57.460621+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:56.528226+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:51.941008+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:56.756342+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:56.029577+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:57.255464+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:36:48.337401+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:37:35.336011+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:30.344321+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:34.552866+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:34.346612+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:35.125501+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:33.734994+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:34.029779+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:34.826553+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:29.630820+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:35.645700+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:36.143056+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a black car driving through the intersection. There are no other cars in the intersection. The street is lit by streetlights. There are trees and buildings on either side of the street. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:35.915858+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:53.895056+00:00", "objects": ["landslide", "image_condition", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:38.706907+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:36.893984+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:37.113417+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:37.328810+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:34.106306+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:37:38.212681+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:38.896908+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bus lane on the left side and a regular lane on the right side. There is a yellow bus driving in the bus lane and several cars driving in the regular lane. There are trees and buildings on both sides of the road. The image is clear and well-lit."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:38.006814+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:38.493803+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:37.795774+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:33.390049+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:37.588022+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:52.035386+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:34:54.820210+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:56.588325+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:51.113655+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:34:56.311531+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:55.103999+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:57.034974+00:00", "label": "null", "label_explanation": "A night view of a street with a red car driving in the right lane. There are trees on either side of the street and buildings in the background. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:55.894023+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:55.423205+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:56.119992+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:51.930069+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:56.800433+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:55.620138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:53.414772+00:00", "objects": ["image_condition", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:44.819426+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:55.987364+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:56.682190+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:52.807043+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:57.179637+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:57.610050+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars, a cyclist and a bus on the street. The street is lit by streetlights. There are buildings and trees on either side of the street."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:44.107500+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:44.405416+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:55.773276+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:56.468119+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:56.196359+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:44.550901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:36:58.776544+00:00", "objects": ["fire", "image_condition", "brt_lane", "alert_category", "image_description", "building_collapse", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "landslide", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:34:47.284803+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:45.780322+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:42.881137+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:46.760907+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:52.211845+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road with a police car on the left side of the screen and several other cars driving in the opposite direction. There are trees and buildings on either side of the road. The road is wet from rain, but there is no flooding. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:46.990150+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:46.073768+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:47.492576+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:46.495243+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:46.284700+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:47.777585+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:42.183837+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:52.457077+00:00", "objects": ["inside_tunnel", "image_description", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "road_blockade_reason", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:03.133092+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:10.097844+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. The road is dry and there are no signs of water accumulation or puddles. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.321982+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:09.597443+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:07.633461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:09.830394+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:07.953228+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:03.826083+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.254449+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.108854+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:08.525153+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:08.821645+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}]}, {"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-06T00:18:38.716455+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_description", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:19:08.735940+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:19:17.795726+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:19:18.082139+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:19:09.316219+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:19:16.885086+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "image_description", "timestamp": "2024-02-06T00:19:18.398303+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls. There is a green truck in the foreground, and several other vehicles in the background. The road is dry and there are no signs of any problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:19:09.635770+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:19:09.028897+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:19:17.184220+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:19:09.899413+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:19:14.101304+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:19:17.463075+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, there is no water on the road, and there are no signs of any problems."}]}, {"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-06T00:35:52.517822+00:00", "objects": ["landslide", "water_in_road", "brt_lane", "road_blockade_reason", "inside_tunnel", "alert_category", "fire", "road_blockade", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:12.858257+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.426261+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.997055+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.027404+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:04.250120+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. The image is showing a road with cars and buildings on the side."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.618091+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.724709+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.727524+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.126857+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:12.220144+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.158129+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:13.320483+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:36:06.683553+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.983816+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:07.514361+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.776937+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.562603+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:11.460849+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.673693+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:12.396080+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.890114+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.665067+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There is moderate traffic on the street and the street lights are on. The buildings along the street are mostly residential and commercial, and there are a few trees on the sidewalk."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:12.194316+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:11.249821+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:06.469673+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file From 9f734bd0d27740f00ae183699e85fe28a9f5ff6a Mon Sep 17 00:00:00 2001 From: d116626 Date: Mon, 5 Feb 2024 21:39:30 -0300 Subject: [PATCH 35/64] feat: add classification option --- app/pages/Classificador de Labels.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index b57919a..613a169 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -56,7 +56,6 @@ def put_selected_label(labels_options, label): def buttom(label, labels_options): - if st.button( label, on_click=put_selected_label, From 943618f04de28164bacb5fb381ea86fc6b34e4c4 Mon Sep 17 00:00:00 2001 From: d116626 Date: Mon, 5 Feb 2024 21:39:47 -0300 Subject: [PATCH 36/64] feat: add classification option --- app/Home.py | 10 ++++++++-- app/pages/Classificador de Labels.py | 3 +-- app/utils/utils.py | 3 +-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/app/Home.py b/app/Home.py index 25fc5a9..ff32765 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,8 +3,14 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import (create_map, display_camera_details, get_agrid_table, - get_cameras, get_filted_cameras_objects, treat_data) +from utils.utils import ( + create_map, + display_camera_details, + get_agrid_table, + get_cameras, + get_filted_cameras_objects, + treat_data, +) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index e5a6d3a..613a169 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- import pandas as pd import streamlit as st -from utils.utils import (get_cameras, get_objects, get_objetcs_labels_df, - treat_data) +from utils.utils import get_cameras, get_objects, get_objetcs_labels_df, treat_data st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) diff --git a/app/utils/utils.py b/app/utils/utils.py index 3a186b4..30a89ec 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,8 +6,7 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, - GridUpdateMode) +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode from utils.api import APIVisionAI vision_api = APIVisionAI( From 65f0322e887a89c817d3b394a35b8ae809ba686d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 00:40:57 +0000 Subject: [PATCH 37/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/Home.py | 10 ++-------- app/pages/Classificador de Labels.py | 3 ++- app/utils/utils.py | 3 ++- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/app/Home.py b/app/Home.py index ff32765..25fc5a9 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,14 +3,8 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import ( - create_map, - display_camera_details, - get_agrid_table, - get_cameras, - get_filted_cameras_objects, - treat_data, -) +from utils.utils import (create_map, display_camera_details, get_agrid_table, + get_cameras, get_filted_cameras_objects, treat_data) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index 613a169..e5a6d3a 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -1,7 +1,8 @@ # -*- coding: utf-8 -*- import pandas as pd import streamlit as st -from utils.utils import get_cameras, get_objects, get_objetcs_labels_df, treat_data +from utils.utils import (get_cameras, get_objects, get_objetcs_labels_df, + treat_data) st.set_page_config(layout="wide") # st.image("./data/logo/logo.png", width=300) diff --git a/app/utils/utils.py b/app/utils/utils.py index 30a89ec..3a186b4 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,8 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode +from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, + GridUpdateMode) from utils.api import APIVisionAI vision_api = APIVisionAI( From c46322a41d4d5648902011e00e3e259639ff8e3d Mon Sep 17 00:00:00 2001 From: d116626 Date: Mon, 5 Feb 2024 22:06:11 -0300 Subject: [PATCH 38/64] feat: add classification option --- app/Home.py | 2 +- app/pages/Classificador de Labels.py | 24 ++++++++++++++++++------ data/temp/mock_api_data.json | 2 +- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/app/Home.py b/app/Home.py index ff32765..8f83156 100644 --- a/app/Home.py +++ b/app/Home.py @@ -12,7 +12,7 @@ treat_data, ) -st.set_page_config(layout="wide") +st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index 613a169..876a395 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -3,7 +3,7 @@ import streamlit as st from utils.utils import get_cameras, get_objects, get_objetcs_labels_df, treat_data -st.set_page_config(layout="wide") +st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) st.markdown("# Classificador de labels | Vision AI") @@ -29,7 +29,7 @@ labels.index = labels["name"] labels = labels.drop(columns=["name"]) -cameras_objs = cameras_objs.head(4) +# cameras_objs = cameras_objs.head(4) def put_selected_label(labels_options, label): @@ -71,6 +71,7 @@ def buttom(label, labels_options): if "current_image_index" not in st.session_state: st.session_state.current_image_index = 0 + # Check if there are more images to review if st.session_state.current_image_index >= len(cameras_objs): st.write("You have reviewed all images.") @@ -85,8 +86,19 @@ def buttom(label, labels_options): ) # noqa # Extract relevant information name = current_image["object"] + snapshot_url = current_image["snapshot_url"] - st.image(snapshot_url, use_column_width=True) + + # Center the image + st.markdown( + f""" +
+ +
+ """, + unsafe_allow_html=True, + ) + labels_options = labels.loc[name] choices = labels_options["value"].tolist() @@ -96,13 +108,13 @@ def buttom(label, labels_options): ) # place labels in a grid of 2 columns - col1, col2 = st.columns(2) + col1, col2, col3, col4 = st.columns(4) for i, label in enumerate(choices): if i % 2 == 0: - with col1: + with col2: buttom(label, labels_options) else: - with col2: + with col3: buttom(label, labels_options) st.session_state.current_image_index += 1 # noqa diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index c83b4d6..0930ca2 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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-06T00:37:04.797427+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "alert_category", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:44.312868+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:41.316004+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:44.614016+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:43.311853+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:44.107484+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:41.836768+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:42.328902+00:00", "label": "false", "label_explanation": "There are no signs of water on the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:00.329576+00:00", "label": "null", "label_explanation": "The image shows a wide, two-lane road with a tree-lined median. There is a car parked on the side of the road. The road is lit by streetlights. The image is clear and there are no obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.593018+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:58.423381+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:42.603211+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:43.521637+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-06T00:37:05.107006+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "brt_lane", "image_condition", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.249865+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:59.815798+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.741341+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.537759+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:55.344730+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:44.057652+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:59.124079+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:44.460492+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:00.244602+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are people walking around, and there are some food stalls set up. There are also some trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:58.639869+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:59.338884+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:43.235135+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:37:04.249227+00:00", "objects": ["image_description", "road_blockade", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "water_in_road", "fire", "building_collapse", "landslide", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:35:08.372849+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is well-lit and there are no obvious signs of any problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:35:06.584781+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:35:06.100136+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:35:07.092381+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:35:03.215858+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:35:02.408960+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:35:06.382451+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:35:07.584581+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:35:07.369859+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:35:08.093809+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:35:07.860116+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:35:06.864119+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:37:04.199570+00:00", "objects": ["inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "road_blockade", "image_description", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:59.881518+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:35:00.501197+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:35:03.675794+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:35:04.873662+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:35:04.163883+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:35:04.376731+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-06T00:35:03.471333+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:35:03.886023+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:05.601207+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are a few cars and buses on the road, and people are walking on the sidewalks. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-06T00:35:05.294623+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:35:05.078336+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:35:04.610400+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:37:02.278433+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "fire", "water_in_road", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:36.564959+00:00", "label": "false", "label_explanation": "There is no BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:35.857764+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:40.861647+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:40.345588+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:41.893316+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:41.636580+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:41.153160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:42.152693+00:00", "label": "null", "label_explanation": "The image shows a road with cars driving in both directions. There are trees on either side of the road and buildings in the background. The road is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:40.644609+00:00", "label": "free", "label_explanation": "There is no road blockade in the image."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.367401+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.154719+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:39.849913+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:01.165017+00:00", "objects": ["water_in_road", "road_blockade", "inside_tunnel", "image_condition", "alert_category", "road_blockade_reason", "traffic_ease_vehicle", "fire", "building_collapse", "brt_lane", "landslide", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:00.443397+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:00.630951+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:40.554446+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:58.881561+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:01.131211+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:00.916503+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:07.108363+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the surface."}, {"object": "fire", "timestamp": "2024-02-06T00:37:04.257263+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:01.328773+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:41.311049+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:07.831175+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:08.412361+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There is a fence on the right side of the road and a few trees on the left side. The road is lit by streetlights."}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:32.621634+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.365720+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:24.083730+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:29.875128+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are cars parked on the side of the road and a few people walking around. The traffic lights are green and there is a building in the background."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.165360+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:24.872639+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:28.874607+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:27.974065+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.662311+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.177755+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:27.687975+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.573432+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.404796+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:25.078117+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "landslide", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:17.912546+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:18.373109+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are a few cars parked on the side of the road and some trees on the sidewalk. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:16.474767+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:16.691109+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:13.502673+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:16.269707+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:12.790499+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:17.193963+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:37:17.682443+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:16.965340+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:18.179836+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:17.411178+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:36:27.393257+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:26.690450+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:23.777280+00:00", "label": "false", "label_explanation": "There is no BRT lane."}, {"object": "fire", "timestamp": "2024-02-06T00:37:28.178063+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:27.211215+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, and there are no signs of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:28.707877+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear, and there are no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:27.403370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, and there are no signs of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:26.974609+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry, and there are no signs of any puddles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:28.441960+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry, and there are no signs of any puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:28.979614+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are street lights on, and the road is wet from the rain. There are cars driving on the road, and the traffic is moderate. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:27.897064+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact, and there are no signs of any damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:23.003780+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is surrounded by buildings and trees, and there are no visible signs of a tunnel."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:27.680316+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, and there are no signs of any problems."}]}, {"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-06T00:36:26.842461+00:00", "objects": ["image_description", "building_collapse", "brt_lane", "inside_tunnel", "landslide", "alert_category", "fire", "road_blockade_reason", "water_in_road", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:14.174442+00:00", "label": "null", "label_explanation": "The image shows a dark tunnel with no visible light sources. The walls of the tunnel are made of concrete and there is a slight curve to the left."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:13.282373+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The buildings are intact and there are no signs of damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:10.208067+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:08.868706+00:00", "label": "true", "label_explanation": "The image shows a dark tunnel with no visible light sources. The walls of the tunnel are made of concrete and there is a slight curve to the left."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:13.970687+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear and there is no debris on the side of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:13.057794+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear and there are no obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:13.474897+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no flames, smoke, or signs of burnt areas."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:12.853481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:12.385189+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:12.583412+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:12.168828+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:13.693455+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road is dry and there are no puddles."}]}, {"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-06T00:37:01.833396+00:00", "objects": ["inside_tunnel", "image_condition", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category", "building_collapse", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:19.633670+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:22.712744+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:34:24.014109+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:24.223016+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:20.929399+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:23.125887+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:23.332796+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:22.907911+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:23.541544+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:23.803300+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:24.430939+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:24.707894+00:00", "label": "null", "label_explanation": "A night view of a tunnel in Rio de Janeiro. The tunnel is well-lit and there are no cars visible. The road is dry and there are no signs of construction or other hazards."}]}, {"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-06T00:36:27.914657+00:00", "objects": ["inside_tunnel", "fire", "building_collapse", "road_blockade", "water_in_road", "alert_category", "brt_lane", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:12.271813+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:16.884970+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:16.683732+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:15.979196+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:15.758736+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:16.461480+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:12.862552+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:15.552657+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:16.245264+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:17.156570+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. Traffic can flow freely."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:17.399819+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:17.660781+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are people walking on the street and some cars parked on the side. There are also some trees and buildings in the background. The street is lit by streetlights."}]}, {"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-06T00:36:30.495701+00:00", "objects": ["water_in_road", "road_blockade_reason", "road_blockade", "image_description", "alert_category", "building_collapse", "fire", "inside_tunnel", "brt_lane", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:12.915256+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:13.485150+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:13.211391+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:14.987516+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars driving in both directions. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:13.682879+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:13.976605+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:14.192845+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:09.022483+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:09.707475+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:12.676219+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:14.701240+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:14.413198+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-06T00:36:28.048529+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "water_in_road", "road_blockade_reason", "fire", "image_condition", "inside_tunnel", "building_collapse", "road_blockade", "image_description", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:24.944055+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:20.151835+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:23.448867+00:00", "label": "false", "label_explanation": "There are no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:23.967025+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:24.670827+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:23.232247+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:19.442919+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:24.446766+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:23.661290+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:33.442209+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with no cars. The street is lit by streetlights. There are trees on either side of the street. The image is clear and there is no blur."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:24.241355+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:25.158617+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:34.054540+00:00", "objects": ["building_collapse", "inside_tunnel", "brt_lane", "road_blockade", "road_blockade_reason", "water_in_road", "landslide", "image_condition", "alert_category", "traffic_ease_vehicle", "fire", "image_description"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:37:24.429184+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:19.816883+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:20.502533+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:23.696909+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:23.963226+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:23.494415+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:25.206900+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:23.233039+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:24.230441+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no signs of accidents, fires, or other disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:24.931190+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water or other obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:24.710970+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:25.410439+00:00", "label": "null", "label_explanation": "The image shows a night view of an urban area. There are no cars on the road and the street lights are on. The image is clear and there are no obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:58.893563+00:00", "objects": ["brt_lane", "image_condition", "water_in_road", "road_blockade", "road_blockade_reason", "inside_tunnel", "image_description", "traffic_ease_vehicle", "alert_category", "landslide", "building_collapse", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.745487+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.683297+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.895571+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.109476+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.380563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.826579+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:11.726093+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars parked on the side of the road and a few people walking around. The street is well-lit and there are no signs of any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.294054+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.602117+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.503248+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:10.799825+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.089220+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:35:53.795644+00:00", "objects": ["image_condition", "water_in_road", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "building_collapse", "traffic_ease_vehicle", "fire", "road_blockade_reason", "landslide", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:08.566408+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.854111+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:04.475201+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.142039+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:09.634203+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or signs of trouble."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:05.270306+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.835667+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.410910+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. Vehicles can pass without difficulty."}, {"object": "fire", "timestamp": "2024-02-06T00:37:10.042008+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.348635+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:10.630570+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:10.886837+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades, obstructions, or signs of trouble. The road surface is dry and there are no visible markings or signs."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:43.144849+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "traffic_ease_vehicle", "image_description", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:30.486347+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:31.731417+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:30.221188+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:31.488788+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:31.992632+00:00", "label": "null", "label_explanation": "The image shows a cyclist riding on a bike lane. There are cars parked on the side of the road and a few people walking on the sidewalk. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:29.707246+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:31.205357+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:30.691799+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:30.999087+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:30.000844+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:26.674386+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:25.882572+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:36:25.103436+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:11.725163+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:13.700543+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:13.962189+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There is a white car driving on the right side of the road. There are trees and buildings on either side of the road. The image is well-lit and the weather is clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:12.495565+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:08.078063+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:13.198258+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:12.206995+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:12.967971+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:08.780863+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:11.970135+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:12.687437+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:13.395227+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow smoothly."}]}, {"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-06T00:36:40.551989+00:00", "objects": ["image_description", "landslide", "alert_category", "building_collapse", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:30.030576+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy urban intersection in Rio de Janeiro. There are cars, buses, and people crossing the intersection. The traffic lights are red and yellow. The street is lit by streetlights. The buildings are tall and brightly lit. The sky is dark and cloudy."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.824702+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.848923+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:29.125430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:24.449714+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:25.142231+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:28.227580+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.351900+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.444270+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:27.967047+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.541928+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.635029+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:39.454637+00:00", "objects": ["landslide", "fire", "image_condition", "alert_category", "building_collapse", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:27.291094+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:26.802491+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:25.498292+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:26.378639+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:26.599820+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact, with no signs of damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:25.902444+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:25.683279+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:27.078422+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no signs of water."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:27.502711+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is well-lit and there is moderate traffic. There are a few trees and buildings in the background. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:22.086189+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:26.106712+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:22.788064+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane."}]}, {"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-06T00:36:24.943316+00:00", "objects": ["image_condition", "inside_tunnel", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:29.482778+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:25.993201+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:31.070798+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:26.704424+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:30.186580+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:28:31.675761+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 person crossing the street in the foreground."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:30.657163+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:29.689818+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:30.874888+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:30.379540+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:29.980491+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:31.327634+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:31.543121+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:37:19.861234+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:18.611130+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:20.863211+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of water accumulation. The road is surrounded by trees and buildings, and the sky is clear."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:18.877583+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-06T00:37:20.094614+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:19.081308+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:20.362819+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:19.594531+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:14.890651+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:20.602734+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:19.368355+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:15.591098+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:36:29.918077+00:00", "objects": ["inside_tunnel", "image_condition", "alert_category", "building_collapse", "fire", "image_description", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "brt_lane", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:24.668749+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:28.062143+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.946121+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:29.163028+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.433184+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:29.192756+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a red car driving on it. The road is surrounded by trees and buildings. The sky is clear and blue."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:28.347334+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.738822+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.646184+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:25.349084+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.535291+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.860936+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:36.673456+00:00", "objects": ["water_in_road", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_condition", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:27.819935+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.332460+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:23.746771+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:24.506482+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.717602+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:29.044651+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.822935+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:27.598863+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.135169+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.601903+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.429873+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:30.025167+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a bus driving on the road, and a person is walking on the sidewalk. There are buildings on either side of the road, and trees are lining the sidewalk. The image is well-lit, and the weather is clear."}]}, {"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-06T00:36:35.279410+00:00", "objects": ["image_description", "landslide", "inside_tunnel", "road_blockade_reason", "fire", "water_in_road", "road_blockade", "brt_lane", "building_collapse", "traffic_ease_vehicle", "image_condition", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:34:35.995640+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars and buses on the street, and people are walking on the sidewalk. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:33.763662+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:27.775526+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:32.192943+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:33.271772+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:31.694378+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:31.976747+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:28.484338+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:32.926509+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:33.494146+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:31.489438+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:32.479535+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}]}, {"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-06T00:36:37.860117+00:00", "objects": ["image_condition", "road_blockade_reason", "inside_tunnel", "brt_lane", "landslide", "fire", "building_collapse", "water_in_road", "road_blockade", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:30.671549+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:31.376566+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:27.076159+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:27.782818+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:32.590548+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:32.161684+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:31.912575+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:30.883915+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:31.155765+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:31.585701+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:32.853122+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is well-lit and there are no obvious signs of any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:32.361813+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:37:00.281397+00:00", "objects": ["brt_lane", "image_condition", "traffic_ease_vehicle", "alert_category", "image_description", "inside_tunnel", "water_in_road", "fire", "landslide", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:37.359246+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:40.230146+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:41.926209+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:41.201873+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:42.406349+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a bike lane on the right side, separated by a painted line. On the left side of the road, there is a sidewalk lined with trees. In the background, there are tall buildings and street lights. The road is well-lit and there is no traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:36.545890+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.507586+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.637490+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.134024+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:40.930479+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:41.412530+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:40.722948+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no obstructions or puddles that interfere with traffic."}]}, {"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-06T00:36:56.197280+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:34:23.235604+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:24.223536+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:24.753522+00:00", "label": "easy", "label_explanation": "The road is completely clear with no obstacles or water."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:23.462281+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:23.951851+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:23.729788+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:22.959390+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:24.456730+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:25.248388+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image is clear."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:25.498783+00:00", "label": "null", "label_explanation": "A night view of a road tunnel in Rio de Janeiro. On the left side of the road, there is a wall with graffiti. On the right side, there is a grassy area and a fence. There are no cars on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:22.768128+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:25.017248+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of damage."}]}, {"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-06T00:36:54.698087+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "building_collapse", "image_condition", "image_description", "road_blockade", "landslide", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:40.247234+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:41.003815+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:43.608402+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:44.430095+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:43.847718+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:39.140541+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:42.230781+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:44.108565+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:54.974655+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection. There are cars driving on the road and the street lights are on. The road is dry and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:43.079565+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:38.926722+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:41.712137+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-06T00:36:54.459947+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "inside_tunnel", "water_in_road", "building_collapse", "fire", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:42.484540+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has no puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:37.712960+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:42.992757+00:00", "label": "null", "label_explanation": "The image shows a night view of a street corner in Rio de Janeiro. The street is lit by streetlights and there are trees on either side of the road. There is a building in the background and a park to the right of the road. The road is empty, with no cars or pedestrians visible."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:36.972929+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.991551+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:41.988267+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:42.207582+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.783014+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:40.799234+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:41.271905+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:41.489570+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:41.772855+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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-06T00:36:55.761366+00:00", "objects": ["landslide", "inside_tunnel", "fire", "image_condition", "brt_lane", "alert_category", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road", "building_collapse", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:43.065251+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:37.516238+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:42.530160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:41.110509+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:38.210826+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:42.015815+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:41.540122+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:42.761892+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:41.817265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:41.313464+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:42.230921+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:43.311442+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There are trees and buildings on either side of the road. The road is well-lit and there are no visible obstructions."}]}, {"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-06T00:36:54.190842+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_in_road", "image_description", "building_collapse", "inside_tunnel", "road_blockade", "fire", "landslide", "road_blockade_reason", "alert_category", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:58.249506+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water or puddles. Vehicles can easily pass through without any difficulty."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:42.679068+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:43.184506+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:56.431818+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or other problems. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:57.758206+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:43.548489+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:57.060468+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:42.456756+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.176809+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.603921+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:57.539108+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might affect city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:44.267480+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:36:59.458266+00:00", "objects": ["landslide", "image_condition", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "inside_tunnel", "road_blockade_reason", "road_blockade", "alert_category", "fire"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:38.209769+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:42.815909+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:44.508697+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:00.347619+00:00", "label": "null", "label_explanation": "The image shows a night view of a city intersection. There is a yellow taxi on the left side of the image, and other vehicles in the background. The road is dry and there are no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:43.013214+00:00", "label": "false", "label_explanation": "There are no signs of water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:40.011914+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:44.105928+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:39.309002+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:43.545165+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:43.213953+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and there are no signs of traffic disruption."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:43.854274+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:37:44.313967+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:37:04.442922+00:00", "objects": ["traffic_ease_vehicle", "fire", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "landslide", "inside_tunnel", "water_in_road", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:35:04.410783+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-06T00:35:04.131545+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:59.709280+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:29:02.317502+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions. There is a tree on the side of the road, and a few cars are parked on the side of the road. The image is well-lit, and the colors are accurate."}, {"object": "image_condition", "timestamp": "2024-02-06T00:35:02.757622+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:35:03.516192+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:35:04.629489+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:59.012245+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:35:03.014247+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:35:03.923149+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:35:03.226351+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:35:03.714314+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:04.166835+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "image_description", "brt_lane", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:37:10.313083+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.532623+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.741965+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-06T00:37:10.523265+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.315479+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.026967+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-06T00:28:17.052954+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with a bridge in the background. There are no cars on the road and the street lights are on. The image is clear and there are no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:05.468365+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.034507+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.024952+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:04.555193+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.736839+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:24.892901+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:24.097749+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:20.314820+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:24.309381+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:25.313706+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:21.028872+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:25.117208+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:37:25.528709+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:24.817636+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:26.031189+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:26.301118+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with a few cars parked on the side. There are trees and buildings on either side of the street. The street is well-lit, and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:25.816472+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:24.605508+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:22.275272+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:37:27.014506+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:22.424475+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:27.818289+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:28.435083+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:29.038667+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are cars and a motorcycle on the road, and a few trees and buildings on the side of the road. The road is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-06T00:37:28.121705+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:23.240058+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:26.512718+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:26.721705+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:27.580403+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:27.304394+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:28.718528+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:30.152670+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "alert_category", "building_collapse", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:37:25.396847+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:25.894667+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:24.688798+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:24.023284+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:25.630559+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:24.415287+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:21.188833+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:24.919353+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:25.115269+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:26.098169+00:00", "label": "null", "label_explanation": "A police car is chasing a motorcycle on a road at night. There is a white car on the side of the road. The road is wet from the rain."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:24.231721+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:20.494091+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:36:23.190080+00:00", "objects": ["water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "image_description", "image_condition", "building_collapse", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:29.514767+00:00", "label": "false", "label_explanation": "There is no presence of significant, larger puddles. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:37:30.792837+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:29.785134+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:31.007721+00:00", "label": "impossible", "label_explanation": "The road is completely submerged with high water level, making it impassable for vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:30.013905+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:26.310965+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:31.506398+00:00", "label": "null", "label_explanation": "The image is showing a road with cars passing by. There are buildings on the left side of the road and a mountain on the right side of the road. The image is blurry and it is difficult to see the details."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:29.297485+00:00", "label": "poor", "label_explanation": "The image is blurred due to water, focus issues, or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:30.518656+00:00", "label": "false", "label_explanation": "There is no presence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:25.628195+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:31.226914+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:30.302903+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:36:20.855425+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "water_in_road", "image_description", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:29.381795+00:00", "label": "easy", "label_explanation": "The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:27.678874+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:29.165846+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:28.453247+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:27.968036+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:29.877045+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy road in Rio de Janeiro. The road is lined with trees and buildings, and there are cars and people moving in both directions. The image is clear and well-lit."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:24.669217+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:28.167338+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:28.879824+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:23.889769+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:28.673087+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:29.657214+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:14.575979+00:00", "objects": ["brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "landslide", "image_condition", "alert_category", "building_collapse", "image_description", "road_blockade", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.436880+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.138374+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.633029+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.635736+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.676563+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.837991+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.927741+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.925105+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.132217+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.109747+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a bus is driving in the middle of the road. There are also people walking on the sidewalk. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.415925+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.379949+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:35:56.743677+00:00", "objects": ["inside_tunnel", "brt_lane", "building_collapse", "fire", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:02.401089+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.466846+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.480030+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.809651+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:08.309481+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:09.293396+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.791331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:08.998511+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.082901+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.572056+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:10.501640+00:00", "label": "null", "label_explanation": "The image shows a wide road with cars driving in both directions. There are trees and buildings on either side of the road. The road is wet from rain, but there are no major puddles or blockages. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:10.280473+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:11.814693+00:00", "objects": ["inside_tunnel", "brt_lane", "image_condition", "fire", "road_blockade_reason", "alert_category", "building_collapse", "traffic_ease_vehicle", "road_blockade", "water_in_road", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:00.443975+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.523872+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:07.747148+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.194945+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:08.498538+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:08.708306+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.000395+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:09.407231+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.238902+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.012285+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:09.687158+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:09.897273+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": 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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:54.158892+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:10.311620+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left lane, behind the fallen tree. There are no people visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.487267+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:10.084705+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.710859+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lanes are not marked or designated for bus rapid transit use."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:09.173456+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no blockades, water, or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:01.545299+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:08.204306+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.659568+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.373941+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:08.905146+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:09.858355+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.672451+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:56.174348+00:00", "objects": ["water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "alert_category", "building_collapse", "image_description", "road_blockade", "inside_tunnel", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:34:48.374217+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:48.878234+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:49.784734+00:00", "label": "easy", "label_explanation": "The road is clear with no blockages or hazards. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:49.093503+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:49.302250+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:50.321171+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:48.596913+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:44.304561+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:48.141696+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:45.023567+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:50.062971+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:34:49.567011+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:36:48.092160+00:00", "objects": ["road_blockade", "brt_lane", "image_description", "inside_tunnel", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:34:42.223817+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:38.841318+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:43.958763+00:00", "label": "null", "label_explanation": "The image shows a night scene of a road intersection in Rio de Janeiro. There is a bus driving on the left side of the road, and cars driving in both directions. The road is partially blocked by a fallen tree. There are no people visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:38.033099+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:42.923108+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:41.946924+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:34:43.213398+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:42.448945+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:42.698876+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:41.710137+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:43.430056+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:43.698347+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:47.454717+00:00", "objects": ["image_description", "building_collapse", "road_blockade", "image_condition", "fire", "landslide", "inside_tunnel", "brt_lane", "alert_category", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:31:51.869284+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:41.782401+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:41.073856+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:40.571711+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.979108+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.473867+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:36.694405+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:37.493042+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:41.492651+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:42.262390+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:41.277002+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.780263+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:36:50.872154+00:00", "objects": ["road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "fire", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:34:45.441644+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:44.706640+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:46.625601+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:46.150416+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:47.042438+00:00", "label": "null", "label_explanation": "A night-time image of a street with a gas station on the left and a sports court on the right. There is a tree on the right side of the image and a street light in the middle of the road. The road is clear with no visible obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.092776+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:42.167981+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:42.794156+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:42.989200+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:43.862459+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.877738+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:41.595156+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:50.139154+00:00", "objects": ["road_blockade", "inside_tunnel", "alert_category", "fire", "brt_lane", "landslide", "water_in_road", "road_blockade_reason", "image_description", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:37:42.268605+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:37.956841+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:42.738882+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.114089+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:38.845412+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.650991+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:41.960619+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:42.437331+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:43.873842+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are no cars or pedestrians on the street. The street is lit by streetlights. There are buildings on both sides of the street. The buildings are mostly residential, with some commercial buildings on the ground floor. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:43.350246+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:41.777803+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:42.857903+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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-06T00:36:58.874460+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "road_blockade", "building_collapse", "landslide", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:34:55.438928+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There is a car accident on the road. There is a water puddle on the road. There are no people on the street."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:49.337525+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:50.155875+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:53.455278+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:34:54.738857+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:54.942764+00:00", "label": "moderate", "label_explanation": "There are larger puddles that could cause minor traffic disruptions but are still navigable for most vehicles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:53.945758+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:54.231756+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:53.737508+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:54.452591+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:55.166447+00:00", "label": "true", "label_explanation": "There is evidence of a landslide. There are signs of a landslide, such as soil displacement, rocks, and debris on or near the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:53.215927+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-06T00:36:45.418917+00:00", "objects": ["road_blockade_reason", "brt_lane", "inside_tunnel", "fire", "water_in_road", "road_blockade", "building_collapse", "image_description", "alert_category", "traffic_ease_vehicle", "image_condition", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:49.344993+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:45.735212+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a sign indicating 'BRT'."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:43.860805+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:44.310959+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:48.812652+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:49.019449+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:49.831108+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:51.026179+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The traffic lights are green for the cars and red for the pedestrians. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:49.627169+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockages or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:50.431205+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:44.516598+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:44.106513+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:47.948500+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "road_blockade_reason", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:26.913338+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:27.124476+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:26.687318+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:27.397319+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:37:28.101105+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:23.115610+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:23.886243+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:27.604958+00:00", "label": "minor", "label_explanation": "There is a fallen tree blocking part of the road, which could cause traffic delays."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:27.886637+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:28.586153+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:28.840732+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking part of the road. There are cars and motorcycles on the road. There are buildings and trees on either side of the road. The sky is dark and cloudy."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:28.305690+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a fallen tree, making it difficult for vehicles to pass."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:11.972964+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "brt_lane", "image_description", "road_blockade_reason", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:07.512655+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:08.478646+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:08.989018+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:09.252037+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:08.746061+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:07.774251+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:08.237924+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:59.769582+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:00.446981+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:09.476508+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-lane road with a BRT lane to the left. There are no blockades or obstacles on the road, and traffic is flowing smoothly. The image is clear and there are no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:07.972187+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:07.232374+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:37:02.307677+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_description", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "alert_category", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:31:51.196646+00:00", "label": "moderate", "label_explanation": "There is some water on the road, but it is not enough to cause significant hindrance to vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:31:50.075633+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.246720+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:51.873460+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars, buses, and people on the street. The street is lit by streetlights. There are buildings on either side of the street. The buildings are mostly commercial, with a few residential buildings mixed in. The street is relatively clean and there is no visible litter."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:42.832499+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:43.349665+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.093104+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:31:50.698673+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:43.842430+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:31:50.490583+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:44.036315+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:44.548237+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:37:01.401466+00:00", "objects": ["inside_tunnel", "building_collapse", "image_condition", "road_blockade_reason", "brt_lane", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "landslide", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:44.422601+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:35:15.629141+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:43.732268+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.029801+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:35:11.432414+00:00", "label": "false", "label_explanation": "There are no markings or signs indicating a designated bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:35:14.926367+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:35:15.414508+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:35:16.136636+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry."}, {"object": "image_description", "timestamp": "2024-02-06T00:35:16.628689+00:00", "label": "null", "label_explanation": "A night-time image of a road intersection. There is a white car driving through the intersection. The road is lit by streetlights. There are trees and buildings on either side of the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.247760+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.524356+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:44.238161+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:14.516103+00:00", "objects": ["brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_condition", "building_collapse", "water_in_road", "landslide", "road_blockade_reason", "alert_category", "fire", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:05.790840+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:00.433199+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.932600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.152472+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.449401+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:10.668210+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.737480+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.453204+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.230872+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.444120+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:10.950239+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:11.663333+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars parked on either side. Trees line the street, and a street light is visible in the background. The road is clear, with no signs of fallen trees, water, or other obstructions."}]}, {"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-06T00:36:09.377033+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade", "alert_category", "fire", "road_blockade_reason", "image_description", "building_collapse", "image_condition", "water_in_road", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:04.252255+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.963279+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.567491+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.064967+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:37:10.612879+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.841037+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:03.478788+00:00", "label": "null", "label_explanation": "A night-time image of a street with a white car driving in the foreground. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:10.278168+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:08.996525+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.295487+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.078446+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.863657+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and has small, insignificant puddles. Traffic can flow easily."}]}, {"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-06T00:36:09.184519+00:00", "objects": ["brt_lane", "inside_tunnel", "landslide", "image_condition", "road_blockade_reason", "water_in_road", "fire", "traffic_ease_vehicle", "building_collapse", "alert_category", "road_blockade", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:02.688226+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:45.494761+00:00", "label": "true", "label_explanation": "The image shows a dark, enclosed space with concrete walls and a metal railing on the right side. The space is illuminated by artificial lighting. These characteristics indicate that the image is taken inside a tunnel."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:50.875426+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:57.785018+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:36:59.521374+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:02.390686+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is murky and covers a large portion of the road, making it difficult for vehicles to pass."}, {"object": "fire", "timestamp": "2024-02-06T00:36:51.123928+00:00", "label": "false", "label_explanation": "There is no evidence of a fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:04.256031+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a significant portion of the road, making it difficult for vehicles to pass."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:04.524069+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse in the image. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:04.737961+00:00", "label": "minor", "label_explanation": "The image shows a partially blocked road due to a large puddle of water. This could cause minor traffic disruptions, but it is not a major issue that would affect city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:03.033492+00:00", "label": "partially_blocked", "label_explanation": "The road is partially blocked by a large puddle of water. The water is murky and covers a significant portion of the road, making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:04.993142+00:00", "label": "null", "label_explanation": "The image shows a dark, enclosed space with concrete walls and a metal railing on the right side. The space is illuminated by artificial lighting. These characteristics indicate that the image is taken inside a tunnel. There is a large puddle of water on the road, which is partially blocking the road and making it difficult for vehicles to pass."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:00.719651+00:00", "objects": ["image_description", "traffic_ease_vehicle", "landslide", "water_in_road", "building_collapse", "fire", "road_blockade", "inside_tunnel", "alert_category", "image_condition", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:15.133034+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are a few cars parked on the side of the road and a bus driving in the middle of the intersection. The street is lit by streetlights and there are buildings on either side of the road. The buildings are mostly commercial and residential, with a few trees in between. The image is clear and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:14.329231+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:14.826472+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.537292+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:13.040920+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:13.642160+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:11.150174+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:41.544147+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:12.418695+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.049002+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:42.814515+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:11.837865+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:35:58.936033+00:00", "objects": ["water_in_road", "alert_category", "inside_tunnel", "brt_lane", "image_description", "traffic_ease_vehicle", "road_blockade", "fire", "building_collapse", "landslide", "image_condition", "road_blockade_reason"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:08.830848+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:09.536813+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:00.649706+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:01.942100+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:10.667759+00:00", "label": "null", "label_explanation": "The image is dark and not well lit. It is night time and the street lights are on. There are trees on either side of the road. The road is wet from the rain and there are some puddles. There is a car driving in the right lane and a motorcycle in the left lane. The motorcycle is driving in between cars that are stopped at a red light. The car is stopped behind the motorcycle."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:10.259015+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.036315+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.951645+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.740618+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:10.454136+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:08.567624+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.276299+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:01.520796+00:00", "objects": ["water_in_road", "alert_category", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "road_blockade_reason", "image_condition", "road_blockade", "fire", "landslide", "image_description", "building_collapse"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:37:05.573433+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:06.392029+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:07.197661+00:00", "label": "easy", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:02.442083+00:00", "label": "true", "label_explanation": "There is a designated bus rapid transit (BRT) lane on the left side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:01.564019+00:00", "label": "false", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:06.143516+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:05.279463+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:05.800456+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:06.967247+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:07.620373+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:08.196215+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance. There is a small puddle of water on the road, but it is not significant and does not interfere with traffic. There is a designated bus rapid transit (BRT) lane on the left side of the road. The surrounding buildings are intact, with no signs of collapse or structural damage. There is no evidence of fire, landslides, or road blockades. The image is clear, with no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:06.763462+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:56.490834+00:00", "objects": ["road_blockade", "building_collapse", "landslide", "brt_lane", "inside_tunnel", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade_reason", "image_description", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.340224+00:00", "label": "free", "label_explanation": "There are no blockades or obstructions on the road. Traffic can flow freely."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.125060+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact and there are no signs of structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:11.840462+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:07.026203+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:06.180039+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.364377+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.637448+00:00", "label": "easy", "label_explanation": "There are no signs of flooding or water on the road. Vehicles can pass without difficulty."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.943954+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.645432+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.057083+00:00", "label": "null", "label_explanation": "The image shows a street scene with cars, motorcycles, and people crossing the road. There are trees on either side of the road and buildings in the background. The road is wet from rain."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.938946+00:00", "label": "poor", "label_explanation": "The image is slightly blurred but still clear enough to identify objects and potential issues."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.138725+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is mostly dry with a few small puddles that do not interfere with 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-06T00:35:56.539083+00:00", "objects": ["image_description", "image_condition", "inside_tunnel", "building_collapse", "landslide", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade", "brt_lane", "road_blockade_reason", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:33:46.588974+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a street light in the middle of the intersection. There are cars parked on the side of the road. The road is not very busy. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:40.611082+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:41.313644+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:33:45.588683+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:40.121554+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:36:40.351935+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:36:41.105305+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:33:46.083139+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:33:44.874542+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:42.813234+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:36:48.246127+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:01.492013+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:36:06.736067+00:00", "objects": ["brt_lane", "image_condition", "image_description", "inside_tunnel", "road_blockade_reason", "alert_category", "fire", "water_in_road", "road_blockade", "traffic_ease_vehicle", "landslide", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:37:07.778209+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.772035+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:13.290497+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There is a tall residential building on the left and a few trees on the right. The street is wet from the rain and there are some puddles on the road. There is a car driving on the right side of the road."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:07.069350+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:11.706563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:11.990220+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:37:12.572080+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:11.062981+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:11.298443+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:12.858466+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:13.065794+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:12.274183+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:04.093254+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "traffic_ease_vehicle", "fire", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.957085+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:11.217495+00:00", "label": "car_accident", "label_explanation": "There is a truck partially blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:12.313325+00:00", "label": "difficult", "label_explanation": "There is a truck partially blocking the road. This could cause minor traffic disruptions but is still navigable."}, {"object": "fire", "timestamp": "2024-02-06T00:37:12.032580+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.831769+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:11.010194+00:00", "label": "partially_blocked", "label_explanation": "There is a truck partially blocking the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.718838+00:00", "label": "null", "label_explanation": "A truck partially blocks the road after a car accident. The truck is in the middle of the intersection, blocking traffic in both directions. There is a car stopped behind the truck. The road is dry and there are no visible signs of damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:11.503666+00:00", "label": "minor", "label_explanation": "There is a truck partially blocking the road. This could cause minor traffic disruptions but is still navigable."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.725772+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.522523+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:12.523670+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.790511+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-06T00:36:01.426566+00:00", "objects": ["landslide", "alert_category", "image_condition", "brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "fire", "inside_tunnel", "road_blockade_reason", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:12.101099+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:11.083484+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.072388+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.494916+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.314968+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:11.878888+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.590771+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.382525+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars driving in both directions. There are trees on either side of the street and buildings in the background. The street is well-lit and there are no visible obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.616293+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.705380+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.879800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.314266+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:56.444292+00:00", "objects": ["alert_category", "building_collapse", "inside_tunnel", "image_description", "road_blockade", "fire", "brt_lane", "water_in_road", "road_blockade_reason", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:36:42.810367+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:36:45.494526+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:37.577089+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:36:58.846974+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 there are a few cars parked on the side of the road. There is a cyclist riding in the middle of the street. There are buildings and trees on either side of the street. The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:36:41.716789+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:36:45.707481+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:38.221558+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:36:41.496176+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:36:42.149390+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:41.220925+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:53.524913+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:36:48.488753+00:00", "label": "easy", "label_explanation": "The road is clear with no water or puddles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:42.908006+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:04:32.494920+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:04:27.173280+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:04:32.315625+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:04:32.088899+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, water, or other hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:04:28.002781+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:04:31.792446+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:04:31.609590+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:04:31.320437+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:04:33.314775+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a clear, dry surface and no visible traffic or pedestrians."}, {"object": "image_condition", "timestamp": "2024-02-06T00:04:31.085069+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:04:32.769959+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water."}, {"object": "landslide", "timestamp": "2024-02-06T00:04:33.031371+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:07.996541+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road", "alert_category", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:36:59.237146+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:58.839343+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:05.485907+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:08.078356+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:04.703499+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.789872+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:12.965296+00:00", "label": "null", "label_explanation": "A cyclist is riding on a bike lane next to a busy road with cars going in both directions. There are trees and buildings on either side of the road. The cyclist is wearing a helmet and there are no other people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:08.583859+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:05.230063+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:07.508005+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:09.295688+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:06.220441+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:36:02.261527+00:00", "objects": ["road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "alert_category", "image_condition", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:36:47.978687+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:36:42.272974+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:36:48.344054+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:36:45.695633+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:36:53.522064+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:36:40.178950+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:36:58.848027+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:36:59.237624+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:33:51.662985+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockages or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:36:39.906596+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:36:46.103873+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:36:41.080419+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:57.768745+00:00", "objects": ["alert_category", "traffic_ease_vehicle", "landslide", "inside_tunnel", "fire", "brt_lane", "road_blockade_reason", "image_condition", "building_collapse", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:37:40.732673+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:41.408739+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:41.630137+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:36.348669+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:41.141358+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:37.052265+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:40.479926+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:39.770006+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:40.929873+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:41.841703+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and motorcycles on the road. The road is partially blocked by a fallen tree. There are people crossing the street. The buildings are tall and brightly lit. The sky is dark and cloudy."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:40.027167+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:40.233746+00:00", "label": "free", "label_explanation": "There is no blockade 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-06T00:36:57.557669+00:00", "objects": ["alert_category", "image_description", "brt_lane", "fire", "water_in_road", "inside_tunnel", "landslide", "image_condition", "traffic_ease_vehicle", "building_collapse", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:37:42.426332+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:43.533881+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a motorcycle driving in the middle of the street. There are also people walking on the sidewalk."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:38.542556+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:37:42.834029+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:41.720059+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:37.833164+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.338150+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:41.423710+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:43.029832+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:42.617700+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:41.928204+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:42.142883+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:37:01.451963+00:00", "objects": ["road_blockade", "alert_category", "road_blockade_reason", "water_in_road", "image_condition", "building_collapse", "brt_lane", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:34:54.215355+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:54.718278+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:54.504768+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:54.011043+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:53.795764+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:54.926658+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:50.810076+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:34:55.198618+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:55.423778+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:44.698430+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:44.466706+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:55.899014+00:00", "label": "null", "label_explanation": "A night-time image of a busy intersection in Rio de Janeiro. There is a bus, a motorcycle, and several cars on the road. The traffic lights are green for the bus and the motorcycle, and red for the cars. There are people crossing the street in the background. The buildings are tall and brightly lit. The image is clear and well-lit."}]}, {"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-06T00:36:53.646418+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:42.818715+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:43.226611+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:38.610654+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.544431+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:43.816061+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:42.327386+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear and dry."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:39.222139+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:42.518532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:44.032349+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:42.025200+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:43.007426+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:44.225044+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are two women walking on the left side of the street, and a red car is approaching from the opposite direction. The street is lit by streetlights."}]}, {"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-06T00:36:56.873892+00:00", "objects": ["image_description", "building_collapse", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_condition", "brt_lane", "landslide", "inside_tunnel", "fire", "water_in_road", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:34:46.597751+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a clear sky. There are trees on either side of the road, and a few cars are parked on the side of the road. The road is well-lit, and there are no signs of any problems."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:45.493186+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. All buildings are intact, with no signs of damage or structural issues."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:45.996549+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:44.709711+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. The road is clear, with no signs of fallen trees or other debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:44.442721+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:44.169484+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:41.105231+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:43.751523+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:43.548201+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:37:43.959185+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:44.445378+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:45.299839+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:36:53.501424+00:00", "objects": ["alert_category", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "image_condition", "fire", "road_blockade_reason", "landslide"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:34:55.670203+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:51.051660+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:55.231139+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:56.349476+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:56.846165+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no cars or people visible in the image. The road is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:54.957251+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:51.797286+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:55.926827+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:54.742156+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:34:56.139872+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:55.433275+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:56.630982+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:55.049897+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:37:39.589407+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or signs of water accumulation. The road is surrounded by trees and buildings, and the sky is clear."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:33.797486+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:38.174059+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:34.536066+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:37.681261+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:37:38.878353+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:37.886430+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:37.477235+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:39.153659+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:39.370487+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:38.386264+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:38.661802+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:36:50.925368+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:34:56.965888+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:56.245177+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:52.739205+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:55.755406+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:57.757821+00:00", "label": "null", "label_explanation": "The image shows a night view of a relatively empty intersection. There are a few cars parked on the side of the road and a bus\u505c\u9760\u5728\u516c\u4ea4\u8f66\u7ad9. The street lights are on and there are some trees in the background."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:55.544543+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:57.460621+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:56.528226+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:51.941008+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:56.756342+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:56.029577+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:57.255464+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:36:48.337401+00:00", "objects": ["fire", "brt_lane", "road_blockade_reason", "road_blockade", "building_collapse", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:37:35.336011+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:30.344321+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:34.552866+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:34.346612+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:35.125501+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:33.734994+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:34.029779+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:34.826553+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:29.630820+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:35.645700+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:36.143056+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a black car driving through the intersection. There are no other cars in the intersection. The street is lit by streetlights. There are trees and buildings on either side of the street. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:35.915858+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:36:53.895056+00:00", "objects": ["landslide", "image_condition", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:38.706907+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:36.893984+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:37.113417+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:37.328810+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:34.106306+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:37:38.212681+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:38.896908+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bus lane on the left side and a regular lane on the right side. There is a yellow bus driving in the bus lane and several cars driving in the regular lane. There are trees and buildings on both sides of the road. The image is clear and well-lit."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:38.006814+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:38.493803+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:37.795774+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:33.390049+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:37.588022+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:52.035386+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:34:54.820210+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:56.588325+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:51.113655+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:34:56.311531+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:55.103999+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:57.034974+00:00", "label": "null", "label_explanation": "A night view of a street with a red car driving in the right lane. There are trees on either side of the street and buildings in the background. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:55.894023+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:55.423205+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:56.119992+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:51.930069+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:56.800433+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:55.620138+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:36:53.414772+00:00", "objects": ["image_condition", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:37:44.819426+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:55.987364+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:56.682190+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:52.807043+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:57.179637+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:34:57.610050+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars, a cyclist and a bus on the street. The street is lit by streetlights. There are buildings and trees on either side of the street."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:44.107500+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:44.405416+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:55.773276+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:56.468119+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:56.196359+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:37:44.550901+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:36:58.776544+00:00", "objects": ["fire", "image_condition", "brt_lane", "alert_category", "image_description", "building_collapse", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "landslide", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:34:47.284803+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:34:45.780322+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:34:42.881137+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:34:46.760907+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-06T00:31:52.211845+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road with a police car on the left side of the screen and several other cars driving in the opposite direction. There are trees and buildings on either side of the road. The road is wet from rain, but there is no flooding. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:34:46.990150+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:34:46.073768+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:34:47.492576+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:34:46.495243+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:34:46.284700+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:34:47.777585+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:34:42.183837+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:35:52.457077+00:00", "objects": ["inside_tunnel", "image_description", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "road_blockade_reason", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:03.133092+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:10.097844+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. The road is dry and there are no signs of water accumulation or puddles. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:37:09.321982+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:09.597443+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water accumulation or puddles."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:07.633461+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:09.830394+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:07.953228+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:03.826083+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The lane is not marked or designated for bus rapid transit use."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:08.254449+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:09.108854+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:08.525153+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:08.821645+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}]}, {"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-06T00:18:38.716455+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_description", "image_condition", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:19:08.735940+00:00", "label": "true", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:19:17.795726+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:19:18.082139+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:19:09.316219+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:19:16.885086+00:00", "label": "false", "label_explanation": "There is no BRT lane visible in the image."}, {"object": "image_description", "timestamp": "2024-02-06T00:19:18.398303+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with artificial lighting and concrete walls. There is a green truck in the foreground, and several other vehicles in the background. The road is dry and there are no signs of any problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:19:09.635770+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:19:09.028897+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:19:17.184220+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:19:09.899413+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:19:14.101304+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:19:17.463075+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, there is no water on the road, and there are no signs of any problems."}]}, {"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-06T00:35:52.517822+00:00", "objects": ["landslide", "water_in_road", "brt_lane", "road_blockade_reason", "inside_tunnel", "alert_category", "fire", "road_blockade", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:37:12.858257+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:09.426261+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:04.997055+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or designations indicating that the lane is reserved for bus rapid transit use."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:10.027404+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:04.250120+00:00", "label": "false", "label_explanation": "The image is not showing the inside of a tunnel. The image is showing a road with cars and buildings on the side."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:10.618091+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.724709+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:37:09.727524+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.126857+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:12.220144+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:09.158129+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:13.320483+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:36:06.683553+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:37:10.983816+00:00", "label": "free", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:37:07.514361+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:37:10.776937+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_condition", "timestamp": "2024-02-06T00:37:10.562603+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:37:11.460849+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:37:11.673693+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:37:12.396080+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:37:11.890114+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:37:12.665067+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is wet from rain and there are a few puddles on the road. There is moderate traffic on the street and the street lights are on. The buildings along the street are mostly residential and commercial, and there are a few trees on the sidewalk."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:37:12.194316+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:37:11.249821+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:37:06.469673+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file +[{"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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:52.349373+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:54:40.701848+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There are a few cars parked on the side of the road and a bus driving in the middle of the road. There are also a few people walking on the sidewalk. The buildings are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:43.179535+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:26.401102+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:30.089771+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:43.898955+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:29.275937+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:42.901441+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:57:46.072005+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:44.179648+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no debris or damage visible."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:43.681122+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:53.433086+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:43.394108+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:07.899548+00:00", "objects": ["water_in_road", "image_condition", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:11.847621+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear and dry."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:11.619320+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:54:58.651237+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:12.301813+00:00", "label": "free", "label_explanation": "There are no signs of a road blockade. The road is clear and free of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:12.804194+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:01.746941+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:13.015749+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:13.312300+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:13.508313+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water accumulation."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:12.533405+00:00", "label": "free", "label_explanation": "There are no signs of a road blockade. The road is clear and free of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:13.758213+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:14.010361+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a gas station on the right side of the intersection. The road is clear with no visible obstructions."}]}, {"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-06T00:56:58.958822+00:00", "objects": ["brt_lane", "image_condition", "water_in_road", "road_blockade", "road_blockade_reason", "inside_tunnel", "image_description", "traffic_ease_vehicle", "alert_category", "landslide", "fire", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:54:58.657161+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:56.427022+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:03.516493+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:03.759136+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:56.635355+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.690080+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:06.145281+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars parked on the side of the road and a few people walking around. The street is well-lit and there are no visible signs of any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:05.638691+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:04.356500+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.912996+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:57:56.165713+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:04.631447+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:00.131318+00:00", "objects": ["brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "image_condition", "landslide", "alert_category", "building_collapse", "image_description", "road_blockade", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:14.322980+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:13.673118+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:28.387200+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:14.324936+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.469196+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:12.757096+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:31.066753+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:14.529243+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:20.170468+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:57:31.346081+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There are cars, motorcycles, and people crossing the intersection. The traffic lights are green in all directions. There are some trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:14.044705+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:57:22.778637+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:56:49.182952+00:00", "objects": ["inside_tunnel", "brt_lane", "image_condition", "fire", "alert_category", "building_collapse", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.187284+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.469774+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:07.172644+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions. The image quality is good, and the scene is well-lit."}, {"object": "fire", "timestamp": "2024-02-06T00:57:55.662928+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.136327+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no obstructions or signs of a blockade."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.353505+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:55.700529+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:07.855023+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no obstructions or signs of a blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:08.861140+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry, with no visible puddles or signs of water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.372695+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry, with no visible puddles or signs of water accumulation."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:09.360212+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance or exit. There is a police car with its lights on, parked on the side of the road. There are no other vehicles visible in the image. The road is dry, with no visible signs of water or debris. The image is clear, with no visible distortions or obstructions. The image quality is good, and the scene is well-lit."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.418377+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:56:45.612730+00:00", "objects": ["inside_tunnel", "fire", "image_condition", "brt_lane", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "building_collapse", "road_blockade", "image_description", "landslide", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:42.698471+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:57:41.399858+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:41.595945+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:43.389658+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:43.591030+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:44.050366+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:44.279117+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:46.064979+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:53.437863+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-06T00:57:36.043491+00:00", "label": "null", "label_explanation": "A night-time image of a street corner. There is a red traffic light on the left side of the image. A motorcycle is driving in the right lane, and a truck is approaching from the opposite direction. The road is dry and clear, with no signs of water or debris. The image is clear and well-lit."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:41.135278+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:42.488474+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:09.720772+00:00", "objects": ["brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_condition", "water_in_road", "landslide", "road_blockade_reason", "fire", "alert_category", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.266056+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.061032+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:12.233367+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:13.419427+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:12.944713+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:55.763263+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:12.035368+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.267077+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:55.965905+00:00", "label": "car_accident", "label_explanation": "There is a yellow taxi partially blocking the road."}, {"object": "fire", "timestamp": "2024-02-06T00:57:55.546591+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:12.730665+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:13.844909+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There are cars parked on the side of the road. The street is lit by streetlights."}]}, {"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-06T00:57:05.199812+00:00", "objects": ["inside_tunnel", "brt_lane", "fire", "road_blockade", "alert_category", "image_condition", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:08.943480+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:09.641676+00:00", "label": "true", "label_explanation": "There is a sign on the right side of the image indicating a bus lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:14.130466+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:13.195257+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:13.624107+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:12.650751+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:13.413621+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:06.735076+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a black car driving on the right side of the road. There is a fallen tree blocking the road ahead. There are no other cars on the road. The street is lit by streetlights. There are buildings and trees on either side of the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:13.906750+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:12.940299+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-06T00:54:55.813107+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:14.397323+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}]}, {"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-06T00:57:02.591756+00:00", "objects": ["brt_lane", "inside_tunnel", "landslide", "image_condition", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "building_collapse", "road_blockade", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:57:56.565572+00:00", "label": "false", "label_explanation": "There is no BRT lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:56.080330+00:00", "label": "false", "label_explanation": "The image is dark and blurry, but it does not appear to be inside a tunnel."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:53.974935+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:55.152122+00:00", "label": "poor", "label_explanation": "The image is dark and blurry, but it is still possible to see the road and the surrounding area."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:55.818793+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:56.339905+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:10.179423+00:00", "label": "impossible", "label_explanation": "The road is completely submerged in water, making it impossible for vehicles to pass."}, {"object": "fire", "timestamp": "2024-02-06T00:57:54.952439+00:00", "label": "false", "label_explanation": "There is no evidence of fire."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:09.374608+00:00", "label": "normal", "label_explanation": "The image shows a dark and blurry road with no visible signs of problems. There is no evidence of any minor or major issues that would require an alert."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:09.618197+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:08.860397+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of obstructions or blockages."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:10.747493+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is still possible to see the road and surrounding area. There is a significant amount of water on the road, making it difficult for vehicles to pass. There are no visible signs of any other issues or problems."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": 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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:57.400595+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "brt_lane", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:55:12.604112+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:11.803125+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:13.142145+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "fire", "timestamp": "2024-02-06T00:55:12.873332+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:11.557450+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:12.375532+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:08.079303+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:13.654232+00:00", "label": "null", "label_explanation": "A night view of a road with cars passing by. There is a pedestrian bridge on the right side of the image and some trees on the left side. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:11.334025+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:13.373331+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:07.368121+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:12.062041+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:07.006193+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "image_description", "brt_lane", "road_blockade_reason", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:14.432126+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:12.323456+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:13.996227+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. Vehicles can pass without difficulty."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.713378+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:54:53.850716+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:14.824164+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:11.728303+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.452198+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:57:14.331586+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with cars driving on it. There are no visible obstructions or issues. The road is surrounded by trees and buildings."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:01.412655+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:13.736203+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:14.212718+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:41.927881+00:00", "objects": ["water_in_road", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade", "inside_tunnel", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:41.161756+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:41.587947+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:41.888654+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:42.663571+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:42.078750+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:48.055175+00:00", "label": "null", "label_explanation": "A night-time image of a road with a motorcyclist driving in the center. There are trees and buildings on either side of the road. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:41.366874+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:37.265446+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:40.884686+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:37.986769+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:42.892734+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:42.420231+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:57:35.724578+00:00", "objects": ["road_blockade", "brt_lane", "image_description", "inside_tunnel", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:54.231996+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:50.947750+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:55.935551+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection in Rio de Janeiro. There is a fallen tree blocking part of the road. There is a car accident on the right side of the road. There are no people visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:50.154384+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:55.021467+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:54.019107+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:55.232631+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:54.523419+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:54.748208+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:53.812972+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:55.516056+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:55.723487+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:41.293714+00:00", "objects": ["image_description", "building_collapse", "road_blockade", "image_condition", "landslide", "fire", "inside_tunnel", "brt_lane", "alert_category", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:52:33.759821+00:00", "label": "null", "label_explanation": "The image shows 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 car driving on the right side of the road and a bicycle lane on the left side. There are also some people walking on the sidewalk."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:52:32.849602+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:32.150703+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:52:31.721402+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:52:33.540849+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:52:33.068837+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:28.267499+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:28.970727+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:52:32.650133+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:52:33.335848+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:52:32.361502+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:52:31.939826+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:57:41.402291+00:00", "objects": ["road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "fire", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:48.893811+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:49.314636+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:50.109789+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:49.583681+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:50.591123+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars and a motorcycle driving on it. There is a gas station on the left side of the road and a building on the right side. Trees line the street on both sides."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:49.109783+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:48.379560+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:48.594206+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:44.702926+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:45.409246+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:49.820672+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:50.381821+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:44.583580+00:00", "objects": ["road_blockade", "inside_tunnel", "alert_category", "fire", "brt_lane", "landslide", "water_in_road", "image_description", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:51.264892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:46.884430+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:51.697192+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:55:52.176497+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:47.880916+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:52.672951+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.021858+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:52.589590+00:00", "label": "null", "label_explanation": "A night-time image of a street intersection. There are cars on the road and a few trees on either side of the road. The street lights are on and there is a building in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:51.482406+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:52.462428+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:50.761168+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:51.980219+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:57:40.252614+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "road_blockade", "building_collapse", "landslide", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:52.479517+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a bus driving in the middle of the road. There are also people walking on the sidewalk. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:46.464487+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:47.427048+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:50.564035+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:51.786807+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:52.051258+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:51.063318+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:51.278685+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:50.777518+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:51.552397+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:52.271775+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:50.356472+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-06T00:57:34.189259+00:00", "objects": ["road_blockade_reason", "brt_lane", "inside_tunnel", "water_in_road", "road_blockade", "building_collapse", "fire", "image_description", "image_condition", "alert_category", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:52.414082+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:48.928858+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:48.239277+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.919292+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:52.206459+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:52.893466+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:53.107965+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:53.803375+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The traffic lights are green in all directions. The buildings in the background are tall and brightly lit. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:51.716971+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:52.619276+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:53.309398+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:53.516826+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:41.354543+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "road_blockade_reason", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.791132+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:51.985642+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and the puddles are small and manageable."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:51.510714+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:52.267068+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-06T00:55:52.984764+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:47.999967+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:48.693016+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:52.486785+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:52.711129+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:53.476087+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:53.691385+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There is a red traffic light in the foreground and a green traffic light in the background. There are cars parked on either side of the street and a few trees in the background. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:53.216198+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:32.892663+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "traffic_ease_vehicle", "image_description", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:53.481844+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:54.409646+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:53.214563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:54.283424+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:40.781221+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are cars parked on the side of the road and people walking across the street. The road is well-lit and there are trees on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:52.709727+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:55:54.118218+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:53.686248+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:53.902312+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:52.999773+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:49.904719+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:49.335404+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:57:33.539019+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:26.630903+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:28.450700+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:32.942664+00:00", "label": "null", "label_explanation": "A night-time image of a road with a gas station on the right and a tree on the left. There is a car driving on the road. The road is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:27.336158+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.953858+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:28.044374+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:27.051573+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:27.745931+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:23.766435+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:26.849468+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:27.542548+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:28.228388+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}]}, {"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-06T00:57:27.572691+00:00", "objects": ["image_description", "landslide", "alert_category", "building_collapse", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:45.484551+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-way road intersection. There is a traffic light at the intersection, showing red for each, and a pedestrian crossing. Trees can be seen lining the road on both sides. There is a motorcycle on the right side of the screen, and a car approaching the intersection from the left side of the screen. Both vehicles are stopped at the red light. The road surface is dry and there are no visible obstructions or hazards."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:45.255166+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:44.279996+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:44.571968+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:39.779804+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:40.482623+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:43.558963+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:44.777539+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:43.813155+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:43.304889+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:44.989693+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:44.081625+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-06T00:57:28.626032+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "building_collapse", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:55:40.885071+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:41.084584+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:42.903383+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:44.069344+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:43.306584+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:44.553889+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:44.284463+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:44.985987+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:45.212094+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a bus driving on the dedicated BRT lane and a motorcycle on the rightmost lane. The road is clear with no blockades or other issues. The image quality is good with clear visibility."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:41.994733+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:44.781983+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:42.477604+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a blue bus driving on it."}]}, {"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-06T00:57:25.296863+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:20.616431+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:24.502668+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:26.209071+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:21.303239+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:25.291628+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:26.711820+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:25.730741+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:24.797601+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:26.016176+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:25.504469+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:25.033389+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:26.424909+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:29.896608+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:55:52.130546+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:50.825380+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:53.125887+00:00", "label": "null", "label_explanation": "The image is dark and not well lit. There are trees on either side of the road. The road is not visible."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.160281+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:52.349240+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:51.426831+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:52.615893+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:51.911334+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:47.007861+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:52.862640+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:51.632366+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:47.914087+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:57:23.543497+00:00", "objects": ["inside_tunnel", "image_condition", "alert_category", "building_collapse", "fire", "image_description", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade", "brt_lane", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:21.625103+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:25.259723+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:26.230449+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:26.434735+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:26.705886+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:27.425783+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street in Rio de Janeiro. There is a yellow taxi driving on the right side of the road, and other parked cars on the left side. The street is lit by streetlights, and there are buildings and trees on either side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:25.517760+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:26.005345+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:26.918523+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:25.732300+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:22.337328+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:27.150678+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-06T00:57:23.937141+00:00", "objects": ["water_in_road", "fire", "inside_tunnel", "alert_category", "building_collapse", "landslide", "brt_lane", "image_condition", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:56.947537+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:58.222483+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:53.115670+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:57.730313+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:58.010643+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:58.718975+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:53.815193+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:56.732822+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:57.222521+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:58.440944+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:57.522383+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:58.934494+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The surrounding buildings are intact and there are no signs of collapse or structural damage. There is no evidence of fire, landslide, or any other issues that would interfere with city life."}]}, {"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-06T00:57:34.785370+00:00", "objects": ["image_condition", "road_blockade_reason", "inside_tunnel", "brt_lane", "landslide", "fire", "building_collapse", "water_in_road", "road_blockade", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:23.421422+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.122174+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:19.888519+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:20.604863+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:25.307347+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:24.812329+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:24.592355+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:23.627543+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:23.899437+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.329940+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:25.521822+00:00", "label": "null", "label_explanation": "A night-time image of a street intersection in Rio de Janeiro. There is a truck with a white container driving through the intersection. There are no other cars in the intersection. The street is lit by streetlights. There are buildings on either side of the street. The buildings are mostly commercial, with a few residential buildings mixed in. The street is in good condition, with no visible potholes or cracks. There is no water on the road. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.100858+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-06T00:57:29.342972+00:00", "objects": ["landslide", "image_description", "inside_tunnel", "road_blockade_reason", "fire", "water_in_road", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_condition", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:55:25.487190+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:25.810162+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars, buses, and people on the street. The street is lit by streetlights. There are trees and buildings on either side of the street. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:19.757796+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.261928+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:24.987896+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:23.750927+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.001146+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:24.777059+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:20.558279+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.271327+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:23.462715+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.481918+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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-06T00:54:50.860766+00:00", "objects": ["alert_category", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "image_condition", "fire", "road_blockade_reason", "landslide"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:55:39.555098+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:39.123376+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:35.028330+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:40.306462+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:40.742247+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-way road intersection. The road is lit by streetlights. There are no cars or pedestrians visible in the image. The buildings along the road are mostly dark. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:38.826441+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:35.726295+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:39.837429+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:38.623685+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:55:40.030149+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:39.321370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:40.513572+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:54:53.483421+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:45.468349+00:00", "label": "null", "label_explanation": "The image is a CCTV image of a road in Rio de Janeiro. The road is clear with no visible obstructions. There are no signs of landslides, fires, or other major incidents. The image quality is good with no blurring or distortions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:39.578149+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:44.051212+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:40.332203+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:43.542208+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:55:44.741192+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:43.762800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:43.264342+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:45.022581+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:45.245081+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:44.251432+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:44.553637+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:57:48.894443+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:53.052033+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:52:43.556482+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:48.968793+00:00", "label": "true", "label_explanation": "There is a dedicated lane for buses."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:52.843245+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:43.337538+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:51.739276+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.957329+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:52.655925+00:00", "label": "minor", "label_explanation": "There is a bus partially blocking the road, which may cause minor traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:48.345191+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:53.254386+00:00", "label": "difficult", "label_explanation": "There is a bus partially blocking the road, which may cause minor traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:53.747773+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a bus partially blocking the road. The road is clear of any other obstructions. There are no signs of landslides, fires, or building collapses. The image is clear and there are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:53.542790+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:50.665829+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:47.447145+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:46.565095+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:42.973309+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:46.038870+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:48.197413+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection in Rio de Janeiro. There is a bus stop on the left side of the road and a supermarket on the right side. There are a few cars and buses on the road, and the traffic lights are green. The road is wet from the rain, but there are no major puddles or blockages."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:45.835816+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:47.932662+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:46.836716+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:42.244377+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:47.054036+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:46.356531+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:47.642721+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}]}, {"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-06T00:57:45.964751+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:48.006944+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:50.092581+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:48.291429+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:48.578632+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:44.979207+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:49.596948+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:50.405555+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a bus lane on the left side and a regular lane on the right side. There are trees on both sides of the avenue. The image is clear with no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:49.294152+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:49.858150+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:44.189148+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:49.094522+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:48.788826+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:49.842866+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:33.955188+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:35.759606+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:30.173090+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-06T00:55:35.467745+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:34.166533+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:36.288344+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": "alert_category", "timestamp": "2024-02-06T00:55:34.979453+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:34.531706+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:35.277713+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:30.866407+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:35.976097+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:34.753813+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:47.050276+00:00", "objects": ["image_condition", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:48.492134+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:48.897362+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:49.611644+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:45.689747+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:50.103367+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:50.573391+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are cars driving on the road and the traffic lights are on. The street is lit by streetlights. There are buildings and trees on either side of the road. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:45.071303+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:50.368274+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:48.689937+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:49.382421+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:49.173968+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:49.884537+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:57:53.391936+00:00", "objects": ["fire", "image_condition", "brt_lane", "alert_category", "image_description", "building_collapse", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "landslide", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:41.592777+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:40.167102+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:37.267744+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating a BRT lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:41.107171+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear, there are no blockades or obstructions, and traffic is flowing smoothly."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:42.288474+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a bus and several cars driving on it. There are trees and buildings on either side of the road. The road is well-lit and there are no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:41.378942+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:40.388029+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are small, insignificant puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:41.803844+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road is clear and dry, with no puddles or obstructions that could hinder vehicle movement."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:40.879169+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions or blockages."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:40.609982+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions or blockages."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:42.078670+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:36.577189+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:52.574620+00:00", "objects": ["inside_tunnel", "building_collapse", "image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "landslide", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:59.950456+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:53:04.676354+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:53:03.535714+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:53:00.642920+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:53:04.221176+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:53:03.944510+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:53:04.446910+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:53:05.140417+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:53:05.634827+00:00", "label": "null", "label_explanation": "The image is a night view of a road with a building on the left and trees on the right. There are cars on the road and the street lights are on. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:53:05.355381+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:53:04.943186+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:53:03.745323+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-06T00:55:08.692779+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_description", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "alert_category", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:53:01.189464+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:59.987018+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:53:00.274947+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:53:01.692146+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the road. The traffic lights are green and there is a fallen tree on the left side of the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:53:01.462925+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:52:59.571417+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:53:00.976056+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:53:00.694630+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:52:59.791968+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:53:00.480411+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:55.961161+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:56.665457+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:56.293768+00:00", "objects": ["water_in_road", "alert_category", "inside_tunnel", "brt_lane", "image_description", "traffic_ease_vehicle", "road_blockade", "building_collapse", "fire", "landslide", "road_blockade_reason", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:11.166372+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:11.887215+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:04.650316+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:08.085277+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:13.389866+00:00", "label": "null", "label_explanation": "A night view of a street with cars parked on the side. Trees line the street, and buildings can be seen in the background. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:12.881610+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:11.373197+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:12.346527+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:12.602671+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:13.192235+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:11.590632+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:10.879273+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or 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-06T00:56:53.512202+00:00", "objects": ["landslide", "traffic_ease_vehicle", "image_description", "water_in_road", "building_collapse", "fire", "road_blockade", "inside_tunnel", "image_condition", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:57:33.742007+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:55.044896+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:54:35.343095+00:00", "label": "null", "label_explanation": "The image is showing a night time street scene. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:47.149081+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:54.456395+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:57:54.778482+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:52.665891+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:36.939763+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:46.065321+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:54.258717+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:41.004142+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:53.964949+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:56:49.026831+00:00", "objects": ["water_in_road", "alert_category", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "road_blockade_reason", "image_condition", "fire", "road_blockade", "landslide", "image_description", "building_collapse"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:08.079554+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.780281+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:09.565386+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:01.593223+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:54.038111+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:08.581364+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:07.821285+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:57:54.959294+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:08.285956+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:54.227357+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:10.086166+00:00", "label": "null", "label_explanation": "The image shows a four-lane road at night. There are cars driving in both directions. The road is lit by streetlights. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:09.085474+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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-06T00:54:53.718036+00:00", "objects": ["alert_category", "image_description", "brt_lane", "fire", "inside_tunnel", "water_in_road", "landslide", "image_condition", "traffic_ease_vehicle", "building_collapse", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:55:42.216953+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-06T00:46:50.834520+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:38.344900+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:42.694027+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:37.616195+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:41.511612+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:43.118760+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:41.299020+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:42.916398+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:42.430771+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:41.722166+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:41.996002+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:53.941221+00:00", "objects": ["alert_category", "traffic_ease_vehicle", "landslide", "inside_tunnel", "fire", "brt_lane", "road_blockade_reason", "image_condition", "building_collapse", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:55:46.335738+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:47.042483+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:47.324643+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:41.645757+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:46.828039+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:42.439831+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:46.074264+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:45.332660+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:46.557806+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:47.548944+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection. There are cars and motorbikes on the road, and the traffic lights are on. The road is lit by streetlights. There are buildings and trees on either side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:45.538791+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:45.752228+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:55.945038+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "image_condition", "building_collapse", "brt_lane", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:34.145557+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:34.619528+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:33.919396+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:34.343481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:33.663800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:34.836262+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:30.835185+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:35.133569+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:35.340473+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:35.620699+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:30.147095+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:35.830423+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy urban intersection in Rio de Janeiro. The intersection is well-lit and there are several cars and buses on the road. There are also a number of people walking on the sidewalks. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}]}, {"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-06T00:57:49.647020+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:39.672157+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:40.097407+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:35.376774+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:40.384610+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:40.667724+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:39.157118+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:36.059714+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:39.392870+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:40.870623+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:38.883616+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:39.893150+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:41.123213+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars parked on either side and a person walking in the middle of the street."}]}, {"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-06T00:57:55.317540+00:00", "objects": ["image_description", "building_collapse", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "brt_lane", "image_condition", "landslide", "inside_tunnel", "water_in_road", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:44.124394+00:00", "label": "null", "label_explanation": "The image shows a night view of a wide, straight road with a central reservation and street lights. There are trees on either side of the road and buildings in the background. The road is dry and there is no traffic. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:43.130117+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:43.634946+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:42.467839+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:42.734485+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:39.033933+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:41.942747+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:43.883387+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:38.329939+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:42.222305+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:55:43.411353+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:42.930413+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:51.883304+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "alert_category", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:53:03.878905+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-06T00:53:04.097913+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:53:03.424144+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:59.580985+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:53:03.177989+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-06T00:53:02.279809+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:53:02.469514+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:53:04.381110+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few trees and parked cars on the side. There is a car driving on the left side of the road. The image is clear and well-lit."}, {"object": "fire", "timestamp": "2024-02-06T00:53:03.670657+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:53:02.702399+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:58.888056+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:53:02.967802+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:54.781883+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "brt_lane", "image_condition", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:55.744556+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:56.638971+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:56.430700+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:56.868888+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:52.333596+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:55.048398+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:55.949681+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:55.258919+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:57.137787+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are many people on the street, and they are all walking in the same direction. There are also some cars and buses on the street. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:55.532145+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:56.158689+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:51.648626+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:55:08.333589+00:00", "objects": ["image_description", "road_blockade", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "water_in_road", "fire", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:55.583743+00:00", "label": "null", "label_explanation": "The image shows 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 a few trees on the street and the buildings are mostly residential. The street is not very busy and there are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:53.899886+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:53.475045+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:54.393642+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:50.501020+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:49.780888+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:53.696527+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:54.885198+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:55.390653+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:54.681434+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:55.094738+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:54.173535+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:53.914080+00:00", "objects": ["inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "road_blockade", "image_description", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:46.864610+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:47.595156+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:52:50.697242+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:52:51.898025+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:52:51.188950+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:52:51.460139+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:52:50.470626+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:50.972293+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:52.663938+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road intersection in Rio de Janeiro. There are cars, trucks, and buses on the road, and people are walking on the sidewalks. The buildings are tall and brightly lit. The road is wet from the rain, but there are no major puddles or blockages."}, {"object": "landslide", "timestamp": "2024-02-06T00:52:52.403359+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:52:52.167986+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:52:51.688130+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:55:10.293039+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "road_blockade_reason", "image_description", "fire", "water_in_road", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:53.764258+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:52.902858+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics visible in the image."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:57.785503+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road scene with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:57.278918+00:00", "label": "free", "label_explanation": "The road is clear, with no blockades or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:58.899950+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:58.674391+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear and dry, allowing easy passage for vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:58.082216+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:57.577470+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road, causing a partial blockade. Vehicles can still pass with caution."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:30.557415+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a yellow taxi driving through it. The tunnel is well-lit and there are no signs of any blockages or hazards. The road is dry and there are no signs of any water accumulation. The surrounding buildings are intact and there are no signs of any damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:58.395915+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:57.067465+00:00", "label": "false", "label_explanation": "There are no puddles on the road. The road surface is clear and dry."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:56.778391+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions affecting the image quality."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:53.632435+00:00", "objects": ["alert_category", "building_collapse", "inside_tunnel", "image_description", "road_blockade", "fire", "brt_lane", "water_in_road", "road_blockade_reason", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:55:10.082204+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:10.360570+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:53.996393+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:11.696055+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or hazards. There are no signs of water, landslides, or fires. The image quality is good and there are no issues with clarity or focus."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:09.593868+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:10.580491+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:06.086848+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:09.376303+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:09.865090+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:09.111555+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:11.399529+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:10.951446+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible water or puddles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:51.977535+00:00", "objects": ["road_blockade", "building_collapse", "landslide", "brt_lane", "inside_tunnel", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade_reason", "image_description", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:07.382065+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.086746+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:08.917340+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.206451+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.492433+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:08.381592+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:08.654261+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:07.873466+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:07.656572+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:09.166489+00:00", "label": "null", "label_explanation": "The image is a night view of a street with cars, buses, and people crossing the road. There are trees on either side of the road and buildings in the background. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:06.867123+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.081172+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}]}, {"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-06T00:57:04.324213+00:00", "objects": ["image_description", "image_condition", "inside_tunnel", "building_collapse", "landslide", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade", "brt_lane", "road_blockade_reason", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:09.639481+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no cars on the road. The street lights are on. There are trees and buildings on either side of the road. The sky is dark and cloudy."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:07.432226+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:56.712474+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.642400+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:09.348921+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:08.913270+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.713722+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:09.123416+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:07.927487+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:02.973155+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:08.177293+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.441881+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:57:01.637270+00:00", "objects": ["brt_lane", "image_condition", "image_description", "inside_tunnel", "road_blockade_reason", "alert_category", "fire", "water_in_road", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.551137+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:56.246130+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:09.118791+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are also some trees and buildings in the background. The road is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.476998+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:56.464563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.000545+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-06T00:57:55.968156+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.220721+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:07.499078+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.758515+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:08.694511+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow freely."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.210204+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:38.797653+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:27.814951+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.424454+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:28.295723+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-06T00:55:27.620568+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:23.113109+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:27.329354+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:26.323031+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:27.126204+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:26.627325+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:26.107013+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:28.022363+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:26.888400+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:28.329967+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:23.483605+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems. It is difficult to see the details of the image."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:20.497374+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:25.023271+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.009600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:25.570584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.204532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:23.723680+00:00", "label": "true", "label_explanation": "There is significant water on the road. The water is covering a large area and is likely causing traffic disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.299683+00:00", "label": "difficult", "label_explanation": "The road is partially covered with water, but the water level is not high and vehicles can still pass through."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:25.803081+00:00", "label": "null", "label_explanation": "The image is blurry and it is difficult to see the details. There are some lights in the background and the road is not clearly visible."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:24.768974+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:19.791936+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.490688+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that would interfere with city life. The image shows a clear road with no 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-06T00:57:19.976084+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:27.224649+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:27.731621+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are a few cars parked on the side of the road and some trees on the sidewalk. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:25.829225+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:26.040265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:22.436287+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:25.525632+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:21.628770+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:26.520967+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:55:27.015032+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:26.306055+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:26.756960+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:27.512009+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:19.031222+00:00", "objects": ["image_description", "building_collapse", "brt_lane", "inside_tunnel", "landslide", "fire", "alert_category", "road_blockade_reason", "water_in_road", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:31.386837+00:00", "label": "null", "label_explanation": "The image is a CCTV screenshot of a road tunnel. The tunnel is dark and enclosed, with visible light sources on the ceiling. The walls are made of concrete and have a rough texture. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:30.965577+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:30.188761+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:28.799789+00:00", "label": "true", "label_explanation": "The image is dark and enclosed, with visible light sources on the ceiling. The walls are made of concrete and have a rough texture. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:28.990709+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear, and there is no sign of soil, rocks, or debris on or near the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:29.279744+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:31.169930+00:00", "label": "normal", "label_explanation": "The image shows a clear road with no visible issues. Traffic is flowing smoothly, and there are no signs of any problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:29.765134+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:29.976471+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:30.495534+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:29.505866+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:30.681996+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible water or puddles."}]}, {"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-06T00:57:32.056710+00:00", "objects": ["inside_tunnel", "image_condition", "fire", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "brt_lane", "water_in_road", "alert_category", "building_collapse", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:18.637297+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:22.106591+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:55:23.514309+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:23.738835+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:22.603257+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:22.820760+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:19.334966+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:22.334171+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:23.017056+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:23.239143+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:24.012347+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:24.211607+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a pedestrian crossing at the center. There are trees and buildings on either side of the road. The road is well-lit and there are no signs of traffic congestion or accidents. The image is clear and there are no obstructions to visibility."}]}, {"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-06T00:57:36.104299+00:00", "objects": ["inside_tunnel", "fire", "building_collapse", "road_blockade", "water_in_road", "alert_category", "brt_lane", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.433992+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:28.213864+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:27.937840+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:27.117778+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:26.902181+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:27.635947+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:23.242798+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:26.631130+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:27.431408+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:28.433245+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:28.708791+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:29.005476+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are people walking on the street, and cars parked on the side of the road. There are also some trees and buildings in the background."}]}, {"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-06T00:57:22.889454+00:00", "objects": ["water_in_road", "road_blockade_reason", "image_description", "road_blockade", "inside_tunnel", "alert_category", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:23.788981+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.267528+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:25.689612+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars driving in both directions. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.066437+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:20.078556+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.466765+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:24.795430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:25.049589+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:20.776012+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:23.577274+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:25.466147+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.270107+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:57:30.803082+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade_reason", "fire", "image_condition", "inside_tunnel", "building_collapse", "road_blockade", "image_description", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:27.276371+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:25.882551+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:22.792576+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:26.360203+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:27.070749+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:25.678512+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.056821+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:26.788429+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:26.091738+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:27.757806+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars, motorbikes, and people crossing the road. There are trees on either side of the road and buildings in the background. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:26.581965+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:27.479086+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:22.569782+00:00", "objects": ["building_collapse", "road_blockade", "road_blockade_reason", "inside_tunnel", "brt_lane", "water_in_road", "landslide", "image_condition", "alert_category", "traffic_ease_vehicle", "fire", "image_description"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:55:25.692542+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.901383+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:25.186534+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:20.818419+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:21.508907+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:24.689246+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:26.411838+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:24.405647+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:25.436208+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:26.188368+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:25.898469+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:26.623071+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are no cars on the road and the traffic lights are green. The street is lit by streetlights and there are trees on either side of the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:15.720515+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:27.402011+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.992779+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:27.690139+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:28.799462+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:23.788832+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:28.571232+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:55:29.081197+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:28.290197+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:29.588070+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:29.898653+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a clear road surface and no visible obstructions. There are trees on either side of the road and a few parked cars on the right side. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:29.300240+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:28.021675+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:20.135227+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:28.134049+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:23.616284+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:28.908952+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:29.402684+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:29.844642+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars and people crossing the intersection. The street is lit by streetlights. There are buildings and trees on either side of the street."}, {"object": "fire", "timestamp": "2024-02-06T00:55:29.118738+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:24.420125+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:27.624979+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:27.888361+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:28.614032+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:28.334436+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:29.623422+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:17.232182+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "alert_category", "building_collapse", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:25.369764+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:25.869037+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.639398+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:23.956532+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.663105+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.377475+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:21.038886+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.863644+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:25.164875+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:26.171624+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a street light on the left side of the image, and a few trees on the right side. The road is clear, with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:24.143384+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:20.333866+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:57:17.950944+00:00", "objects": ["water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "image_description", "image_condition", "building_collapse", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:22.078756+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-06T00:55:23.307683+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:22.297250+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:23.589751+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:22.579200+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:19.000817+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:24.093099+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. There are no people or vehicles visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:21.799711+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:23.074183+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:18.290145+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:23.864151+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:22.799490+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}]}, {"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-06T00:57:25.795781+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "water_in_road", "image_description", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:24.058465+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:22.371664+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:55:23.835186+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:23.138068+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:22.643299+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:24.549278+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with cars driving in both directions. There is a gas station on the right side of the road and a few trees on the left side. The road is well-lit, and the weather is clear."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:19.525229+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:22.925860+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:23.636423+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:18.788116+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:23.373359+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:24.329357+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:51.550329+00:00", "objects": ["brt_lane", "image_condition", "traffic_ease_vehicle", "alert_category", "image_description", "inside_tunnel", "water_in_road", "fire", "landslide", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:57.252419+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:59.740658+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:56:01.430219+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:56:00.647468+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:56:01.844032+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bike lane on the right side, separated by a green strip. On the left side of the road, there are tall trees and a sidewalk. In the background, there is a partial view of buildings and foliage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:56.624729+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:59.946193+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:56:01.145190+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:56:01.630385+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:56:00.430422+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:56:00.940008+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:56:00.218041+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:52.599146+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:39.152430+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:34.836648+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:39.350336+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water or puddles that could impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:37.667232+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:37.858151+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:38.400753+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:39.628297+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:38.142377+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:38.669739+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:39.839173+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a long road with cars driving in both directions. The road is lit by streetlights. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:34.149902+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:38.933996+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:55:01.093266+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "image_description", "image_condition", "building_collapse", "road_blockade", "landslide", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:40.559101+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:41.264731+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:45.054018+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:44.571704+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:46.093472+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:45.761791+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:46.566909+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are several cars on the road, and the street lights are on. The road is wet from the rain, but there are no major puddles. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:44.251676+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:45.543806+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:44.837471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:46.341301+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:45.336785+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-06T00:55:01.666078+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "inside_tunnel", "water_in_road", "building_collapse", "fire", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:42.625378+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There are no signs of water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:37.649471+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:48.245111+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a traffic light in the foreground and a park with a few trees and people in the background. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:36.934291+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:41.130806+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:42.120048+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:42.341837+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:42.846894+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:40.839809+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:41.335258+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:41.615124+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:41.840448+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:57:55.386872+00:00", "objects": ["landslide", "inside_tunnel", "fire", "image_condition", "brt_lane", "alert_category", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "water_in_road", "building_collapse", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:52:44.661289+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:38.865457+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:52:44.160103+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:52:42.667691+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:39.584491+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:52:43.657247+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:52:44.386719+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:43.090890+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:52:43.381412+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:52:42.880492+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:52:43.907796+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:44.885044+00:00", "label": "null", "label_explanation": "The image shows a busy intersection with cars, buses, and pedestrians. The road is wet from rain, but there are no major puddles or blockages. The traffic lights are green in all directions, and the pedestrians are crossing the street safely. There are a few trees and buildings in the background."}]}, {"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-06T00:57:51.175936+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "building_collapse", "image_description", "inside_tunnel", "road_blockade", "fire", "landslide", "road_blockade_reason", "brt_lane", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:56.579568+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:58.258586+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:56.858459+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:57.772908+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:58.749111+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:53.148102+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:57.065746+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:58.054509+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:58.473397+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:57.345551+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:53.852737+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:57.571486+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-06T00:57:50.976537+00:00", "objects": ["image_condition", "landslide", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "inside_tunnel", "road_blockade_reason", "road_blockade", "alert_category", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:54.923755+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:56.844579+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:56.622878+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:57.132801+00:00", "label": "null", "label_explanation": "The image shows a night view of a city intersection. There is a yellow taxi driving on the road in the foreground, and other vehicles in the background. There is a red traffic light visible. The road is wet from rain, but there is no flooding. There are buildings and trees on either side of the road. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:55.151680+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:51.933349+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:56.130833+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:51.243391+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:55.652143+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:55.434335+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:55.924521+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:55:56.347625+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:57:56.529262+00:00", "objects": ["traffic_ease_vehicle", "fire", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "landslide", "inside_tunnel", "water_in_road", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:49.600355+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-06T00:55:49.381071+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:44.994344+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:59.430285+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions. There are trees and buildings on either side of the road. The image is well-lit and the colors are vibrant. The road is dry and there are no signs of water or debris. The image is clear and there are no visible distortions or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:47.991661+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:48.677121+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:49.891078+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:44.361774+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:48.204961+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:49.163160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:48.472636+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:48.908766+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:50.943868+00:00", "objects": ["landslide", "alert_category", "image_condition", "brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "fire", "inside_tunnel", "road_blockade_reason", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:57:55.782944+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:10.599089+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:56.194954+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.737462+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:56.724920+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:11.616272+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:10.091782+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:12.195408+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-06T00:57:55.987815+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:57.162778+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:56.495280+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:10.878763+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:56:54.718723+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:14.427557+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:36.476328+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:57:37.218797+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:40.429061+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:15.118909+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:36.232446+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:57:41.346484+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road with cars driving in both directions. There is a bus driving in the BRT lane. The road is lit by streetlights. There are buildings and trees on either side of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:36.726570+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:36.958802+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:35.776097+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:41.130261+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:36.006772+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:46.519265+00:00", "objects": ["inside_tunnel", "image_description", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "road_blockade_reason", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.706542+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:09.413398+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left lane, likely due to the fallen tree. There are no other cars visible in the image."}, {"object": "fire", "timestamp": "2024-02-06T00:55:08.694283+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:08.906080+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:07.296054+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.907861+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.496096+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:54:57.198881+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:07.788555+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.489070+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:07.986269+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.206939+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:57:26.620217+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "image_description", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:40:40.180223+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:40:45.854607+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:40:45.358818+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:40:45.564136+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:40:40.963281+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:40:44.078687+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:40:46.355355+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. The road is dry and there are no signs of water or puddles. The surrounding buildings are intact and there are no signs of collapse or structural damage. The image is clear with no interference and there are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:40:46.075091+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:40:44.581658+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:40:44.849775+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:40:44.363480+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:40:45.070942+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}]}, {"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-06T00:57:00.848304+00:00", "objects": ["landslide", "brt_lane", "water_in_road", "road_blockade_reason", "inside_tunnel", "alert_category", "fire", "road_blockade", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:57:42.406734+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:46.041041+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:43.318609+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:53.431780+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:43.515731+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:04.882894+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no signs of accidents, fires, or other disruptions."}, {"object": "fire", "timestamp": "2024-02-06T00:57:42.608483+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:04.325561+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:05.250003+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:05.990330+00:00", "label": "impossible", "label_explanation": "The road is completely submerged in water, making it impossible for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:42.816289+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:21.712922+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or issues. The road surface is dry and clear, with no signs of water accumulation or puddles. There are no signs of any problems that might affect city life."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:57:10.468931+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:06.531109+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:02.113505+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:06.330590+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:06.069612+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:07.023086+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:07.235348+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:08.017735+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:07.560065+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:08.241030+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:07.816224+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:06.740117+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:54:58.656476+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:57.739321+00:00", "objects": ["water_in_road", "road_blockade", "inside_tunnel", "alert_category", "image_condition", "road_blockade_reason", "fire", "traffic_ease_vehicle", "building_collapse", "brt_lane", "landslide", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:57:52.673486+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:55.414579+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:40.434735+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:42.326879+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:47.151187+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:44.004585+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:57:36.355927+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:44.211957+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:42.812461+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:41.653204+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:36.109614+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:51:50.114385+00:00", "label": "null", "label_explanation": "The image is a night view of a city street. The street is well-lit and there is a fence on the left side of the road. There is a tall building on the right side of the road. The road is dry and there are no cars on the street."}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:42.908006+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:04:32.494920+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:04:27.173280+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:04:32.315625+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:04:32.088899+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, water, or other hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:04:28.002781+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:04:31.792446+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:04:31.609590+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:04:31.320437+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:04:33.314775+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a clear, dry surface and no visible traffic or pedestrians."}, {"object": "image_condition", "timestamp": "2024-02-06T00:04:31.085069+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:04:32.769959+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water."}, {"object": "landslide", "timestamp": "2024-02-06T00:04:33.031371+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:06.314193+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:17.094395+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:54.051152+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:52.667643+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:16.585474+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:14.900725+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and focused, with no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:18.677116+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with cars driving in both directions. There are street lights along the road and buildings on either side. The road is dry and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:15.386928+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:17.589491+00:00", "label": "easy", "label_explanation": "The road is dry, with only a few small puddles. Traffic can proceed with ease."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:15.098987+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is dry, with only a few small puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:15.981071+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:15.591155+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.885913+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for buses."}]}, {"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-06T00:56:58.797286+00:00", "objects": ["road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "alert_category", "image_condition", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:44.443121+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:44.131725+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:57.839510+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface. Vehicles can pass easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:52.674073+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:42.740617+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:57:42.520398+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:43.239950+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:56.159576+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:19.400867+00:00", "label": "null", "label_explanation": "A night-time image of a street with a fallen tree blocking part of the road. There are trees and buildings on either side of the road. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:42.329140+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:55.941699+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:43.439899+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file From ad86e26e74005bcd2064efd179e4377da86bc8ee Mon Sep 17 00:00:00 2001 From: d116626 Date: Mon, 5 Feb 2024 22:06:27 -0300 Subject: [PATCH 39/64] feat: add classification option --- app/Home.py | 10 ++++++++-- app/pages/Classificador de Labels.py | 3 +-- app/utils/utils.py | 3 +-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/app/Home.py b/app/Home.py index a6bb411..8f83156 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,8 +3,14 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import (create_map, display_camera_details, get_agrid_table, - get_cameras, get_filted_cameras_objects, treat_data) +from utils.utils import ( + create_map, + display_camera_details, + get_agrid_table, + get_cameras, + get_filted_cameras_objects, + treat_data, +) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index e4e05ee..876a395 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- import pandas as pd import streamlit as st -from utils.utils import (get_cameras, get_objects, get_objetcs_labels_df, - treat_data) +from utils.utils import get_cameras, get_objects, get_objetcs_labels_df, treat_data st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) diff --git a/app/utils/utils.py b/app/utils/utils.py index 3a186b4..30a89ec 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,8 +6,7 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, - GridUpdateMode) +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode from utils.api import APIVisionAI vision_api = APIVisionAI( From 8a7b5d29f6ecc060f0c93cdca4e051f63064207a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 01:06:40 +0000 Subject: [PATCH 40/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/Home.py | 10 ++-------- app/pages/Classificador de Labels.py | 3 ++- app/utils/utils.py | 3 ++- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/app/Home.py b/app/Home.py index 8f83156..a6bb411 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,14 +3,8 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import ( - create_map, - display_camera_details, - get_agrid_table, - get_cameras, - get_filted_cameras_objects, - treat_data, -) +from utils.utils import (create_map, display_camera_details, get_agrid_table, + get_cameras, get_filted_cameras_objects, treat_data) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index 876a395..e4e05ee 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -1,7 +1,8 @@ # -*- coding: utf-8 -*- import pandas as pd import streamlit as st -from utils.utils import get_cameras, get_objects, get_objetcs_labels_df, treat_data +from utils.utils import (get_cameras, get_objects, get_objetcs_labels_df, + treat_data) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) diff --git a/app/utils/utils.py b/app/utils/utils.py index 30a89ec..3a186b4 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,8 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode +from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, + GridUpdateMode) from utils.api import APIVisionAI vision_api = APIVisionAI( From afe6d9a2b5b99fcc9e7202eedd61246c96b704ad Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 02:10:37 -0300 Subject: [PATCH 41/64] chore: add translation to label classification --- app/Home.py | 24 +- app/pages/Classificador de Labels.py | 208 ++++-- app/utils/utils.py | 34 +- data/temp/mock_api_data.json | 2 +- data/temp/mock_image_classification.csv | 870 ++++++++++++++++++++++++ 5 files changed, 1060 insertions(+), 78 deletions(-) create mode 100644 data/temp/mock_image_classification.csv diff --git a/app/Home.py b/app/Home.py index a6bb411..14e658a 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,24 +3,32 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import (create_map, display_camera_details, get_agrid_table, - get_cameras, get_filted_cameras_objects, treat_data) +from utils.utils import ( + create_map, + display_camera_details, + get_agrid_table, + get_cameras, + get_filted_cameras_objects, + treat_data, +) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) - +DEFAULT_OBJECT = "water_level" st.markdown("# Mapa de Alagamentos | Vision AI") # get cameras cameras = get_cameras( + page_size=3000, only_active=False, use_mock_data=False, - update_mock_data=True, + update_mock_data=False, ) cameras_attr, cameras_identifications = treat_data(cameras) col1, col2 = st.columns(2) + with col1: objects = cameras_identifications["object"].unique().tolist() objects.sort() @@ -28,7 +36,7 @@ object_filter = st.selectbox( "Filtrar por objeto", objects, - index=objects.index("alert_category"), + index=objects.index(DEFAULT_OBJECT), ) @@ -45,8 +53,8 @@ ) labels_default = labels.copy() - if object_filter == "alert_category": - labels_default.remove("normal") + # if object_filter == "road_blockade": + # labels_default.remove("normal") # dropdown to select label given selected object label_filter = st.multiselect( "Filtrar por label", @@ -105,7 +113,7 @@ ) with col1: - st_folium(folium_map, key="fig1", height=600, width=800) + st_folium(folium_map, key="fig1", height=600, width="100%") # for camera_id in cameras_identifications_filter.index: # row = cameras_filter.loc[camera_id] diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index e4e05ee..fc10f8e 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -1,44 +1,121 @@ # -*- coding: utf-8 -*- +import json + import pandas as pd import streamlit as st -from utils.utils import (get_cameras, get_objects, get_objetcs_labels_df, - treat_data) +from utils.utils import explode_df, get_objects, get_objetcs_labels_df st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) st.markdown("# Classificador de labels | Vision AI") -cameras = get_cameras( - only_active=False, - use_mock_data=False, - update_mock_data=True, -) objects = pd.DataFrame(get_objects()) -cameras_attr, cameras_identifications = treat_data(cameras) -snapshots = cameras_attr[cameras_attr["snapshot_url"].notnull()][ - ["snapshot_url"] -] # noqa -cameras_objs = cameras_identifications[cameras_identifications.notna()][ - ["object", "label"] -] -cameras_objs = cameras_objs[~cameras_objs["label"].isin(["null"])] -cameras_objs = cameras_objs.merge(snapshots, on="id") -cameras_objs = cameras_objs.sample(frac=1) labels = get_objetcs_labels_df(objects) labels.index = labels["name"] labels = labels.drop(columns=["name"]) -# cameras_objs = cameras_objs.head(4) +# https://docs.google.com/document/d/1PRCjbIJw4_g3-p4gLjYoN0qTaenephyZyOsiOfVGWzM/edit + + +def get_translation(label): + markdown_translation = [ + { + "object": "image_condition", + "title": "A imagem está nítida?", + "condition": "Se a resposta for 'Não', pule para a próxima imagem.", # noqa + "explanation": "Confira se os detalhes na imagem estão claros e definidos. Uma imagem considerada nítida permite a identificação dos objetos e do cenário.", # noqa + "labels": { + "clean": "Sim", + "poor": "Não", + }, + }, + { + "object": "water_in_road", + "title": "Há água na via?", + "condition": "Se a resposta for 'Não', associe o rótulo ‘Baixa ou Indiferente’ à opção 3 e pule para 4.", # noqa + "explanation": " Inspeção visual para presença de água na pista, que pode variar desde uma leve umidade até condições de alagamento evidente.", # noqa + "labels": { + "true": "Sim", + "false": "Não", + }, + }, + { + "object": "water_level", + "title": "Qual o nível de acúmulo de água?", + "condition": "Se a resposta for 'Não', pule para a próxima imagem.", # noqa + "explanation": "Estime o volume de água presente na pista, categorizando-o como um muito baixa (menos que ¼ da roda de um veículo de passeio), bolsão (entre ¼ e ½ da roda), ou alagamento (mais que ½ da roda).", # noqa + "labels": { + "low_indifferent": "Baixa ou Indiferente", + "puddle": "Bolsão d'água", + "flodding": "Alagamento", + }, + }, + { + "object": "road_blockade", + "title": "Há algum bloqueio na via?", + "condition": "", + "explanation": "Avalie se há algum obstáculo na via que impeça a circulação de veículos. O obstáculo pode ser um acúmulo de água, árvore caída, carro enguiçado, entre outros.", # noqa + "labels": { + "free": "Sem obstáculos", + "partially_blocked": "Via parcialmente bloqueada", + "totally_blocked": "Via bloqueada", + }, + }, + ] + + for translation in markdown_translation: + if translation["object"] == label: + return translation + + +# + +snapshots_identifications = [ + { + "object": "image_condition", + "label": "none", + }, + { + "object": "water_in_road", + "label": "none", + }, + { + "object": "water_level", + "label": "none", + }, + { + "object": "road_blockade", + "label": "none", + }, +] + +mock_snapshots = pd.read_csv("./data/temp/mock_image_classification.csv") +mock_snapshots_list = mock_snapshots["image_url"].tolist() +snapshots = [ + { + "snapshot_url": snapshot_url, + "snapshot_identification": list(snapshots_identifications), + } + for snapshot_url in mock_snapshots_list +] + +snapshots_objects = explode_df( + pd.DataFrame(data=snapshots), "snapshot_identification" +) # noqa +# randomize dataframe +snapshots_objects = snapshots_objects.sample(frac=1) + + +def put_selected_label(label, snapshots_options): -def put_selected_label(labels_options, label): - selected_label = labels_options[labels_options["value"] == label] - selected_label = selected_label.reset_index() - label_to_put = selected_label.to_dict(orient="records") - # TODO: make a put for selected object/label - print(label_to_put, "\n") + snapshots_to_put = snapshots_options.to_dict() + + snapshots_to_put["label"] = label + # # TODO: make a put for selected object/label + print(json.dumps(snapshots_to_put, indent=4), "\n") customized_button = st.markdown( @@ -56,66 +133,81 @@ def put_selected_label(labels_options, label): ) -def buttom(label, labels_options): +def buttom( + label, + label_translated, + row, +): if st.button( - label, + label_translated, on_click=put_selected_label, args=( - labels_options, label, + row, ), ): # noqa pass # Create a state variable to keep track of the current image index -if "current_image_index" not in st.session_state: - st.session_state.current_image_index = 0 +if "row_index" not in st.session_state: + st.session_state.row_index = 0 # Check if there are more images to review -if st.session_state.current_image_index >= len(cameras_objs): +if st.session_state.row_index >= len(snapshots_objects): st.write("You have reviewed all images.") if st.button("Reset"): st.markdown("TODO: Reset the state variables and start over.") else: # Get the current image from the DataFrame - current_image = cameras_objs.iloc[st.session_state.current_image_index] # noqa + row = snapshots_objects.iloc[st.session_state.row_index] # noqa st.write( - f"INDEX: {st.session_state.current_image_index +1} / {len(cameras_objs)}" # noqa + f"INDEX: {st.session_state.row_index +1} / {len(snapshots_objects)}" # noqa ) # noqa # Extract relevant information - name = current_image["object"] - - snapshot_url = current_image["snapshot_url"] - - # Center the image - st.markdown( - f""" -
- -
- """, - unsafe_allow_html=True, - ) + name = row["object"] + translate_dict = get_translation(name) + snapshot_url = row["snapshot_url"] labels_options = labels.loc[name] choices = labels_options["value"].tolist() - - st.markdown( - f"

{name}

", - unsafe_allow_html=True, - ) - + choices.sort() + if "true" in choices: + choices = ["true", "false"] + + # st.write" + col1, col2, col3 = st.columns(3) + with col2: + st.image(snapshot_url) + st.markdown( + f"### {translate_dict.get('title')}", + unsafe_allow_html=True, + ) + st.markdown( + f"**Explicação:** {translate_dict.get('explanation')}", + unsafe_allow_html=True, + ) # place labels in a grid of 2 columns - col1, col2, col3, col4 = st.columns(4) + col1, col2, col3, col4, col5, col6 = st.columns(6) for i, label in enumerate(choices): + print(i, label) + label_translated = translate_dict.get("labels").get(label) + if i % 2 == 0: - with col2: - buttom(label, labels_options) - else: with col3: - buttom(label, labels_options) - - st.session_state.current_image_index += 1 # noqa + buttom( + label=label, + label_translated=label_translated, + row=row, + ) + else: + with col4: + buttom( + label=label, + label_translated=label_translated, + row=row, + ) + + st.session_state.row_index += 1 # noqa diff --git a/app/utils/utils.py b/app/utils/utils.py index 3a186b4..05948f4 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,8 +6,7 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, - GridUpdateMode) +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode from utils.api import APIVisionAI vision_api = APIVisionAI( @@ -108,7 +107,8 @@ def treat_data(response): return cameras_attr, cameras_identifications -def explode_df(df, column_to_explode, prefix=None): +def explode_df(dataframe, column_to_explode, prefix=None): + df = dataframe.copy() exploded_df = df.explode(column_to_explode) new_df = pd.json_normalize(exploded_df[column_to_explode]) @@ -172,13 +172,16 @@ def display_camera_details(row, cameras_identifications): st.markdown(f"### 📷 Camera snapshot") # noqa st.markdown(f"Endereço: {camera_name}") - st.markdown(f"Data Snapshot: {snapshot_timestamp}") + # st.markdown(f"Data Snapshot: {snapshot_timestamp}") # get cameras_attr url from selected row by id if image_url is None: st.markdown("Falha ao capturar o snapshot da câmera.") else: - st.image(image_url) + st.markdown( + f""" """, + unsafe_allow_html=True, + ) camera_identifications = cameras_identifications.loc[camera_id] # noqa get_agrid_table(table=camera_identifications.reset_index()) @@ -192,11 +195,20 @@ def get_icon_color(label: Union[bool, None]): "impossibe", "poor", "true", + "flodding", ]: # noqa return "red" - elif label in ["minor", "partially_blocked", "difficult"]: + elif label in ["minor", "partially_blocked", "difficult", "puddle"]: return "orange" - elif label in ["normal", "free", "easy", "moderate", "clean", "false"]: + elif label in [ + "normal", + "free", + "easy", + "moderate", + "clean", + "false", + "low_indifferent", + ]: return "green" else: return "gray" @@ -213,10 +225,10 @@ def create_map(chart_data, location=None): chart_data["latitude"].mean(), chart_data["longitude"].mean(), ], # noqa - zoom_start=10.0, + zoom_start=11, ) else: - m = folium.Map(location=[-22.917690, -43.413861], zoom_start=10) + m = folium.Map(location=[-22.917690, -43.413861], zoom_start=11) for _, row in chart_data.iterrows(): icon_color = get_icon_color(row["label"]) @@ -289,7 +301,7 @@ def get_agrid_table(table): gb.configure_selection("single", use_checkbox=False) gb.configure_side_bar() gb.configure_grid_options(enableCellTextSelection=True) - gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa + # gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa grid_options = gb.build() grid_response = AgGrid( @@ -301,7 +313,7 @@ def get_agrid_table(table): # fit_columns_on_grid_load=True # custom_css=custom_css, # allow_unsafe_jscode=True, - # height="600px", + height=600, # width="100%", ) diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index 0930ca2..eda672d 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:52.349373+00:00", "objects": ["image_description", "water_in_road", "landslide", "brt_lane", "alert_category", "inside_tunnel", "image_condition", "fire", "building_collapse", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:54:40.701848+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There are a few cars parked on the side of the road and a bus driving in the middle of the road. There are also a few people walking on the sidewalk. The buildings are tall and brightly lit. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:43.179535+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:26.401102+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:30.089771+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:43.898955+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:29.275937+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structure or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:42.901441+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:57:46.072005+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:44.179648+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no debris or damage visible."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:43.681122+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:53.433086+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:43.394108+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:07.899548+00:00", "objects": ["water_in_road", "image_condition", "inside_tunnel", "road_blockade", "alert_category", "brt_lane", "building_collapse", "fire", "traffic_ease_vehicle", "road_blockade_reason", "landslide", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:11.847621+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear and dry."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:11.619320+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:54:58.651237+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:12.301813+00:00", "label": "free", "label_explanation": "There are no signs of a road blockade. The road is clear and free of any obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:12.804194+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that might interfere with city life. The image shows a clear road with no obstructions or hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:01.746941+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:13.015749+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:13.312300+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:13.508313+00:00", "label": "easy", "label_explanation": "The road surface is clear and dry, with no signs of water accumulation."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:12.533405+00:00", "label": "free", "label_explanation": "There are no signs of a road blockade. The road is clear and free of any obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:13.758213+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:14.010361+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a gas station on the right side of the intersection. The road is clear with no visible obstructions."}]}, {"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-06T00:56:58.958822+00:00", "objects": ["brt_lane", "image_condition", "water_in_road", "road_blockade", "road_blockade_reason", "inside_tunnel", "image_description", "traffic_ease_vehicle", "alert_category", "landslide", "fire", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:54:58.657161+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:56.427022+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:03.516493+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:03.759136+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:56.635355+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.690080+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:06.145281+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars parked on the side of the road and a few people walking around. The street is well-lit and there are no visible signs of any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:05.638691+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:04.356500+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.912996+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:57:56.165713+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:04.631447+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:00.131318+00:00", "objects": ["brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel", "image_condition", "landslide", "alert_category", "building_collapse", "image_description", "road_blockade", "fire"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:14.322980+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:13.673118+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:28.387200+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:14.324936+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.469196+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:12.757096+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:31.066753+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:14.529243+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:20.170468+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:57:31.346081+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There are cars, motorcycles, and people crossing the intersection. The traffic lights are green in all directions. There are some trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:14.044705+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:57:22.778637+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:56:49.182952+00:00", "objects": ["inside_tunnel", "brt_lane", "image_condition", "fire", "alert_category", "building_collapse", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "water_in_road", "image_description", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.187284+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.469774+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:07.172644+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible distortions or obstructions. The image quality is good, and the scene is well-lit."}, {"object": "fire", "timestamp": "2024-02-06T00:57:55.662928+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.136327+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The road is clear, with no obstructions or signs of a blockade."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.353505+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:55.700529+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:07.855023+00:00", "label": "free", "label_explanation": "There is no road blockade visible in the image. The road is clear, with no obstructions or signs of a blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:08.861140+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is dry, with no visible puddles or signs of water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.372695+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry, with no visible puddles or signs of water accumulation."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:09.360212+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with no obstructions or signs of a tunnel entrance or exit. There is a police car with its lights on, parked on the side of the road. There are no other vehicles visible in the image. The road is dry, with no visible signs of water or debris. The image is clear, with no visible distortions or obstructions. The image quality is good, and the scene is well-lit."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.418377+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:56:45.612730+00:00", "objects": ["inside_tunnel", "fire", "image_condition", "brt_lane", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "building_collapse", "road_blockade", "image_description", "landslide", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:42.698471+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:57:41.399858+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:41.595945+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:43.389658+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:43.591030+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:44.050366+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:44.279117+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:46.064979+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:53.437863+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-06T00:57:36.043491+00:00", "label": "null", "label_explanation": "A night-time image of a street corner. There is a red traffic light on the left side of the image. A motorcycle is driving in the right lane, and a truck is approaching from the opposite direction. The road is dry and clear, with no signs of water or debris. The image is clear and well-lit."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:41.135278+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:42.488474+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:09.720772+00:00", "objects": ["brt_lane", "inside_tunnel", "road_blockade", "traffic_ease_vehicle", "building_collapse", "image_condition", "water_in_road", "landslide", "road_blockade_reason", "fire", "alert_category", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.266056+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.061032+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:12.233367+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:13.419427+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:12.944713+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:55.763263+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:12.035368+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.267077+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:55.965905+00:00", "label": "car_accident", "label_explanation": "There is a yellow taxi partially blocking the road."}, {"object": "fire", "timestamp": "2024-02-06T00:57:55.546591+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:12.730665+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:13.844909+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There are cars parked on the side of the road. The street is lit by streetlights."}]}, {"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-06T00:57:05.199812+00:00", "objects": ["inside_tunnel", "brt_lane", "fire", "road_blockade", "alert_category", "image_condition", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:08.943480+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:09.641676+00:00", "label": "true", "label_explanation": "There is a sign on the right side of the image indicating a bus lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:14.130466+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:13.195257+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:13.624107+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that would interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:12.650751+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:13.413621+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:06.735076+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a black car driving on the right side of the road. There is a fallen tree blocking the road ahead. There are no other cars on the road. The street is lit by streetlights. There are buildings and trees on either side of the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:13.906750+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:12.940299+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "landslide", "timestamp": "2024-02-06T00:54:55.813107+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:14.397323+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}]}, {"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-06T00:57:02.591756+00:00", "objects": ["brt_lane", "inside_tunnel", "landslide", "image_condition", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "fire", "alert_category", "building_collapse", "road_blockade", "image_description"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:57:56.565572+00:00", "label": "false", "label_explanation": "There is no BRT lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:56.080330+00:00", "label": "false", "label_explanation": "The image is dark and blurry, but it does not appear to be inside a tunnel."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:53.974935+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:55.152122+00:00", "label": "poor", "label_explanation": "The image is dark and blurry, but it is still possible to see the road and the surrounding area."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:55.818793+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:56.339905+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:10.179423+00:00", "label": "impossible", "label_explanation": "The road is completely submerged in water, making it impossible for vehicles to pass."}, {"object": "fire", "timestamp": "2024-02-06T00:57:54.952439+00:00", "label": "false", "label_explanation": "There is no evidence of fire."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:09.374608+00:00", "label": "normal", "label_explanation": "The image shows a dark and blurry road with no visible signs of problems. There is no evidence of any minor or major issues that would require an alert."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:09.618197+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:08.860397+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of obstructions or blockages."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:10.747493+00:00", "label": "null", "label_explanation": "The image is dark and blurry, but it is still possible to see the road and surrounding area. There is a significant amount of water on the road, making it difficult for vehicles to pass. There are no visible signs of any other issues or problems."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": 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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:57.400595+00:00", "objects": ["building_collapse", "road_blockade", "traffic_ease_vehicle", "fire", "water_in_road", "alert_category", "brt_lane", "image_description", "image_condition", "landslide", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:55:12.604112+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:11.803125+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:13.142145+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not impeded."}, {"object": "fire", "timestamp": "2024-02-06T00:55:12.873332+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:11.557450+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:12.375532+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:08.079303+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:13.654232+00:00", "label": "null", "label_explanation": "A night view of a road with cars passing by. There is a pedestrian bridge on the right side of the image and some trees on the left side. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:11.334025+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:13.373331+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:07.368121+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:12.062041+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:07.006193+00:00", "objects": ["water_in_road", "building_collapse", "traffic_ease_vehicle", "landslide", "fire", "road_blockade", "alert_category", "inside_tunnel", "image_description", "brt_lane", "road_blockade_reason", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:14.432126+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:12.323456+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:13.996227+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, and free of puddles. Vehicles can pass without difficulty."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.713378+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:54:53.850716+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:14.824164+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:11.728303+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.452198+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:57:14.331586+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with cars driving on it. There are no visible obstructions or issues. The road is surrounded by trees and buildings."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:01.412655+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:13.736203+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:14.212718+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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": ["road_blockade_reason", "image_description", "image_condition", "water_in_road", "brt_lane", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "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": ["image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "inside_tunnel", "landslide", "image_description", "building_collapse", "alert_category", "water_in_road", "traffic_ease_vehicle", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["image_condition", "building_collapse", "image_description", "road_blockade", "road_blockade_reason", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "water_in_road", "brt_lane", "landslide", "fire"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "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}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:41.927881+00:00", "objects": ["water_in_road", "road_blockade_reason", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade", "inside_tunnel", "image_condition", "brt_lane", "landslide", "fire"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:41.161756+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:41.587947+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:41.888654+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:42.663571+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:42.078750+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:48.055175+00:00", "label": "null", "label_explanation": "A night-time image of a road with a motorcyclist driving in the center. There are trees and buildings on either side of the road. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:41.366874+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:37.265446+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:40.884686+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:37.986769+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:42.892734+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:42.420231+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:57:35.724578+00:00", "objects": ["road_blockade", "brt_lane", "image_description", "inside_tunnel", "building_collapse", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:54.231996+00:00", "label": "free", "label_explanation": "There is no blockade. The road is clear with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:50.947750+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:55.935551+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection in Rio de Janeiro. There is a fallen tree blocking part of the road. There is a car accident on the right side of the road. There are no people visible in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:50.154384+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:55.021467+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:54.019107+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:55.232631+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:54.523419+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:54.748208+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:53.812972+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:55.516056+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:55.723487+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:41.293714+00:00", "objects": ["image_description", "building_collapse", "road_blockade", "image_condition", "landslide", "fire", "inside_tunnel", "brt_lane", "alert_category", "traffic_ease_vehicle", "road_blockade_reason", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:52:33.759821+00:00", "label": "null", "label_explanation": "The image shows 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 car driving on the right side of the road and a bicycle lane on the left side. There are also some people walking on the sidewalk."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:52:32.849602+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:32.150703+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:52:31.721402+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:52:33.540849+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:52:33.068837+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:28.267499+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:28.970727+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:52:32.650133+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:52:33.335848+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:52:32.361502+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:52:31.939826+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:57:41.402291+00:00", "objects": ["road_blockade", "alert_category", "traffic_ease_vehicle", "building_collapse", "image_description", "road_blockade_reason", "image_condition", "water_in_road", "inside_tunnel", "brt_lane", "fire", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:48.893811+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:49.314636+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:50.109789+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:49.583681+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:50.591123+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars and a motorcycle driving on it. There is a gas station on the left side of the road and a building on the right side. Trees line the street on both sides."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:49.109783+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:48.379560+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:48.594206+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:44.702926+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:45.409246+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:49.820672+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:50.381821+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:44.583580+00:00", "objects": ["road_blockade", "inside_tunnel", "alert_category", "fire", "brt_lane", "landslide", "water_in_road", "image_description", "road_blockade_reason", "traffic_ease_vehicle", "image_condition", "building_collapse"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:51.264892+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:46.884430+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:51.697192+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:55:52.176497+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:47.880916+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:52.672951+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.021858+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:52.589590+00:00", "label": "null", "label_explanation": "A night-time image of a street intersection. There are cars on the road and a few trees on either side of the road. The street lights are on and there is a building in the background."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:51.482406+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:52.462428+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:50.761168+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:51.980219+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:57:40.252614+00:00", "objects": ["image_description", "inside_tunnel", "brt_lane", "water_in_road", "fire", "traffic_ease_vehicle", "road_blockade_reason", "alert_category", "road_blockade", "building_collapse", "landslide", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:52.479517+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a bus driving in the middle of the road. There are also people walking on the sidewalk. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:46.464487+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:47.427048+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:50.564035+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:51.786807+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:52.051258+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:51.063318+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:51.278685+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:50.777518+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:51.552397+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:52.271775+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:50.356472+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}]}, {"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-06T00:57:34.189259+00:00", "objects": ["road_blockade_reason", "brt_lane", "inside_tunnel", "water_in_road", "road_blockade", "building_collapse", "fire", "image_description", "image_condition", "alert_category", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:52.414082+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:48.928858+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:48.239277+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.919292+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:52.206459+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:52.893466+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:53.107965+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:53.803375+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy intersection in Rio de Janeiro. There are cars, buses, and pedestrians crossing the intersection. The traffic lights are green in all directions. The buildings in the background are tall and brightly lit. The image is clear and well-lit."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:51.716971+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:52.619276+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:53.309398+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:53.516826+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:41.354543+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "road_blockade_reason", "fire", "inside_tunnel", "brt_lane", "alert_category", "building_collapse", "landslide", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.791132+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:51.985642+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions and the puddles are small and manageable."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:51.510714+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:52.267068+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "fire", "timestamp": "2024-02-06T00:55:52.984764+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:47.999967+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:48.693016+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:52.486785+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:52.711129+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:53.476087+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:53.691385+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There is a red traffic light in the foreground and a green traffic light in the background. There are cars parked on either side of the street and a few trees in the background. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:53.216198+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:32.892663+00:00", "objects": ["road_blockade_reason", "landslide", "road_blockade", "traffic_ease_vehicle", "image_description", "image_condition", "fire", "alert_category", "building_collapse", "water_in_road", "brt_lane", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:53.481844+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:54.409646+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:53.214563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:54.283424+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:40.781221+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are cars parked on the side of the road and people walking across the street. The road is well-lit and there are trees on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:52.709727+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:55:54.118218+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:53.686248+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:53.902312+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:52.999773+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:49.904719+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:49.335404+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:57:33.539019+00:00", "objects": ["image_condition", "landslide", "image_description", "road_blockade_reason", "inside_tunnel", "fire", "road_blockade", "building_collapse", "brt_lane", "water_in_road", "alert_category", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:26.630903+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:28.450700+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:32.942664+00:00", "label": "null", "label_explanation": "A night-time image of a road with a gas station on the right and a tree on the left. There is a car driving on the road. The road is lit by streetlights."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:27.336158+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.953858+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:28.044374+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:27.051573+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:27.745931+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:23.766435+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:26.849468+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:27.542548+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:28.228388+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}]}, {"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-06T00:57:27.572691+00:00", "objects": ["image_description", "landslide", "alert_category", "building_collapse", "inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:45.484551+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-way road intersection. There is a traffic light at the intersection, showing red for each, and a pedestrian crossing. Trees can be seen lining the road on both sides. There is a motorcycle on the right side of the screen, and a car approaching the intersection from the left side of the screen. Both vehicles are stopped at the red light. The road surface is dry and there are no visible obstructions or hazards."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:45.255166+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:44.279996+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:44.571968+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:39.779804+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:40.482623+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:43.558963+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:44.777539+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:43.813155+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:43.304889+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:44.989693+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:44.081625+00:00", "label": "free", "label_explanation": "There is no road blockade."}]}, {"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-06T00:57:28.626032+00:00", "objects": ["landslide", "fire", "alert_category", "image_condition", "building_collapse", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description", "inside_tunnel", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:55:40.885071+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:41.084584+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:42.903383+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:44.069344+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:43.306584+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:44.553889+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:44.284463+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:44.985987+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:45.212094+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There is a bus driving on the dedicated BRT lane and a motorcycle on the rightmost lane. The road is clear with no blockades or other issues. The image quality is good with clear visibility."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:41.994733+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:44.781983+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:42.477604+00:00", "label": "true", "label_explanation": "There is a dedicated lane for bus rapid transit (BRT) with a blue bus driving on it."}]}, {"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-06T00:57:25.296863+00:00", "objects": ["inside_tunnel", "image_condition", "traffic_ease_vehicle", "brt_lane", "road_blockade_reason", "image_description", "building_collapse", "water_in_road", "fire", "alert_category", "road_blockade", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:20.616431+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:24.502668+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:26.209071+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:21.303239+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:25.291628+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:26.711820+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:25.730741+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:24.797601+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:26.016176+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:25.504469+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:25.033389+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:26.424909+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:29.896608+00:00", "objects": ["building_collapse", "image_condition", "image_description", "water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "alert_category", "inside_tunnel", "landslide", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:55:52.130546+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:50.825380+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:53.125887+00:00", "label": "null", "label_explanation": "The image is dark and not well lit. There are trees on either side of the road. The road is not visible."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.160281+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:52.349240+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:51.426831+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:52.615893+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:51.911334+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:47.007861+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:52.862640+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:51.632366+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:47.914087+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}]}, {"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-06T00:57:23.543497+00:00", "objects": ["inside_tunnel", "image_condition", "alert_category", "building_collapse", "fire", "image_description", "water_in_road", "road_blockade_reason", "traffic_ease_vehicle", "road_blockade", "brt_lane", "landslide"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:21.625103+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:25.259723+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:26.230449+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:26.434735+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:26.705886+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:27.425783+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street in Rio de Janeiro. There is a yellow taxi driving on the right side of the road, and other parked cars on the left side. The street is lit by streetlights, and there are buildings and trees on either side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:25.517760+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:26.005345+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:26.918523+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road surface is clear and dry, with no visible puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:25.732300+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear with no obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:22.337328+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:27.150678+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}]}, {"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-06T00:57:23.937141+00:00", "objects": ["water_in_road", "fire", "inside_tunnel", "alert_category", "building_collapse", "landslide", "brt_lane", "image_condition", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:56.947537+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:58.222483+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:53.115670+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:57.730313+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:58.010643+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:58.718975+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:53.815193+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:56.732822+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:57.222521+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:58.440944+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:57.522383+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:58.934494+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The surrounding buildings are intact and there are no signs of collapse or structural damage. There is no evidence of fire, landslide, or any other issues that would interfere with city life."}]}, {"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-06T00:57:34.785370+00:00", "objects": ["image_condition", "road_blockade_reason", "inside_tunnel", "brt_lane", "landslide", "fire", "building_collapse", "water_in_road", "road_blockade", "alert_category", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:23.421422+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.122174+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:19.888519+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:20.604863+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:25.307347+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:24.812329+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:24.592355+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:23.627543+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:23.899437+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.329940+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:25.521822+00:00", "label": "null", "label_explanation": "A night-time image of a street intersection in Rio de Janeiro. There is a truck with a white container driving through the intersection. There are no other cars in the intersection. The street is lit by streetlights. There are buildings on either side of the street. The buildings are mostly commercial, with a few residential buildings mixed in. The street is in good condition, with no visible potholes or cracks. There is no water on the road. The image is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.100858+00:00", "label": "easy", "label_explanation": "There is no water on the road."}]}, {"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-06T00:57:29.342972+00:00", "objects": ["landslide", "image_description", "inside_tunnel", "road_blockade_reason", "fire", "water_in_road", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_condition", "alert_category"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:55:25.487190+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:25.810162+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars, buses, and people on the street. The street is lit by streetlights. There are trees and buildings on either side of the street. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:19.757796+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.261928+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:24.987896+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:23.750927+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.001146+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:24.777059+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:20.558279+00:00", "label": "false", "label_explanation": "The lane is not marked or designated for bus rapid transit use."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.271327+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:23.462715+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.481918+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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-06T00:54:50.860766+00:00", "objects": ["alert_category", "road_blockade", "inside_tunnel", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "image_condition", "fire", "road_blockade_reason", "landslide"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:55:39.555098+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:39.123376+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:35.028330+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:40.306462+00:00", "label": "easy", "label_explanation": "The road is clear, dry, or slightly wet with small, manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:40.742247+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-way road intersection. The road is lit by streetlights. There are no cars or pedestrians visible in the image. The buildings along the road are mostly dark. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:38.826441+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:35.726295+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:39.837429+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:38.623685+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:55:40.030149+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:39.321370+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:40.513572+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:54:53.483421+00:00", "objects": ["image_description", "inside_tunnel", "road_blockade_reason", "brt_lane", "water_in_road", "fire", "road_blockade", "image_condition", "traffic_ease_vehicle", "landslide", "alert_category", "building_collapse"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:45.468349+00:00", "label": "null", "label_explanation": "The image is a CCTV image of a road in Rio de Janeiro. The road is clear with no visible obstructions. There are no signs of landslides, fires, or other major incidents. The image quality is good with no blurring or distortions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:39.578149+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:44.051212+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:40.332203+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:43.542208+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:55:44.741192+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:43.762800+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:43.264342+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:45.022581+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:45.245081+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:44.251432+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:44.553637+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:57:48.894443+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "building_collapse", "road_blockade", "image_condition", "water_in_road", "alert_category", "inside_tunnel", "traffic_ease_vehicle", "image_description", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:53.052033+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:52:43.556482+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:48.968793+00:00", "label": "true", "label_explanation": "There is a dedicated lane for buses."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:52.843245+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:43.337538+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:51.739276+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:51.957329+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:52.655925+00:00", "label": "minor", "label_explanation": "There is a bus partially blocking the road, which may cause minor traffic disruptions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:48.345191+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:53.254386+00:00", "label": "difficult", "label_explanation": "There is a bus partially blocking the road, which may cause minor traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:53.747773+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a bus partially blocking the road. The road is clear of any other obstructions. There are no signs of landslides, fires, or building collapses. The image is clear and there are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:53.542790+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:50.665829+00:00", "objects": ["fire", "road_blockade_reason", "brt_lane", "water_in_road", "image_description", "image_condition", "landslide", "alert_category", "inside_tunnel", "building_collapse", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:47.447145+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:46.565095+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:42.973309+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:46.038870+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:48.197413+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection in Rio de Janeiro. There is a bus stop on the left side of the road and a supermarket on the right side. There are a few cars and buses on the road, and the traffic lights are green. The road is wet from the rain, but there are no major puddles or blockages."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:45.835816+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:47.932662+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:46.836716+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:42.244377+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:47.054036+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:46.356531+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:47.642721+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}]}, {"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-06T00:57:45.964751+00:00", "objects": ["image_condition", "landslide", "water_in_road", "road_blockade", "brt_lane", "fire", "image_description", "building_collapse", "traffic_ease_vehicle", "inside_tunnel", "alert_category", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:48.006944+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:50.092581+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:48.291429+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:48.578632+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:44.979207+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:49.596948+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:50.405555+00:00", "label": "null", "label_explanation": "The image shows a wide avenue with a bus lane on the left side and a regular lane on the right side. There are trees on both sides of the avenue. The image is clear with no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:49.294152+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:49.858150+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:44.189148+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:49.094522+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:48.788826+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:49.842866+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "inside_tunnel", "fire", "water_in_road", "image_description", "alert_category", "road_blockade", "building_collapse", "brt_lane", "landslide", "road_blockade_reason"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:33.955188+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:35.759606+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:30.173090+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "fire", "timestamp": "2024-02-06T00:55:35.467745+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:34.166533+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:36.288344+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": "alert_category", "timestamp": "2024-02-06T00:55:34.979453+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:34.531706+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:35.277713+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:30.866407+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:35.976097+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:34.753813+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:47.050276+00:00", "objects": ["image_condition", "road_blockade", "building_collapse", "brt_lane", "traffic_ease_vehicle", "image_description", "inside_tunnel", "landslide", "water_in_road", "alert_category", "road_blockade_reason", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:48.492134+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:48.897362+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:49.611644+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:45.689747+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:50.103367+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:50.573391+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are cars driving on the road and the traffic lights are on. The street is lit by streetlights. There are buildings and trees on either side of the road. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:45.071303+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:50.368274+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:48.689937+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:49.382421+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:49.173968+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:49.884537+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:57:53.391936+00:00", "objects": ["fire", "image_condition", "brt_lane", "alert_category", "image_description", "building_collapse", "water_in_road", "traffic_ease_vehicle", "road_blockade_reason", "road_blockade", "landslide", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:41.592777+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:40.167102+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:37.267744+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating a BRT lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:41.107171+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The road is clear, there are no blockades or obstructions, and traffic is flowing smoothly."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:42.288474+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a bus and several cars driving on it. There are trees and buildings on either side of the road. The road is well-lit and there are no visible obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:41.378942+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:40.388029+00:00", "label": "false", "label_explanation": "There is minimal water on the road. There are small, insignificant puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:41.803844+00:00", "label": "easy", "label_explanation": "There is minimal or no water on the road. The road is clear and dry, with no puddles or obstructions that could hinder vehicle movement."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:40.879169+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions or blockages."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:40.609982+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions or blockages."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:42.078670+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:36.577189+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. The road is clearly visible with no enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:52.574620+00:00", "objects": ["inside_tunnel", "building_collapse", "image_condition", "brt_lane", "road_blockade_reason", "road_blockade", "alert_category", "traffic_ease_vehicle", "image_description", "landslide", "fire", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:59.950456+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:53:04.676354+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:53:03.535714+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:53:00.642920+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:53:04.221176+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:53:03.944510+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:53:04.446910+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:53:05.140417+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:53:05.634827+00:00", "label": "null", "label_explanation": "The image is a night view of a road with a building on the left and trees on the right. There are cars on the road and the street lights are on. The image is clear and there are no obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:53:05.355381+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:53:04.943186+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:53:03.745323+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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-06T00:55:08.692779+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "image_description", "landslide", "image_condition", "fire", "building_collapse", "water_in_road", "alert_category", "inside_tunnel", "brt_lane"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:53:01.189464+00:00", "label": "easy", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:59.987018+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:53:00.274947+00:00", "label": "fallen_tree", "label_explanation": "There is a fallen tree blocking part of the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:53:01.692146+00:00", "label": "null", "label_explanation": "The image shows a night scene of a busy intersection in Rio de Janeiro. There are cars, buses, and people crossing the road. The traffic lights are green and there is a fallen tree on the left side of the road."}, {"object": "landslide", "timestamp": "2024-02-06T00:53:01.462925+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:52:59.571417+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:53:00.976056+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:53:00.694630+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact with no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:52:59.791968+00:00", "label": "false", "label_explanation": "There are minimal or no puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:53:00.480411+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:55.961161+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:56.665457+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:56.293768+00:00", "objects": ["water_in_road", "alert_category", "inside_tunnel", "brt_lane", "image_description", "traffic_ease_vehicle", "road_blockade", "building_collapse", "fire", "landslide", "road_blockade_reason", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:11.166372+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:11.887215+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:04.650316+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:08.085277+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:13.389866+00:00", "label": "null", "label_explanation": "A night view of a street with cars parked on the side. Trees line the street, and buildings can be seen in the background. The street is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:12.881610+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:11.373197+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:12.346527+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:12.602671+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:13.192235+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:11.590632+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:10.879273+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or 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-06T00:56:53.512202+00:00", "objects": ["landslide", "traffic_ease_vehicle", "image_description", "water_in_road", "building_collapse", "fire", "road_blockade", "inside_tunnel", "image_condition", "alert_category", "brt_lane", "road_blockade_reason"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:57:33.742007+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:55.044896+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:54:35.343095+00:00", "label": "null", "label_explanation": "The image is showing a night time street scene. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:47.149081+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:54.456395+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:57:54.778482+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:52.665891+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:36.939763+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:46.065321+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:54.258717+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:41.004142+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:53.964949+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:56:49.026831+00:00", "objects": ["water_in_road", "alert_category", "traffic_ease_vehicle", "brt_lane", "inside_tunnel", "road_blockade_reason", "image_condition", "fire", "road_blockade", "landslide", "image_description", "building_collapse"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:08.079554+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.780281+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:09.565386+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:01.593223+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:54.038111+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:08.581364+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:07.821285+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:57:54.959294+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:08.285956+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:54.227357+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:10.086166+00:00", "label": "null", "label_explanation": "The image shows a four-lane road at night. There are cars driving in both directions. The road is lit by streetlights. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:09.085474+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": ["inside_tunnel", "alert_category", "landslide", "image_description", "building_collapse", "road_blockade_reason", "brt_lane", "road_blockade", "water_in_road", "traffic_ease_vehicle", "fire", "image_condition"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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-06T00:54:53.718036+00:00", "objects": ["alert_category", "image_description", "brt_lane", "fire", "inside_tunnel", "water_in_road", "landslide", "image_condition", "traffic_ease_vehicle", "building_collapse", "road_blockade", "road_blockade_reason"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:55:42.216953+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_description", "timestamp": "2024-02-06T00:46:50.834520+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking. The street is lit by streetlights."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:38.344900+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:42.694027+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:37.616195+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:41.511612+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:43.118760+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:41.299020+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:42.916398+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:42.430771+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:41.722166+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:41.996002+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:53.941221+00:00", "objects": ["alert_category", "traffic_ease_vehicle", "landslide", "inside_tunnel", "fire", "brt_lane", "road_blockade_reason", "image_condition", "building_collapse", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:55:46.335738+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:47.042483+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:47.324643+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:41.645757+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:46.828039+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:42.439831+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:46.074264+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:45.332660+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:46.557806+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:47.548944+00:00", "label": "null", "label_explanation": "The image shows a night view of a road intersection. There are cars and motorbikes on the road, and the traffic lights are on. The road is lit by streetlights. There are buildings and trees on either side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:45.538791+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:45.752228+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:55.945038+00:00", "objects": ["road_blockade", "alert_category", "water_in_road", "road_blockade_reason", "image_condition", "building_collapse", "brt_lane", "fire", "traffic_ease_vehicle", "landslide", "inside_tunnel", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:34.145557+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:34.619528+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:33.919396+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:34.343481+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:33.663800+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:34.836262+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:30.835185+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:35.133569+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:35.340473+00:00", "label": "easy", "label_explanation": "There are no significant puddles or water on the road. The road surface is clear, dry, or slightly wet, with small, insignificant puddles."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:35.620699+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:30.147095+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:35.830423+00:00", "label": "null", "label_explanation": "The image shows a night view of a busy urban intersection in Rio de Janeiro. The intersection is well-lit and there are several cars and buses on the road. There are also a number of people walking on the sidewalks. The buildings in the background are tall and brightly lit. The image is clear and there are no obstructions."}]}, {"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-06T00:57:49.647020+00:00", "objects": ["road_blockade_reason", "building_collapse", "inside_tunnel", "fire", "traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade", "landslide", "image_condition", "alert_category", "image_description"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:39.672157+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:40.097407+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:35.376774+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:40.384610+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:40.667724+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:39.157118+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:36.059714+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:39.392870+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:40.870623+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:38.883616+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:39.893150+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:41.123213+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars parked on either side and a person walking in the middle of the street."}]}, {"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-06T00:57:55.317540+00:00", "objects": ["image_description", "building_collapse", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "brt_lane", "image_condition", "landslide", "inside_tunnel", "water_in_road", "fire", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:44.124394+00:00", "label": "null", "label_explanation": "The image shows a night view of a wide, straight road with a central reservation and street lights. There are trees on either side of the road and buildings in the background. The road is dry and there is no traffic. The image is clear and there are no obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:43.130117+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:43.634946+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:42.467839+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:42.734485+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:39.033933+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:41.942747+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:43.883387+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:38.329939+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:42.222305+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:55:43.411353+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:42.930413+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:51.883304+00:00", "objects": ["traffic_ease_vehicle", "landslide", "building_collapse", "brt_lane", "alert_category", "image_condition", "water_in_road", "image_description", "fire", "road_blockade", "inside_tunnel", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:53:03.878905+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow easily."}, {"object": "landslide", "timestamp": "2024-02-06T00:53:04.097913+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:53:03.424144+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:59.580985+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:53:03.177989+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-06T00:53:02.279809+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:53:02.469514+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:53:04.381110+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few trees and parked cars on the side. There is a car driving on the left side of the road. The image is clear and well-lit."}, {"object": "fire", "timestamp": "2024-02-06T00:53:03.670657+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:53:02.702399+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:58.888056+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:53:02.967802+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:54.781883+00:00", "objects": ["road_blockade_reason", "traffic_ease_vehicle", "fire", "landslide", "brt_lane", "image_condition", "alert_category", "water_in_road", "image_description", "road_blockade", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:55.744556+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:56.638971+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:56.430700+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:56.868888+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:52.333596+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:55.048398+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:55.949681+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:55.258919+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:57.137787+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are many people on the street, and they are all walking in the same direction. There are also some cars and buses on the street. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:55.532145+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:56.158689+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:51.648626+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:55:08.333589+00:00", "objects": ["image_description", "road_blockade", "image_condition", "alert_category", "brt_lane", "inside_tunnel", "water_in_road", "fire", "landslide", "building_collapse", "traffic_ease_vehicle", "road_blockade_reason"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:55.583743+00:00", "label": "null", "label_explanation": "The image shows 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 a few trees on the street and the buildings are mostly residential. The street is not very busy and there are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:53.899886+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:53.475045+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:54.393642+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:50.501020+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:49.780888+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:53.696527+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:54.885198+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:55.390653+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:54.681434+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:55.094738+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:54.173535+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:53.914080+00:00", "objects": ["inside_tunnel", "brt_lane", "water_in_road", "fire", "road_blockade_reason", "alert_category", "image_condition", "road_blockade", "image_description", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:46.864610+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:47.595156+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:52:50.697242+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:52:51.898025+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:52:51.188950+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:52:51.460139+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "image_condition", "timestamp": "2024-02-06T00:52:50.470626+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:50.972293+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:52.663938+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road intersection in Rio de Janeiro. There are cars, trucks, and buses on the road, and people are walking on the sidewalks. The buildings are tall and brightly lit. The road is wet from the rain, but there are no major puddles or blockages."}, {"object": "landslide", "timestamp": "2024-02-06T00:52:52.403359+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:52:52.167986+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:52:51.688130+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:55:10.293039+00:00", "objects": ["brt_lane", "inside_tunnel", "alert_category", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse", "road_blockade_reason", "image_description", "fire", "water_in_road", "image_condition"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:53.764258+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:52.902858+00:00", "label": "false", "label_explanation": "The image does not show the inside of a tunnel. There are no enclosed structures or tunnel-like characteristics visible in the image."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:57.785503+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life. The image shows a clear road scene with no blockades or hazards."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:57.278918+00:00", "label": "free", "label_explanation": "The road is clear, with no blockades or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:58.899950+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide in the image. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:58.674391+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear and dry, allowing easy passage for vehicles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:58.082216+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or structural issues."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:57.577470+00:00", "label": "water_puddle", "label_explanation": "There is a water puddle on the road, causing a partial blockade. Vehicles can still pass with caution."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:30.557415+00:00", "label": "null", "label_explanation": "The image shows a clear view of a tunnel with a yellow taxi driving through it. The tunnel is well-lit and there are no signs of any blockages or hazards. The road is dry and there are no signs of any water accumulation. The surrounding buildings are intact and there are no signs of any damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:58.395915+00:00", "label": "false", "label_explanation": "There is no evidence of fire in the image. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:57.067465+00:00", "label": "false", "label_explanation": "There are no puddles on the road. The road surface is clear and dry."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:56.778391+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions affecting the image quality."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:53.632435+00:00", "objects": ["alert_category", "building_collapse", "inside_tunnel", "image_description", "road_blockade", "fire", "brt_lane", "water_in_road", "road_blockade_reason", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "alert_category", "timestamp": "2024-02-06T00:55:10.082204+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, obstructions, or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:10.360570+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:53.996393+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:11.696055+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions or hazards. There are no signs of water, landslides, or fires. The image quality is good and there are no issues with clarity or focus."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:09.593868+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:10.580491+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:06.086848+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:09.376303+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:09.865090+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:09.111555+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:11.399529+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:10.951446+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible water or puddles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:51.977535+00:00", "objects": ["road_blockade", "building_collapse", "landslide", "brt_lane", "inside_tunnel", "fire", "traffic_ease_vehicle", "alert_category", "road_blockade_reason", "image_description", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:07.382065+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.086746+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:08.917340+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.206451+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.492433+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:08.381592+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:08.654261+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:07.873466+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:07.656572+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:09.166489+00:00", "label": "null", "label_explanation": "The image is a night view of a street with cars, buses, and people crossing the road. There are trees on either side of the road and buildings in the background. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:06.867123+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.081172+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant enough to cause any problems."}]}, {"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-06T00:57:04.324213+00:00", "objects": ["image_description", "image_condition", "inside_tunnel", "building_collapse", "landslide", "fire", "water_in_road", "traffic_ease_vehicle", "road_blockade", "brt_lane", "road_blockade_reason", "alert_category"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:09.639481+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no cars on the road. The street lights are on. There are trees and buildings on either side of the road. The sky is dark and cloudy."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:07.432226+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:56.712474+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.642400+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:09.348921+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:08.913270+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.713722+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:09.123416+00:00", "label": "easy", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:07.927487+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:02.973155+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:08.177293+00:00", "label": "free", "label_explanation": "There is no road blockade."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.441881+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}]}, {"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", "road_blockade_reason", "landslide", "alert_category", "brt_lane", "fire", "image_condition", "road_blockade", "image_description", "water_in_road", "inside_tunnel", "building_collapse"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "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_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:57:01.637270+00:00", "objects": ["brt_lane", "image_condition", "image_description", "inside_tunnel", "road_blockade_reason", "alert_category", "fire", "water_in_road", "road_blockade", "landslide", "traffic_ease_vehicle", "building_collapse"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.551137+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:56.246130+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:09.118791+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. There are also some trees and buildings in the background. The road is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.476998+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:56.464563+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.000545+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "fire", "timestamp": "2024-02-06T00:57:55.968156+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.220721+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:07.499078+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.758515+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:08.694511+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or hazards. Traffic can flow freely."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.210204+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:38.797653+00:00", "objects": ["traffic_ease_vehicle", "inside_tunnel", "image_description", "fire", "brt_lane", "building_collapse", "water_in_road", "alert_category", "road_blockade", "image_condition", "landslide", "road_blockade_reason"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:27.814951+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.424454+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:28.295723+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-06T00:55:27.620568+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:23.113109+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:27.329354+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:26.323031+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:27.126204+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:26.627325+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:26.107013+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:28.022363+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:26.888400+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:28.329967+00:00", "objects": ["image_condition", "brt_lane", "fire", "road_blockade", "landslide", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "image_description", "building_collapse", "inside_tunnel", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:23.483605+00:00", "label": "poor", "label_explanation": "The image is blurry due to water, focus issues, or other problems. It is difficult to see the details of the image."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:20.497374+00:00", "label": "false", "label_explanation": "There are no signs or markings indicating a designated bus rapid transit lane."}, {"object": "fire", "timestamp": "2024-02-06T00:55:25.023271+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.009600+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:25.570584+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.204532+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:23.723680+00:00", "label": "true", "label_explanation": "There is significant water on the road. The water is covering a large area and is likely causing traffic disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.299683+00:00", "label": "difficult", "label_explanation": "The road is partially covered with water, but the water level is not high and vehicles can still pass through."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:25.803081+00:00", "label": "null", "label_explanation": "The image is blurry and it is difficult to see the details. There are some lights in the background and the road is not clearly visible."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:24.768974+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:19.791936+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structure or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.490688+00:00", "label": "normal", "label_explanation": "There are no signs of any problems that would interfere with city life. The image shows a clear road with no 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-06T00:57:19.976084+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "brt_lane", "image_condition", "inside_tunnel", "alert_category", "fire", "road_blockade_reason", "building_collapse", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:27.224649+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:27.731621+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are a few cars parked on the side of the road and some trees on the sidewalk. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:25.829225+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:26.040265+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:22.436287+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:25.525632+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:21.628770+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:26.520967+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:55:27.015032+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:26.306055+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:26.756960+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:27.512009+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:19.031222+00:00", "objects": ["image_description", "building_collapse", "brt_lane", "inside_tunnel", "landslide", "fire", "alert_category", "road_blockade_reason", "water_in_road", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-06T00:55:31.386837+00:00", "label": "null", "label_explanation": "The image is a CCTV screenshot of a road tunnel. The tunnel is dark and enclosed, with visible light sources on the ceiling. The walls are made of concrete and have a rough texture. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:30.965577+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:30.188761+00:00", "label": "false", "label_explanation": "There is no visible BRT lane in the image."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:28.799789+00:00", "label": "true", "label_explanation": "The image is dark and enclosed, with visible light sources on the ceiling. The walls are made of concrete and have a rough texture. There is a slight curve in the tunnel, and the road surface is made of asphalt and is wet."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:28.990709+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road is clear, and there is no sign of soil, rocks, or debris on or near the road."}, {"object": "fire", "timestamp": "2024-02-06T00:55:29.279744+00:00", "label": "false", "label_explanation": "There is no evidence of a fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:31.169930+00:00", "label": "normal", "label_explanation": "The image shows a clear road with no visible issues. Traffic is flowing smoothly, and there are no signs of any problems."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:29.765134+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:29.976471+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:30.495534+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:29.505866+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:30.681996+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible water or puddles."}]}, {"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-06T00:57:32.056710+00:00", "objects": ["inside_tunnel", "image_condition", "fire", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "brt_lane", "water_in_road", "alert_category", "building_collapse", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:18.637297+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:22.106591+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:55:23.514309+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:23.738835+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no signs of water accumulation. Vehicles can easily pass through without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:22.603257+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:22.820760+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:19.334966+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:22.334171+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is dry and clear."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:23.017056+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:23.239143+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:24.012347+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:24.211607+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a pedestrian crossing at the center. There are trees and buildings on either side of the road. The road is well-lit and there are no signs of traffic congestion or accidents. The image is clear and there are no obstructions to visibility."}]}, {"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-06T00:57:36.104299+00:00", "objects": ["inside_tunnel", "fire", "building_collapse", "road_blockade", "water_in_road", "alert_category", "brt_lane", "image_condition", "road_blockade_reason", "traffic_ease_vehicle", "landslide", "image_description"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.433992+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:55:28.213864+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:27.937840+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:27.117778+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:26.902181+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:27.635947+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:23.242798+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:26.631130+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:27.431408+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:28.433245+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:28.708791+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:29.005476+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are people walking on the street, and cars parked on the side of the road. There are also some trees and buildings in the background."}]}, {"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-06T00:57:22.889454+00:00", "objects": ["water_in_road", "road_blockade_reason", "image_description", "road_blockade", "inside_tunnel", "alert_category", "building_collapse", "fire", "brt_lane", "image_condition", "landslide", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:23.788981+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.267528+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:25.689612+00:00", "label": "null", "label_explanation": "The image shows a night view of a street with cars driving in both directions. There are trees and buildings on either side of the street. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.066437+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:20.078556+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.466765+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:24.795430+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:25.049589+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:20.776012+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:23.577274+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:25.466147+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.270107+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}]}, {"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-06T00:57:30.803082+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "brt_lane", "road_blockade_reason", "fire", "image_condition", "inside_tunnel", "building_collapse", "road_blockade", "image_description", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:27.276371+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:25.882551+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:22.792576+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:26.360203+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:27.070749+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:25.678512+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.056821+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:26.788429+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:26.091738+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:27.757806+00:00", "label": "null", "label_explanation": "A night-time image of a street with cars, motorbikes, and people crossing the road. There are trees on either side of the road and buildings in the background. The street is lit by streetlights."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:26.581965+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:27.479086+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:22.569782+00:00", "objects": ["building_collapse", "road_blockade", "road_blockade_reason", "inside_tunnel", "brt_lane", "water_in_road", "landslide", "image_condition", "alert_category", "traffic_ease_vehicle", "fire", "image_description"], "identifications": [{"object": "building_collapse", "timestamp": "2024-02-06T00:55:25.692542+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.901383+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:25.186534+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:20.818419+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:21.508907+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:24.689246+00:00", "label": "false", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:26.411838+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:24.405647+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:25.436208+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:26.188368+00:00", "label": "easy", "label_explanation": "There are some small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:25.898469+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:26.623071+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There are no cars on the road and the traffic lights are green. The street is lit by streetlights and there are trees on either side of the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:15.720515+00:00", "objects": ["image_condition", "inside_tunnel", "water_in_road", "building_collapse", "brt_lane", "alert_category", "fire", "road_blockade_reason", "landslide", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:27.402011+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:22.992779+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:27.690139+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:28.799462+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:23.788832+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:28.571232+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "fire", "timestamp": "2024-02-06T00:55:29.081197+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:28.290197+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:29.588070+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:29.898653+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a clear road surface and no visible obstructions. There are trees on either side of the road and a few parked cars on the right side. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:29.300240+00:00", "label": "easy", "label_explanation": "There is no water on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:28.021675+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:20.135227+00:00", "objects": ["road_blockade", "inside_tunnel", "building_collapse", "traffic_ease_vehicle", "image_description", "fire", "brt_lane", "image_condition", "water_in_road", "alert_category", "road_blockade_reason", "landslide"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:28.134049+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:23.616284+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:28.908952+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:29.402684+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:29.844642+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. There are cars and people crossing the intersection. The street is lit by streetlights. There are buildings and trees on either side of the street."}, {"object": "fire", "timestamp": "2024-02-06T00:55:29.118738+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:24.420125+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:27.624979+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:27.888361+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:28.614032+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:28.334436+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:29.623422+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:17.232182+00:00", "objects": ["fire", "landslide", "road_blockade_reason", "image_condition", "traffic_ease_vehicle", "road_blockade", "brt_lane", "alert_category", "building_collapse", "image_description", "water_in_road", "inside_tunnel"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:25.369764+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:25.869037+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:24.639398+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:23.956532+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:25.663105+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant water accumulation. Vehicles can pass through easily."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:24.377475+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:21.038886+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:24.863644+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:25.164875+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:26.171624+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a street light on the left side of the image, and a few trees on the right side. The road is clear, with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:24.143384+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:20.333866+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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-06T00:57:17.950944+00:00", "objects": ["water_in_road", "fire", "road_blockade", "traffic_ease_vehicle", "road_blockade_reason", "brt_lane", "image_description", "image_condition", "building_collapse", "inside_tunnel", "landslide", "alert_category"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:55:22.078756+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear and dry."}, {"object": "fire", "timestamp": "2024-02-06T00:55:23.307683+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:22.297250+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:23.589751+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:22.579200+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:19.000817+00:00", "label": "false", "label_explanation": "There are no signs of a designated bus rapid transit (BRT) lane. The image does not show any markings or indications of a BRT lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:24.093099+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. There are no people or vehicles visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:21.799711+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:23.074183+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:18.290145+00:00", "label": "false", "label_explanation": "There are no signs of being inside a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:23.864151+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:22.799490+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}]}, {"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-06T00:57:25.795781+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "fire", "road_blockade_reason", "water_in_road", "image_description", "brt_lane", "road_blockade", "building_collapse", "inside_tunnel", "alert_category", "landslide"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:24.058465+00:00", "label": "easy", "label_explanation": "There are no puddles on the road."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:22.371664+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:55:23.835186+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:23.138068+00:00", "label": "water_puddle", "label_explanation": "There is a puddle of water blocking part of the road."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:22.643299+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:24.549278+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with cars driving in both directions. There is a gas station on the right side of the road and a few trees on the left side. The road is well-lit, and the weather is clear."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:19.525229+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:22.925860+00:00", "label": "free", "label_explanation": "There is no blockade. The road is completely clear."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:23.636423+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:18.788116+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:23.373359+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:24.329357+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:57:51.550329+00:00", "objects": ["brt_lane", "image_condition", "traffic_ease_vehicle", "alert_category", "image_description", "inside_tunnel", "water_in_road", "fire", "landslide", "road_blockade_reason", "building_collapse", "road_blockade"], "identifications": [{"object": "brt_lane", "timestamp": "2024-02-06T00:55:57.252419+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:59.740658+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:56:01.430219+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic can flow easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:56:00.647468+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}, {"object": "image_description", "timestamp": "2024-02-06T00:56:01.844032+00:00", "label": "null", "label_explanation": "The image shows a wide road with a bike lane on the right side, separated by a green strip. On the left side of the road, there are tall trees and a sidewalk. In the background, there is a partial view of buildings and foliage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:56.624729+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:59.946193+00:00", "label": "false", "label_explanation": "There are no significant puddles on the road. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "fire", "timestamp": "2024-02-06T00:56:01.145190+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:56:01.630385+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:56:00.430422+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:56:00.940008+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:56:00.218041+00:00", "label": "free", "label_explanation": "There are no features that blockade the road. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}]}, {"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-06T00:57:52.599146+00:00", "objects": ["fire", "brt_lane", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade_reason", "landslide", "road_blockade", "alert_category", "image_description", "inside_tunnel", "building_collapse"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:39.152430+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:34.836648+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit (BRT) lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:39.350336+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no water or puddles that could impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:37.667232+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:37.858151+00:00", "label": "false", "label_explanation": "There are small, insignificant puddles on the road. The road surface is mostly dry and clear."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:38.400753+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:39.628297+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions, such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:38.142377+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:38.669739+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:39.839173+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a long road with cars driving in both directions. The road is lit by streetlights. There are trees and buildings on either side of the road. The image is clear and there are no obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:34.149902+00:00", "label": "false", "label_explanation": "The image shows the outside of a tunnel. There are no enclosed structures or tunnel-like characteristics typically found in tunnels."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:38.933996+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:55:01.093266+00:00", "objects": ["inside_tunnel", "brt_lane", "road_blockade_reason", "water_in_road", "traffic_ease_vehicle", "fire", "image_description", "image_condition", "building_collapse", "road_blockade", "landslide", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:40.559101+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:41.264731+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:45.054018+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:44.571704+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:46.093472+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:45.761791+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:46.566909+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There are several cars on the road, and the street lights are on. The road is wet from the rain, but there are no major puddles. The image is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:44.251676+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:45.543806+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:44.837471+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:46.341301+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:45.336785+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}]}, {"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-06T00:55:01.666078+00:00", "objects": ["traffic_ease_vehicle", "brt_lane", "image_description", "inside_tunnel", "water_in_road", "building_collapse", "fire", "landslide", "image_condition", "road_blockade", "road_blockade_reason", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:42.625378+00:00", "label": "easy", "label_explanation": "The road is clear, dry, and free of puddles. There are no signs of water on the road."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:37.649471+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:48.245111+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a traffic light in the foreground and a park with a few trees and people in the background. The street is lit by streetlights."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:36.934291+00:00", "label": "false", "label_explanation": "There are no characteristics of a tunnel, such as enclosed structure, artificial lighting, and tunnel walls."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:41.130806+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:42.120048+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:55:42.341837+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:42.846894+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:40.839809+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:41.335258+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:41.615124+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:41.840448+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:57:55.386872+00:00", "objects": ["landslide", "inside_tunnel", "fire", "image_condition", "brt_lane", "alert_category", "traffic_ease_vehicle", "road_blockade", "road_blockade_reason", "water_in_road", "building_collapse", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:52:44.661289+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:52:38.865457+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "fire", "timestamp": "2024-02-06T00:52:44.160103+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:52:42.667691+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:52:39.584491+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:52:43.657247+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:52:44.386719+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:52:43.090890+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:52:43.381412+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:52:42.880492+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:52:43.907796+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:44.885044+00:00", "label": "null", "label_explanation": "The image shows a busy intersection with cars, buses, and pedestrians. The road is wet from rain, but there are no major puddles or blockages. The traffic lights are green in all directions, and the pedestrians are crossing the street safely. There are a few trees and buildings in the background."}]}, {"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-06T00:57:51.175936+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "building_collapse", "image_description", "inside_tunnel", "road_blockade", "fire", "landslide", "road_blockade_reason", "brt_lane", "alert_category"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:56.579568+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:58.258586+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:56.858459+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:57.772908+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:58.749111+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:53.148102+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:57.065746+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:55:58.054509+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:58.473397+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:57.345551+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:53.852737+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:57.571486+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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-06T00:57:50.976537+00:00", "objects": ["image_condition", "landslide", "traffic_ease_vehicle", "image_description", "water_in_road", "brt_lane", "building_collapse", "inside_tunnel", "road_blockade_reason", "road_blockade", "alert_category", "fire"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-06T00:55:54.923755+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:56.844579+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:56.622878+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or obstructions. There are a few small puddles, but they are not significant and do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:57.132801+00:00", "label": "null", "label_explanation": "The image shows a night view of a city intersection. There is a yellow taxi driving on the road in the foreground, and other vehicles in the background. There is a red traffic light visible. The road is wet from rain, but there is no flooding. There are buildings and trees on either side of the road. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:55.151680+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:51.933349+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:56.130833+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:51.243391+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:55.652143+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:55.434335+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:55.924521+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other problems."}, {"object": "fire", "timestamp": "2024-02-06T00:55:56.347625+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}]}, {"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-06T00:57:56.529262+00:00", "objects": ["traffic_ease_vehicle", "fire", "brt_lane", "image_description", "image_condition", "road_blockade_reason", "landslide", "inside_tunnel", "water_in_road", "building_collapse", "road_blockade", "alert_category"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:49.600355+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Vehicles can pass through easily."}, {"object": "fire", "timestamp": "2024-02-06T00:55:49.381071+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:44.994344+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:59.430285+00:00", "label": "null", "label_explanation": "The image shows a clear road with no visible obstructions. There are trees and buildings on either side of the road. The image is well-lit and the colors are vibrant. The road is dry and there are no signs of water or debris. The image is clear and there are no visible distortions or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:47.991661+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:48.677121+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:49.891078+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:44.361774+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:48.204961+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:49.163160+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:48.472636+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:48.908766+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:50.943868+00:00", "objects": ["landslide", "alert_category", "image_condition", "brt_lane", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "fire", "inside_tunnel", "road_blockade_reason", "building_collapse"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:57:55.782944+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:10.599089+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or other issues."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:56.194954+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.737462+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:56.724920+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:11.616272+00:00", "label": "easy", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:10.091782+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:12.195408+00:00", "label": "null", "label_explanation": "The image shows a night view of a street in Rio de Janeiro. There are cars parked on the side of the road and a few trees. The street is lit by streetlights."}, {"object": "fire", "timestamp": "2024-02-06T00:57:55.987815+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:57.162778+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:56.495280+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:10.878763+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}]}, {"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-06T00:56:54.718723+00:00", "objects": ["inside_tunnel", "road_blockade_reason", "fire", "traffic_ease_vehicle", "brt_lane", "road_blockade", "image_description", "alert_category", "building_collapse", "image_condition", "landslide", "water_in_road"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:55:14.427557+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:36.476328+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:57:37.218797+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:40.429061+00:00", "label": "easy", "label_explanation": "There are some puddles on the road, but they are small and insignificant and do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:15.118909+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:36.232446+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:57:41.346484+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-lane road with cars driving in both directions. There is a bus driving in the BRT lane. The road is lit by streetlights. There are buildings and trees on either side of the road."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:36.726570+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:36.958802+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:35.776097+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:41.130261+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:36.006772+00:00", "label": "false", "label_explanation": "There are some puddles on the road, but they are small and insignificant."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:46.519265+00:00", "objects": ["inside_tunnel", "image_description", "fire", "traffic_ease_vehicle", "image_condition", "landslide", "water_in_road", "brt_lane", "road_blockade", "building_collapse", "road_blockade_reason", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:55.706542+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:09.413398+00:00", "label": "null", "label_explanation": "The image is clear and shows a portion of a road with a fallen tree. The tree is blocking the right lane of the road, but the left lane is still passable. There is a car stopped on the left lane, likely due to the fallen tree. There are no other cars visible in the image."}, {"object": "fire", "timestamp": "2024-02-06T00:55:08.694283+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:08.906080+00:00", "label": "easy", "label_explanation": "The road surface is clear, dry, or slightly wet with small, insignificant puddles. Traffic flow is not affected."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:07.296054+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:55.907861+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:07.496096+00:00", "label": "false", "label_explanation": "There are no signs of significant water accumulation. The road surface is clear, dry, or slightly wet with small, insignificant puddles."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:54:57.198881+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:07.788555+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:08.489070+00:00", "label": "false", "label_explanation": "There are no signs of a building collapse. The surrounding buildings are intact and there is no evidence of structural damage."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:07.986269+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:08.206939+00:00", "label": "normal", "label_explanation": "There are no minor or major issues that interfere with city life."}]}, {"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-06T00:57:26.620217+00:00", "objects": ["inside_tunnel", "traffic_ease_vehicle", "building_collapse", "fire", "brt_lane", "image_condition", "image_description", "landslide", "road_blockade", "road_blockade_reason", "water_in_road", "alert_category"], "identifications": [{"object": "inside_tunnel", "timestamp": "2024-02-06T00:40:40.180223+00:00", "label": "false", "label_explanation": "There are no signs of a tunnel. The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:40:45.854607+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no signs of water or puddles."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:40:45.358818+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "fire", "timestamp": "2024-02-06T00:40:45.564136+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:40:40.963281+00:00", "label": "false", "label_explanation": "There are no signs of a BRT lane. The image does not show any markings or designations indicating a BRT lane."}, {"object": "image_condition", "timestamp": "2024-02-06T00:40:44.078687+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:40:46.355355+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or signs of trouble. The road is dry and there are no signs of water or puddles. The surrounding buildings are intact and there are no signs of collapse or structural damage. The image is clear with no interference and there are no visible distortions or obstructions."}, {"object": "landslide", "timestamp": "2024-02-06T00:40:46.075091+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:40:44.581658+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:40:44.849775+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:40:44.363480+00:00", "label": "false", "label_explanation": "There are no signs of water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:40:45.070942+00:00", "label": "normal", "label_explanation": "There are no issues that might affect city life. The image shows a clear road with no obstructions or signs of trouble."}]}, {"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-06T00:57:00.848304+00:00", "objects": ["landslide", "brt_lane", "water_in_road", "road_blockade_reason", "inside_tunnel", "alert_category", "fire", "road_blockade", "building_collapse", "traffic_ease_vehicle", "image_condition", "image_description"], "identifications": [{"object": "landslide", "timestamp": "2024-02-06T00:57:42.406734+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:46.041041+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:43.318609+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:53.431780+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:43.515731+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:04.882894+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no signs of accidents, fires, or other disruptions."}, {"object": "fire", "timestamp": "2024-02-06T00:57:42.608483+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:04.325561+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear, with no signs of fallen trees, water, or other obstructions."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:05.250003+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact, with no signs of damage or debris."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:05.990330+00:00", "label": "impossible", "label_explanation": "The road is completely submerged in water, making it impossible for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:42.816289+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:21.712922+00:00", "label": "null", "label_explanation": "The image shows a clear road with no obstructions or issues. The road surface is dry and clear, with no signs of water accumulation or puddles. There are no signs of any problems that might affect city life."}]}, {"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": ["water_in_road", "fire", "landslide", "building_collapse", "road_blockade", "alert_category", "image_condition", "brt_lane", "inside_tunnel", "image_description", "road_blockade_reason", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-06T00:57:10.468931+00:00", "objects": ["road_blockade", "brt_lane", "water_in_road", "image_condition", "alert_category", "building_collapse", "landslide", "fire", "image_description", "traffic_ease_vehicle", "road_blockade_reason", "inside_tunnel"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-06T00:55:06.531109+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:02.113505+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:06.330590+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:06.069612+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:07.023086+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:07.235348+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "landslide", "timestamp": "2024-02-06T00:55:08.017735+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "fire", "timestamp": "2024-02-06T00:55:07.560065+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:08.241030+00:00", "label": "null", "label_explanation": "The image shows a clear road with no blockades or hazards. There are a few small puddles on the road, but they are not significant and do not interfere with traffic. The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:07.816224+00:00", "label": "easy", "label_explanation": "The road is clear with no blockades or significant puddles. Traffic can flow easily."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:06.740117+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:54:58.656476+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:56:57.739321+00:00", "objects": ["water_in_road", "road_blockade", "inside_tunnel", "alert_category", "image_condition", "road_blockade_reason", "fire", "traffic_ease_vehicle", "building_collapse", "brt_lane", "landslide", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-06T00:57:52.673486+00:00", "label": "false", "label_explanation": "There are no puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:55.414579+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:40.434735+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:42.326879+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:47.151187+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:44.004585+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "fire", "timestamp": "2024-02-06T00:57:36.355927+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:44.211957+00:00", "label": "easy", "label_explanation": "The road is completely dry with no signs of water accumulation."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:42.812461+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:41.653204+00:00", "label": "false", "label_explanation": "The image does not show any markings or designations indicating a bus rapid transit lane."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:36.109614+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "image_description", "timestamp": "2024-02-06T00:51:50.114385+00:00", "label": "null", "label_explanation": "The image is a night view of a city street. The street is well-lit and there is a fence on the left side of the road. There is a tall building on the right side of the road. The road is dry and there are no cars on the street."}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T00:03:42.908006+00:00", "objects": ["fire", "inside_tunnel", "building_collapse", "alert_category", "brt_lane", "road_blockade_reason", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "landslide"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:04:32.494920+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or burn damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:04:27.173280+00:00", "label": "false", "label_explanation": "The image is not showing any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:04:32.315625+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "alert_category", "timestamp": "2024-02-06T00:04:32.088899+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades, water, or other hazards."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:04:28.002781+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:04:31.792446+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:04:31.609590+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:04:31.320437+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is clear, dry, and free of puddles."}, {"object": "image_description", "timestamp": "2024-02-06T00:04:33.314775+00:00", "label": "null", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions. The image shows a road with a clear, dry surface and no visible traffic or pedestrians."}, {"object": "image_condition", "timestamp": "2024-02-06T00:04:31.085069+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:04:32.769959+00:00", "label": "easy", "label_explanation": "The road is completely dry with no water."}, {"object": "landslide", "timestamp": "2024-02-06T00:04:33.031371+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}]}, {"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-06T00:57:06.314193+00:00", "objects": ["fire", "landslide", "inside_tunnel", "building_collapse", "image_condition", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "alert_category", "road_blockade_reason", "brt_lane"], "identifications": [{"object": "fire", "timestamp": "2024-02-06T00:55:17.094395+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burnt areas."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:54.051152+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear, with no signs of soil or rock debris."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:52.667643+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:55:16.585474+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "image_condition", "timestamp": "2024-02-06T00:55:14.900725+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. The image is sharp and focused, with no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-06T00:55:18.677116+00:00", "label": "null", "label_explanation": "The image shows a night view of a road with cars driving in both directions. There are street lights along the road and buildings on either side. The road is dry and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:55:15.386928+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:55:17.589491+00:00", "label": "easy", "label_explanation": "The road is dry, with only a few small puddles. Traffic can proceed with ease."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:55:15.098987+00:00", "label": "false", "label_explanation": "There is minimal or no water on the road. The road surface is dry, with only a few small puddles."}, {"object": "alert_category", "timestamp": "2024-02-06T00:55:15.981071+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The road is clear, there are no blockades, and the image quality is good."}, {"object": "road_blockade_reason", "timestamp": "2024-02-06T00:55:15.591155+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear and free of any obstructions."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:55:03.885913+00:00", "label": "false", "label_explanation": "The lane is not a designated bus rapid transit (BRT) lane. There are no markings or signs indicating that the lane is reserved for buses."}]}, {"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-06T00:56:58.797286+00:00", "objects": ["road_blockade_reason", "brt_lane", "traffic_ease_vehicle", "alert_category", "image_condition", "fire", "water_in_road", "road_blockade", "image_description", "landslide", "building_collapse", "inside_tunnel"], "identifications": [{"object": "road_blockade_reason", "timestamp": "2024-02-06T00:57:44.443121+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "brt_lane", "timestamp": "2024-02-06T00:57:44.131725+00:00", "label": "false", "label_explanation": "There are no markings or designations indicating a bus rapid transit lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-06T00:57:57.839510+00:00", "label": "easy", "label_explanation": "The road is clear with no water on the surface. Vehicles can pass easily."}, {"object": "alert_category", "timestamp": "2024-02-06T00:57:52.674073+00:00", "label": "normal", "label_explanation": "There are no issues that interfere with city life. The image shows a clear road with no blockades or hazards."}, {"object": "image_condition", "timestamp": "2024-02-06T00:57:42.740617+00:00", "label": "clean", "label_explanation": "The image is clear with no interference. There are no visible distortions or obstructions."}, {"object": "fire", "timestamp": "2024-02-06T00:57:42.520398+00:00", "label": "false", "label_explanation": "There is no evidence of fire. There are no visible flames, smoke, or signs of burn damage."}, {"object": "water_in_road", "timestamp": "2024-02-06T00:57:43.239950+00:00", "label": "false", "label_explanation": "There are a few small puddles on the road, but they are not significant and do not interfere with traffic."}, {"object": "road_blockade", "timestamp": "2024-02-06T00:57:56.159576+00:00", "label": "free", "label_explanation": "There is no road blockade. The road is clear of any obstructions, with manageable puddles that do not interfere with traffic."}, {"object": "image_description", "timestamp": "2024-02-06T00:52:19.400867+00:00", "label": "null", "label_explanation": "A night-time image of a street with a fallen tree blocking part of the road. There are trees and buildings on either side of the road. The street is lit by streetlights."}, {"object": "landslide", "timestamp": "2024-02-06T00:57:42.329140+00:00", "label": "false", "label_explanation": "There is no evidence of a landslide. The road and surrounding areas are clear of landslide-related disruptions such as soil or rock debris."}, {"object": "building_collapse", "timestamp": "2024-02-06T00:57:55.941699+00:00", "label": "false", "label_explanation": "There is no evidence of a building collapse. The surrounding buildings are intact and there are no signs of collapse or structural damage."}, {"object": "inside_tunnel", "timestamp": "2024-02-06T00:57:43.439899+00:00", "label": "false", "label_explanation": "The image does not show any enclosed structures or tunnel-like characteristics."}]}, {"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": ["inside_tunnel", "image_description", "water_in_road", "image_condition", "alert_category", "road_blockade", "road_blockade_reason", "landslide", "traffic_ease_vehicle", "brt_lane", "building_collapse", "fire"], "identifications": [{"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "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": "alert_category", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["building_collapse", "image_condition", "fire", "brt_lane", "traffic_ease_vehicle", "inside_tunnel", "image_description", "water_in_road", "landslide", "road_blockade_reason", "road_blockade", "alert_category"], "identifications": [{"object": "building_collapse", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "fire", "timestamp": null, "label": null, "label_explanation": null}, {"object": "brt_lane", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "inside_tunnel", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "landslide", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade_reason", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "alert_category", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file +[{"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-07T03:19:00.956238+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:55.193077+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro at night. There is a bridge on the right side of the image and a large tree in the middle of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:54.526787+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:54.023256+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:54.725116+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:54.309830+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:53.297201+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:00.717037+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is unclear how deep the water is, but it is likely that it would be difficult for vehicles to pass through."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:00.477467+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:01.143204+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:01.437606+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a large tree. There is a large amount of water on the road and it is unclear how deep the water is. The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:10.346811+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."}]}, {"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-07T03:19:04.217059+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:57.309687+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane. The tree is large and appears to have been there for some time, as there are no visible signs of recent activity."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:58.212675+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are two cars on the road, one parked on the side of the road and the other driving in the right lane. There is a tree on the side of the road and a building in the background."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:57.508858+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the left lane. There are no visible signs of flooding or other hazards."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:57.739891+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a hazard to drivers."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:58.008794+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions."}]}, {"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-07T03:18:50.601494+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:55.541236+00:00", "label": "low_indifferent", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:50.592005+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there are no cars visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:55.791860+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.989561+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:56.199201+00:00", "label": "null", "label_explanation": "The image shows a road with a large tree fallen across it. There are no cars visible in the image and the road is completely blocked."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:58.394466+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:56.251283+00:00", "label": "null", "label_explanation": "A night-time image of a street corner in Rio de Janeiro. There are no cars on the road, just two motorbikes. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.020574+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:52.993581+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:48.029626+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:55.729425+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}]}, {"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": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "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}]}, {"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-07T03:18:58.513792+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:19:50.027624+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:49.442295+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:49.243357+00:00", "label": "partially_blocked", "label_explanation": "The road is not completely blocked, but there is a large puddle of water that could cause traffic to slow down."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:50.224527+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars driving on the road and people walking on the sidewalks. The street is lined with trees and buildings."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:49.774890+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:03.876143+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:49.955285+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:50.174541+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:52.997201+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:55.752864+00:00", "label": "null", "label_explanation": "A yellow taxi drives on a city street at night. There is a tall building on the left and a row of parked cars on the right. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:49.743298+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:02.714318+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:46.043816+00:00", "label": "partially_blocked", "label_explanation": "There is a metal fence blocking part of the sidewalk and a parked car partially blocking the right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:46.391753+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:46.639594+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:55.540593+00:00", "label": "null", "label_explanation": "A photo of a nearly empty street with a fence on the left and a row of parked cars on the right. In the background, there is a tall building with red and blue lights shining on its facade. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:48.026094+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:53.177073+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:31.562000+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a police car parked on the side of the road with its lights on. There are two orange cones in the right lane partially blocking it. There is a tree and some foliage on the left side of the image. The road is made of asphalt and is in good condition. There are street lights along the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:30.734504+00:00", "label": "partially_blocked", "label_explanation": "There are two orange cones partially blocking the right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:30.929632+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:31.139868+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:31.343355+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a risk 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-07T03:19:55.534192+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:36.975938+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:37.272358+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire road and is making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:38.078060+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There is a large tree that has fallen across the road and is blocking both lanes of traffic. There is also a large amount of water on the road. The water is covering the entire road and is making it difficult for vehicles to pass. There is a green traffic light in the foreground and a yellow traffic light in the background. There are buildings on both sides of the street. The buildings are tall and made of concrete. There are no people in the image."}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:37.790811+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-07T03:19:45.734791+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:32.488823+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:33.200537+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:33.489049+00:00", "label": "null", "label_explanation": "The image is of a road at night. There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road. There is a bus and a car on the road. The bus is on the left side of the road and the car is on the right side of the road. The bus is stopped and the car is moving."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:32.699804+00:00", "label": "puddle", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:32.979177+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:56.278783+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:40.800548+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions or blockades."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:41.019114+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:41.816295+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with trees on either side. There is a sidewalk on one side of the road and a bike lane on the other. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:41.311258+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:41.517053+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-07T03:19:52.871725+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:05:54.327012+00:00", "label": "partially_blocked", "label_explanation": "There is a yellow taxi partially blocking the road, but it is still possible for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:05:54.516092+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "image_description", "timestamp": "2024-02-07T03:05:55.204468+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a yellow taxi partially blocking the road, but it is still possible for vehicles to pass. There are some puddles on the road, but they are not significant and do not hinder traffic. The image is clear with no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:05:54.733745+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:05:54.934330+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-07T03:19:59.016832+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "image_condition", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:41.352006+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:41.163291+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:42.141087+00:00", "label": "null", "label_explanation": "The image shows a nighttime view of a street in Rio de Janeiro. The street is well-lit and there are no people or cars visible. The road is in good condition and there are no visible signs of damage."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:41.860073+00:00", "label": "clean", "label_explanation": "The image is clear with no visible blurring or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:41.578464+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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-07T03:19:50.829456+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:36.829826+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire right lane and part of the left lane. There are no visible signs of flooding."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:37.433498+00:00", "label": "null", "label_explanation": "The image shows a road at night. There is a large tree that has fallen across the road and is blocking both lanes of traffic. There is a large amount of water on the road and it is covering the entire right lane and part of the left lane. There are no visible signs of flooding. The image is clear and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:36.617367+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:18.627935+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry with no water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:37.226589+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions."}]}, {"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-07T03:19:50.532793+00:00", "objects": ["image_description", "water_in_road", "image_condition", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:43.734809+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 the buildings are dark. There are no cars on the street."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:44.245332+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:43.948888+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:44.444867+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:43.547789+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no visible water."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": 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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:58.247542+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:49.820964+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a fallen tree blocking the road and a large puddle of water on the road. There is a street sign on the right side of the image."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:48.840033+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:49.214577+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:49.608119+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:49.436360+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:06.329643+00:00", "objects": ["road_blockade", "water_level", "image_condition", "water_in_road", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:53.180287+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:53.753222+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:54.008817+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:53.482122+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:54.246280+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection in Rio de Janeiro. The street is well-lit and there is moderate traffic. There are a few trees and buildings in the background."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T02:53:03.959551+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T02:53:27.819798+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road. It is not completely blocking the road, but it is large enough to cause traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-07T02:53:28.589254+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There are a few trees on either side of the street. The street is lit by streetlights. There is a green traffic light on the left side of the intersection and a red traffic light on the right side. There is a large puddle of water in the middle of the intersection."}, {"object": "water_in_road", "timestamp": "2024-02-07T02:53:28.243418+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. It is not completely blocking the road, but it is large enough to cause traffic disruptions."}, {"object": "image_condition", "timestamp": "2024-02-07T02:53:28.029170+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:18:49.289170+00:00", "objects": ["road_blockade", "water_level", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:55.234471+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:01.036372+00:00", "label": "low_indifferent", "label_explanation": "The road is dry with no water."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:55.863011+00:00", "label": "null", "label_explanation": "The image is a night view of a road. The road is lit by a street lamp. There are trees on either side of the road. The road is empty except for a single car that is driving in the right lane."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:55.645376+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.459346+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:04.169349+00:00", "objects": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:53.729617+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:54.205425+00:00", "label": "null", "label_explanation": "A fallen tree blocks a road. The road is surrounded by trees and shrubs."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:53.229220+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the entire road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:53.475160+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:53.942124+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-07T03:18:50.477123+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:40.983723+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:41.382114+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire road and is up to the wheel of a passenger vehicle. There are no visible signs of flooding."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:41.825779+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-07T03:08:19.412136+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:44.439246+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. There is also a large amount of water on the road. The water is covering the entire road and is up to the wheel of a passenger vehicle. There are no visible signs of flooding."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:19:01.223384+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:56.199377+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with a concrete wall on one side and trees on the other. There are no cars on the road and the street lights are on. The road is dry and there are no visible signs of water."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:50.113308+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:52.993283+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.937076+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or blurriness."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:55.734949+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["road_blockade", "image_description", "image_condition", "water_in_road", "water_level"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:46.808790+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:37.662548+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:37.937732+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:38.146962+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:38.358922+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:38.637642+00:00", "label": "null", "label_explanation": "A motorcycle is driving down a narrow street with yellow lines marking the center. There are buildings and graffiti on either side of the street. A tree is visible in the background."}]}, {"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-07T03:19:44.041165+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:39.032514+00:00", "label": "partially_blocked", "label_explanation": "There is a bus partially blocking the road, but vehicles can still pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:39.233132+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:39.442937+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": "image_condition", "timestamp": "2024-02-07T03:20:39.627252+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:39.844563+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There is a bus partially blocking the road, but vehicles can still pass. There are some puddles on the road, but they are not significant. The traffic lights are on and there are cars and people crossing the street."}]}, {"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-07T03:19:44.707887+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:02.814895+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:03.022532+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:03.802749+00:00", "label": "null", "label_explanation": "A night view of a long, straight road with trees on either side. There is a fence to the left of the road and buildings to the right. The road is empty with no cars or people."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:03.329465+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:03.545956+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or obstructions."}]}, {"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-07T03:19:43.804621+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:34.930108+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:35.143077+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:35.623366+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:35.388578+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:35.849817+00:00", "label": "null", "label_explanation": "The image shows a night scene of a road intersection. There is a fallen tree blocking the road, and there are large puddles of water on the road. The street lights are on, and there are cars and motorbikes 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-07T03:19:47.016988+00:00", "objects": ["image_condition", "water_level", "road_blockade", "water_in_road", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:11:38.554805+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:11:38.302617+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:11:37.781104+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the entire road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:11:38.056161+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:11:38.777106+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There is a large puddle of water on the road. The image is clear with no interference."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:48.703318+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:16:44.956129+00:00", "label": "null", "label_explanation": "The image shows a fallen tree blocking the road. There is a large puddle of water on the road. The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.918507+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:16:44.010915+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:57.394313+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:16:44.316371+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:09.078841+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:52.699301+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 large tree that has fallen across the road, blocking traffic. There is also a large puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:51.177275+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:51.561522+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:52.469224+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:52.247797+00:00", "label": "puddle", "label_explanation": "The water on the road is at a level that is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:18:53.172694+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:53.138584+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a flooded area."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:53.873178+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:53.682931+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:56.022875+00:00", "label": "null", "label_explanation": "A dark, poorly lit image of a flooded underpass. The water is murky and covers the entire road. There is a metal fence on the left side of the image and a concrete wall on the right side. There is a street lamp in the background."}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:18:53.038020+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:37.929653+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:37.696101+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:38.742353+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is also a significant amount of water on the road, but it is not deep enough to be considered flooding. The image is clear and not blurry."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:38.169475+00:00", "label": "puddle", "label_explanation": "The water on the road is at the level of the tires of a parked car."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:38.516749+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:06.927667+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:57.019467+00:00", "label": "null", "label_explanation": "A night view of a street with cars parked on either side. There are trees on both sides of the street and a few street lights. There is a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.049664+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.245258+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:56.750550+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.516607+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}]}, {"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-07T03:18:55.800310+00:00", "objects": ["road_blockade", "water_level", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:55.571894+00:00", "label": "free", "label_explanation": "No obstructions blocking the road. Traffic can flow freely."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:56.455107+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:55.790377+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:56.709005+00:00", "label": "null", "label_explanation": "A night view of a wide, empty road with no cars. There is a traffic light in the center of the image and a street sign on the right. The road is lined with trees and buildings."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.162193+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:24.716592+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:17:12.513052+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. There is also a large amount of water on the road. The water is more than half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:17:11.441291+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:12.177681+00:00", "label": "true", "label_explanation": "The image shows a large amount of water on the road. The water is more than half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:11.940917+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:14:09.863188+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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-07T03:19:38.033561+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:20.746947+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:21.593046+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:20.954016+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:21.860994+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 the buildings are dark. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is also a large puddle of water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:21.223821+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:30.055126+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:54.940223+00:00", "label": "false", "label_explanation": "There is no presence of water puddles on the road surface, the road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:54.702338+00:00", "label": "free", "label_explanation": "There is no presence of road blockades, the road is completely clear with no signs of obstructions or water puddles."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:55.193446+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry, with no signs of water accumulation."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:56.027611+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are a few cars parked on the side of the road, and the street lights are on. The road is empty, with no people or other vehicles visible."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.393687+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible obstructions or distortions. The lighting is adequate, and the colors are accurate."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:19:27.309237+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:58.553248+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:58.754250+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:59.251619+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:59.485964+00:00", "label": "null", "label_explanation": "The image is of a street with a tree in the center median. There are street lights on either side of the street and buildings and houses can be seen in the background. There is a red truck in the distance."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:59.033847+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}]}, {"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-07T03:19:20.278657+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.301140+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.583618+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:57.027807+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:57.247428+00:00", "label": "null", "label_explanation": "A tree has fallen across a road at night. There is a gas station on the right side of the road. There is a green traffic sign on the left side of the road. There are trees and bushes on both sides of the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:56.845159+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:31.425473+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:06.025310+00:00", "label": "partially_blocked", "label_explanation": "There is a bus partially blocking the road, but it is still possible for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:06.299465+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:06.819331+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:06.530810+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a risk to drivers."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:07.006480+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a bus driving on the road and there are some cars parked on the side of the road. There are also some trees and buildings in the background."}]}, {"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-07T03:19:32.724874+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:57.842726+00:00", "label": "null", "label_explanation": "A night-time image of a nearly empty road with a bus and a few cars parked on the side. There are trees and buildings on either side of the road, and the street lights are on. There is a bus stop on the right side of the image."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.954640+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:57.141201+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:57.636909+00:00", "label": "clean", "label_explanation": "The image is clear and has no blurring or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:57.350349+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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-06T17:07:37.505013+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "image_condition", "water_level"], "identifications": [{"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}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:19:28.586663+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:03.210110+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:03.497112+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.013410+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:04.278119+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a fallen tree blocking the road and a large puddle of water on the road. There are no cars on the road. There are people sitting at tables outside a restaurant."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:03.706110+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:19.114153+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:07.538570+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:08.240183+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:08.576948+00:00", "label": "null", "label_explanation": "A night-time image of a street with a dog walking in the middle. There are no cars on the street and the street lights are on. The street is lined with buildings and there is a yellow traffic sign on the right side of the image."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:08.037458+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:07.808467+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:24.281712+00:00", "objects": ["water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:58.154453+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is relatively low, with some puddles but no significant accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:57.892340+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road, but it is not deep and does not cover more than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:58.416843+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible blurring or obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:58.609018+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:57.688956+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}]}, {"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-07T03:19:16.387320+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:59.892028+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:00.137112+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:00.391325+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:00.609965+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:00.848733+00:00", "label": "null", "label_explanation": "The image shows a road with a large pothole. There is a large puddle of water on the road. The road is completely blocked by the pothole. There are several traffic cones placed around the pothole."}]}, {"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-07T03:19:13.825541+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:16:58.429036+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:05.054382+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.837901+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:04.083459+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:05.255138+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. The road is also flooded and the water is above the level of the wheels of a passenger vehicle."}]}, {"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-07T03:19:27.036233+00:00", "objects": ["water_in_road", "image_condition", "water_level", "road_blockade", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:04.079407+00:00", "label": "true", "label_explanation": "There are small puddles of water on the road, but they are not significant and do not impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.572030+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:04.354116+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.160208+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:04.852233+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are two cars on the road, one white and one yellow. The white car is on the left side of the image, and the yellow car is on the right side. The yellow car is stopped at a red light. There are trees and buildings on either side of the road. The street is lit by streetlights."}]}, {"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-07T03:19:19.014138+00:00", "objects": ["water_in_road", "image_description", "image_condition", "road_blockade", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:57.916507+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:58.690558+00:00", "label": "null", "label_explanation": "At night, a wide avenue with a roundabout is mostly empty. There is a concrete barrier blocking one of the exits of the roundabout. Street lights illuminate the scene."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:58.246419+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:57.686935+00:00", "label": "totally_blocked", "label_explanation": "There is a concrete barrier blocking the road completely."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:58.478580+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:18.929167+00:00", "objects": ["water_level", "road_blockade", "image_condition", "water_in_road", "image_description"], "identifications": [{"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:04.560624+00:00", "label": "partially_blocked", "label_explanation": "Although there is no complete blockage of the road, a large puddle of water covers more than half of the right lane, compromising the safe transit of vehicles."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.834477+00:00", "label": "poor", "label_explanation": "The image is blurry and unclear due to raindrops on the camera lens."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:05.278090+00:00", "label": "true", "label_explanation": "There is a large puddle of water that covers more than half of the right lane."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:05.868168+00:00", "label": "null", "label_explanation": "The image is dark and blurry, with a street scene at night. There are street lights and the headlights of cars visible. The road is wet and there is a large puddle of water on the right lane."}]}, {"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-07T03:19:21.565529+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:32.115296+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 large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road. There is a car approaching the puddle from the left lane."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:31.830452+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:31.120139+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:31.329069+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:25.754952+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is dry and clear."}]}, {"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-07T03:19:30.030385+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:02.642208+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:02.429682+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:03.238465+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:03.507584+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection. There is a fallen tree blocking the road, and there are large puddles of water on the road. The traffic light is green, and there is a motorcycle and a van stopped at the intersection. There are also several cars parked on the side of the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:02.982706+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:16.082361+00:00", "objects": ["water_level", "road_blockade", "image_condition", "water_in_road", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:20:03.831780+00:00", "label": "low_indifferent", "label_explanation": "No flooding is visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:04.880124+00:00", "label": "free", "label_explanation": "No visual elements blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.301006+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:04.534667+00:00", "label": "false", "label_explanation": "No puddles are visible on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:04.069822+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with no visible obstructions or water."}]}, {"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-07T03:19:27.298843+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:58.030590+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:58.275622+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:58.757472+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:59.017949+00:00", "label": "null", "label_explanation": "The image is of a street corner at night. There is a large tree that has fallen across the road, blocking traffic. There is also a large puddle of water on the road. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:24.744634+00:00", "label": "puddle", "label_explanation": "The water is at the level of the bottom of the wheel of a passenger vehicle."}]}, {"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-07T03:19:35.311219+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:08.195512+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:08.749846+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:07.976803+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:08.410588+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:08.982254+00:00", "label": "null", "label_explanation": "A night-time image of a wide, empty road with a crosswalk and a few trees on either side. There is a black car driving on the right side of the road, and two women are standing on the left 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-07T03:19:21.851780+00:00", "objects": ["image_condition", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:06.964758+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:07.358894+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:07.166319+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no visible water."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:07.638167+00:00", "label": "null", "label_explanation": "A night view of a city intersection. There is a white car driving on the road in the foreground, and a park with a statue in the background. The road is lit by streetlights, and the sky is dark."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:06.743777+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}]}, {"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-07T03:19:22.894543+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.423621+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the right side of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.900286+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.189016+00:00", "label": "partially_blocked", "label_explanation": "There is a large tree branch blocking the left lane of the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:57.160846+00:00", "label": "null", "label_explanation": "The image shows a road with a tree branch blocking the left lane. There is a large puddle of water on the right side of the road. The water is at the level of the sidewalk. The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:20.031276+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:55.948747+00:00", "objects": ["road_blockade", "water_level", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:36.292958+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:36.773341+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:37.014832+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:37.221315+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is well-lit and there is moderate traffic. There are a few cars parked on the side of the road and some people are walking around."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:36.488085+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"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-07T03:19:53.127373+00:00", "objects": ["road_blockade", "water_level", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:35.965589+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road, but it does not completely block the road. Vehicles can still pass, but with caution."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:36.242958+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": "image_description", "timestamp": "2024-02-07T03:20:36.862216+00:00", "label": "null", "label_explanation": "A car is driving on a road at night. There is a large puddle of water on the road, but it does not completely block the road. Vehicles can still pass, but with caution. There are trees and buildings on either side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:36.441460+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:36.663137+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-07T03:20:01.566253+00:00", "objects": ["image_condition", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:40.126566+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:39.621368+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:39.886601+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:40.388323+00:00", "label": "null", "label_explanation": "The image is of a street scene at night. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is a street light on the right side of the image and a building on the left. The road is empty, with no cars or pedestrians visible."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:39.408113+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}]}, {"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-07T02:54:10.746959+00:00", "objects": ["water_level", "image_condition", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-07T02:54:29.314225+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-07T02:54:29.008883+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T02:54:29.589737+00:00", "label": "null", "label_explanation": "A night-time image of a street with a fallen tree blocking the road. There is a garbage truck on the right side of the image and a motorcycle driving in the opposite direction on the left side of the image. There are trees and buildings on either side of the street."}, {"object": "road_blockade", "timestamp": "2024-02-07T02:54:28.826891+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}]}, {"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-07T03:19:53.716689+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:20:40.130917+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:39.926100+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:40.336607+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:39.729636+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:40.796016+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is lit by streetlights and there are a few cars parked on the side of the road. There is a large pothole in the middle of the intersection."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:20:03.952280+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:40.955481+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a concrete block partially blocking one of the lanes, but vehicles can still pass. There are small puddles of water on the road, but they are not significant. The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:40.249846+00:00", "label": "false", "label_explanation": "There are small puddles of water on the road, but they are not significant."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:40.047448+00:00", "label": "partially_blocked", "label_explanation": "There is a concrete block partially blocking the road, but vehicles can still pass."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:40.463176+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:40.745057+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-07T03:19:52.895068+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_condition", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:32.344464+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:32.115796+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:32.549573+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:32.841607+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:33.055710+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is well-lit and there are a few cars on the road. There are trees on either side of the street and buildings in the background."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:50.093396+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "image_condition", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:54.052382+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:54.313047+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a fallen tree. There is a car stopped in front of the tree. The road is wet and there is water on the ground."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:53.296242+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:53.809553+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:53.590583+00:00", "label": "puddle", "label_explanation": "The water level on the road is high, but it is not flooding. The water is about halfway up the wheels of the cars."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:18:55.658093+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:55.065985+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.751310+00:00", "label": "clean", "label_explanation": "The image is clear and there is no interference."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:55.339767+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is unclear how deep the water is, but it is likely that it would be difficult for vehicles to pass through."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:55.995510+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a large tree. There is a large amount of water on the road and it is unclear how deep the water is. The image is clear and there is no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:14:13.339402+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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-07T03:18:55.956567+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:07.757224+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:08.090919+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:07.545963+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:08.399277+00:00", "label": "null", "label_explanation": "A night view of a road with cars driving on it. There are street lights on either side of the road and a building in the background."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:07.956640+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:09.637297+00:00", "objects": ["road_blockade", "water_level", "water_in_road", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:59.071318+00:00", "label": "partially_blocked", "label_explanation": "There is a large tree branch and debris blocking part of the road, but vehicles can still pass."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:59.869390+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not exceed one-fourth of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:59.289287+00:00", "label": "false", "label_explanation": "There are some small puddles of water on the road, but they are not significant."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:59.638306+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:00.085781+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 road is partially blocked by a large tree branch and debris, but vehicles can still pass. There are some small puddles of water on the road, but they are not significant."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:19:11.803028+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:06.713050+00:00", "label": "null", "label_explanation": "A night view of a road with a white van driving on the right lane and a truck on the left lane. There are street lights on either side of the road and a few trees."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:05.706831+00:00", "label": "free", "label_explanation": "There is a white van driving on the right lane and a truck on the left lane."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:06.527922+00:00", "label": "false", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:06.082468+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:06.314609+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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-07T03:20:20.192265+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:52.329477+00:00", "label": "null", "label_explanation": "The image shows a road with fallen tree blocking the road. The road is surrounded by trees and there is a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:51.436108+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:52.057327+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:51.650539+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:51.842045+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no water present."}]}, {"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": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:48.001420+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:38.677820+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:39.083134+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:39.379144+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:39.586135+00:00", "label": "null", "label_explanation": "The image is of a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. The road is also completely submerged in water. The water is above the wheel of a passenger vehicle. The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:00:09.559106+00:00", "label": "puddle", "label_explanation": "The water level on the road is high, but it is not flooding. The water is about halfway up the wheel of a passenger vehicle."}]}, {"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-07T03:19:44.245406+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:17:20.955612+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road, making it impossible for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:21.653141+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road, forming large puddles."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:21.862375+00:00", "label": "null", "label_explanation": "The image shows a fallen tree blocking a road. There is also a large amount of water on the road, completely submerging it. The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-07T03:11:31.110216+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:21.394427+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:42.836215+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:11:39.497102+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:11:39.677606+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:11:40.250701+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-07T03:11:39.962160+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:11:40.454418+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with trees on either side. There are no cars on the road and the street lights are on. The road is in good condition and there are no visible hazards."}]}, {"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-07T03:19:45.492089+00:00", "objects": ["image_condition", "water_in_road", "image_description", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:09.570153+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:09.071678+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:09.871457+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 the buildings are dark. There are no people or cars on the street."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:09.370357+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:08.886314+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-07T03:19:40.778535+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:07.179139+00:00", "label": "false", "label_explanation": "There are no visible puddles or signs of water accumulation on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:07.719113+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:06.962312+00:00", "label": "free", "label_explanation": "There is a yellow taxi driving on the road. There are no visible obstructions or blockades on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:07.400603+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:07.978360+00:00", "label": "null", "label_explanation": "A yellow taxi is driving through an intersection at night. There are no other cars on the road. There is a building on the right side of the road with a sign that says 'restaurante'. There are trees on the left side of the road."}]}, {"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-07T03:19:40.944214+00:00", "objects": ["image_condition", "road_blockade", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:05.607251+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions or distortions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:05.886308+00:00", "label": "free", "label_explanation": "There are no features that are blocking the road. There are some small puddles of water on the road, but they are not large enough to cause any traffic disruptions."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:12.796532+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:06.127994+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 driving on the road. There are also some trees and buildings on the street."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:05.221813+00:00", "label": "true", "label_explanation": "There are several large puddles of water on the road that are between one-fourth and one-half the height of a passenger vehicle's wheel. The puddles are scattered throughout the road, but they do not completely block any lanes."}]}, {"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-07T03:19:40.900207+00:00", "objects": ["water_in_road", "image_description", "water_level", "road_blockade", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:17:24.835515+00:00", "label": "true", "label_explanation": "There is a small puddle of water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:25.538082+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection. There is a white car partially blocking the road, and a small puddle of water on the road. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:25.041091+00:00", "label": "low_indifferent", "label_explanation": "The water level is low and does not cover the tires of the white car."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:17:24.610293+00:00", "label": "partially_blocked", "label_explanation": "There is a white car partially blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:25.266328+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:48.204072+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:34.634927+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:34.434792+00:00", "label": "puddle", "label_explanation": "The water is at the level of the bottom of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:34.942124+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that has fallen across the road. There is a car parked on the side of the road. There is a street light in the background."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:34.174020+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There are no other puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:33.911572+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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-07T03:19:42.545295+00:00", "objects": ["water_level", "water_in_road", "image_description", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:17:17.673661+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:17.398225+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:18.267384+00:00", "label": "null", "label_explanation": "A night view of a road in Rio de Janeiro. The road is bordered by trees and shrubs, with a clear sky and no visible people or cars on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:17:17.178931+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:18.004292+00:00", "label": "clean", "label_explanation": "The image is clear with no visible blurring or distortions."}]}, {"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-07T03:19:33.483892+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:17:25.452364+00:00", "label": "partially_blocked", "label_explanation": "There is a road closure due to a large tree branch that has fallen and is blocking the entire right lane."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:26.465460+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-way road intersection. There are cars on the road, a green traffic light, and a yellow crosswalk. There are buildings and trees on either side of the road. The road is wet from rain."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:25.743438+00:00", "label": "true", "label_explanation": "There are several large puddles of water on the road, but they are not deep and do not cover more than one-fourth of the wheel of a passenger vehicle."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:25.967161+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is relatively low, with some puddles present but not covering more than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:26.249574+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility, with no major obstructions or blurring."}]}, {"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-07T03:19:36.525229+00:00", "objects": ["road_blockade", "image_description", "water_level", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:17:25.851952+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:26.750985+00:00", "label": "null", "label_explanation": "A car is driving on a road at night. There is a gas station on the left side of the road and a tree on the right side. There is a building in the background."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:26.262122+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:26.464490+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:26.047327+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"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-07T03:19:35.123704+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:56.528920+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.079989+00:00", "label": "partially_blocked", "label_explanation": "There is a yellow taxi partially blocking the road, but it is still possible for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.313351+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:57.012154+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There are a few cars on the road, and the traffic lights are on. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.753158+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-07T03:19:34.831728+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:20:06.601915+00:00", "label": "puddle", "label_explanation": "The water is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:06.115823+00:00", "label": "partially_blocked", "label_explanation": "There is a tree branch and debris blocking part of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:06.323080+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:06.821338+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:07.048603+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a traffic light on the left side of the image and a street sign on the right side. There is a tree in the middle of the intersection with branches and debris blocking part of the road. There is a large puddle of water on the road."}]}, {"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-07T03:19:38.372127+00:00", "objects": ["image_description", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:09.667110+00:00", "label": "null", "label_explanation": "The image is of a street scene at night. There are cars on the road, trees on either side of the road, and a bus stop on the right side of the road. There is a bike rack with several bikes parked next to the bus stop. There is a large digital billboard on the right side of the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:09.147524+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:08.583652+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:09.370706+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:08.940794+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"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-07T03:19:39.589995+00:00", "objects": ["road_blockade", "water_level", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:03.636127+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:08:45.059999+00:00", "label": "puddle", "label_explanation": "The water on the road is at the level of the hubcap of a car."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:03.848774+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a passenger vehicle's wheel."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:04.820424+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 there are a few trees on either side of the road. There is a large puddle of water on the road and a fallen tree blocking the road. There is a bicycle parked on the side of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.537181+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:34.983133+00:00", "objects": ["water_level", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:56.959256+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": "image_description", "timestamp": "2024-02-07T03:19:57.438350+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road, and there are large puddles of water on the road. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.751125+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.557706+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road, making it impassable."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:57.156590+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T17:09:31.714316+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file diff --git a/data/temp/mock_image_classification.csv b/data/temp/mock_image_classification.csv new file mode 100644 index 0000000..3120382 --- /dev/null +++ b/data/temp/mock_image_classification.csv @@ -0,0 +1,870 @@ +image_url +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000326_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000326_2024-01-14%2003%3A30%3A35.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-13%2021%3A55%3A08.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-13%2022%3A29%3A22.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-13%2022%3A44%3A13.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-13%2022%3A59%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-13%2023%3A14%3A20.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2000%3A08%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2002%3A17%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-14%2021%3A20%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-15%2005%3A33%3A11.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000398_2024-01-18%2009%3A58%3A20.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000456_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000456_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000456_2024-01-13%2021%3A55%3A08.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000456_2024-01-13%2022%3A11%3A57.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000456_2024-01-14%2002%3A17%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000456_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000766_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000766_2024-01-14%2003%3A12%3A13.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000801_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000801_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000801_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000801_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000801_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/000801_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001083_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001083_2024-01-14%2003%3A30%3A35.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001093_2024-01-18%2004%3A43%3A32.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001093_2024-01-18%2005%3A01%3A14.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001142_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001142_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001142_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001143_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001143_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001143_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001152_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001152_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001152_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001152_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001152_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-13%2022%3A11%3A57.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-13%2022%3A29%3A22.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-13%2022%3A59%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-14%2002%3A17%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-15%2000%3A36%3A46.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001160_2024-01-15%2002%3A43%3A42.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001163_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001163_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001164_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001164_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001164_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001167_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001167_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001167_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001167_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001167_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001167_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001168_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001168_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001168_2024-01-14%2014%3A36%3A03.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001168_2024-01-15%2007%3A47%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001168_2024-01-18%2003%3A31%3A26.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001168_2024-01-18%2003%3A40%3A43.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001171_2024-01-13%2021%3A55%3A08.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001171_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001171_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001171_2024-01-14%2020%3A29%3A16.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001172_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001172_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001172_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001389_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001389_2024-01-14%2003%3A30%3A35.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001389_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-13%2021%3A55%3A08.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-14%2014%3A53%3A21.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-14%2015%3A11%3A14.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-15%2007%3A38%3A20.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-15%2008%3A01%3A39.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001390_2024-01-15%2008%3A11%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001393_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001393_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001393_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001393_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001394_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001394_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001394_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001395_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001395_2024-01-14%2003%3A30%3A35.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001476_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001476_2024-01-13%2022%3A59%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001476_2024-01-13%2023%3A14%3A20.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001476_2024-01-14%2003%3A30%3A35.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001477_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001477_2024-01-13%2021%3A07%3A37.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001478_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001478_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001479_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001479_2024-01-13%2022%3A29%3A22.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001479_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001479_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001482_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001482_2024-01-13%2021%3A55%3A08.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001482_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001482_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001483_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001483_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001483_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001484_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001484_2024-01-13%2021%3A07%3A37.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001484_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001484_2024-01-13%2021%3A55%3A08.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001484_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001484_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001484_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001484_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001485_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001485_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001486_2024-01-13%2016%3A56%3A37.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001486_2024-01-13%2021%3A07%3A37.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001486_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001487_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001487_2024-01-14%2014%3A36%3A03.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001487_2024-01-15%2009%3A06%3A16.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001487_2024-01-17%2020%3A01%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001491_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001492_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001493_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001493_2024-01-15%2003%3A49%3A15.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001494_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001495_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001495_2024-01-14%2003%3A30%3A35.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001496_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001496_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001497_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001498_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001498_2024-01-13%2018%3A24%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001498_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001498_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001498_2024-01-14%2003%3A30%3A35.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001499_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001499_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001502_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001502_2024-01-13%2021%3A07%3A37.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001504_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001504_2024-01-14%2004%3A05%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001507_2024-01-13%2021%3A07%3A37.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001507_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001508_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001508_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001508_2024-01-14%2014%3A36%3A03.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001508_2024-01-14%2016%3A05%3A00.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001508_2024-01-15%2007%3A38%3A20.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001509_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001509_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001509_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001510_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001510_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001511_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001511_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001512_2024-01-13%2018%3A24%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001512_2024-01-13%2019%3A37%3A43.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001512_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001513_2024-01-13%2018%3A08%3A09.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001513_2024-01-13%2018%3A41%3A49.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001513_2024-01-13%2019%3A22%3A44.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001513_2024-01-16%2002%3A07%3A13.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001514_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001514_2024-01-13%2021%3A07%3A37.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001514_2024-01-13%2023%3A14%3A20.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001514_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001514_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001515_2024-01-13%2023%3A14%3A20.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001515_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001515_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001515_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001515_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001524_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001524_2024-01-13%2017%3A47%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001524_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001524_2024-01-14%2003%3A30%3A35.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001524_2024-01-14%2003%3A50%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001525_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001525_2024-01-13%2021%3A55%3A08.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001530_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001530_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001530_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001530_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001531_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001531_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001531_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001534_2024-01-13%2021%3A23%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001534_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001535_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001535_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001535_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001538_2024-01-13%2020%3A49%3A30.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001538_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001538_2024-01-14%2002%3A00%3A38.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001538_2024-01-14%2002%3A17%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001538_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001539_2024-01-13%2020%3A34%3A04.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001539_2024-01-13%2021%3A37%3A54.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001539_2024-01-14%2001%3A41%3A55.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001539_2024-01-14%2002%3A37%3A24.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001553_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001553_2024-01-13%2017%3A47%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001553_2024-01-14%2004%3A05%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001554_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001554_2024-01-13%2017%3A47%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001554_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001554_2024-01-14%2004%3A05%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001556_2024-01-14%2000%3A30%3A23.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001556_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001556_2024-01-14%2001%3A22%3A19.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001557_2024-01-13%2017%3A32%3A28.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001557_2024-01-13%2017%3A47%3A25.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001557_2024-01-13%2021%3A55%3A08.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001557_2024-01-14%2000%3A49%3A01.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001557_2024-01-14%2001%3A05%3A48.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_predicted_as_flood/001557_2024-01-14%2015%3A47%3A52.jpeg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_156_0-00-06.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_180_0-00-07.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_232_0-00-09.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_258_0-00-10.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_273_0-00-11.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_32_0-00-01.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_330_0-00-13.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_353_0-00-14.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_380_0-00-15.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_390_0-00-16.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_393_0-00-16.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_411_0-00-17.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_415_0-00-17.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_418_0-00-17.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_426_0-00-17.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_467_0-00-19.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_551_0-00-22.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_601_0-00-25.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_616_0-00-25.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_645_0-00-26.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_659_0-00-27.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_710_0-00-29.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_760_0-00-31.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_773_0-00-32.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_796_0-00-33.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_830_0-00-34.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_845_0-00-35.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_855_0-00-35.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_875_0-00-36.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-07_frame_910_0-00-37.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_103_0-00-06.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_106_0-00-07.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_133_0-00-08.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_26_0-00-01.733333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_30_0-00-02.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_31_0-00-02.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_37_0-00-02.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_39_0-00-02.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_3_0-00-00.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_44_0-00-02.933333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_52_0-00-03.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_55_0-00-03.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_59_0-00-03.933333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_65_0-00-04.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_66_0-00-04.400000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_72_0-00-04.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_77_0-00-05.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_7_0-00-00.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_80_0-00-05.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_82_0-00-05.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_84_0-00-05.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_87_0-00-05.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_88_0-00-05.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_90_0-00-06.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_94_0-00-06.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_98_0-00-06.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-13_frame_99_0-00-06.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_0_0-00-00.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_10_0-00-00.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_12_0-00-00.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_15_0-00-01.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_20_0-00-01.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_23_0-00-01.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_25_0-00-01.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_27_0-00-01.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_2_0-00-00.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_31_0-00-02.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_3_0-00-00.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_8_0-00-00.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1083%202023-02-15_frame_9_0-00-00.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_1000_0-00-41.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_1014_0-00-42.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_130_0-00-05.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_145_0-00-06.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_149_0-00-06.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_162_0-00-06.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_208_0-00-08.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_234_0-00-09.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_243_0-00-10.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_307_0-00-12.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_341_0-00-14.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_342_0-00-14.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_349_0-00-14.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_365_0-00-15.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_406_0-00-16.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_444_0-00-18.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_52_0-00-02.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_603_0-00-25.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_672_0-00-28.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_679_0-00-28.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_681_0-00-28.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_707_0-00-29.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_826_0-00-34.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_844_0-00-35.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_909_0-00-37.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_920_0-00-38.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_924_0-00-38.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_927_0-00-38.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_930_0-00-38.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1635%202023-02-07_frame_969_0-00-40.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_1045_0-00-43.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_106_0-00-04.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_1110_0-00-46.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_1112_0-00-46.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_128_0-00-05.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_146_0-00-06.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_195_0-00-08.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_291_0-00-12.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_299_0-00-12.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_352_0-00-14.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_449_0-00-18.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_496_0-00-20.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_56_0-00-02.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_573_0-00-23.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_602_0-00-25.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_627_0-00-26.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_635_0-00-26.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_679_0-00-28.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_700_0-00-29.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_703_0-00-29.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_70_0-00-02.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_746_0-00-31.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_767_0-00-31.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_792_0-00-33.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_794_0-00-33.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_809_0-00-33.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_924_0-00-38.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_942_0-00-39.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-07_frame_951_0-00-39.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_100_0-00-06.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_111_0-00-07.400000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_130_0-00-08.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_142_0-00-09.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_143_0-00-09.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_147_0-00-09.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_149_0-00-09.933333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_193_0-00-12.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_1_0-00-00.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_206_0-00-13.733333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_210_0-00-14.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_214_0-00-14.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_23_0-00-01.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_243_0-00-16.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_252_0-00-16.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_276_0-00-18.400000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_27_0-00-01.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_2_0-00-00.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_351_0-00-23.400000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_47_0-00-03.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_50_0-00-03.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_53_0-00-03.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_5_0-00-00.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_65_0-00-04.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_80_0-00-05.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_85_0-00-05.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_93_0-00-06.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1636%202023-02-28_frame_95_0-00-06.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE1638%202023-04-08_frame_223_0-00-09.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_106_0-00-04.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_156_0-00-06.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_158_0-00-06.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_162_0-00-06.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_175_0-00-07.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_180_0-00-07.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_201_0-00-08.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_297_0-00-12.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_29_0-00-01.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_308_0-00-12.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_335_0-00-13.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_338_0-00-14.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_358_0-00-14.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_395_0-00-16.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_432_0-00-18.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_455_0-00-18.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_496_0-00-20.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_509_0-00-21.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_524_0-00-21.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_550_0-00-22.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_575_0-00-23.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_578_0-00-24.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_579_0-00-24.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_597_0-00-24.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_624_0-00-26.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_666_0-00-27.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_668_0-00-27.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_72_0-00-03.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_762_0-00-31.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE262%202023-02-07_frame_778_0-00-32.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_1079_0-00-44.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_1089_0-00-45.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_147_0-00-06.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_223_0-00-09.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_293_0-00-12.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_359_0-00-14.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_451_0-00-18.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_500_0-00-20.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_683_0-00-28.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_713_0-00-29.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_774_0-00-32.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_803_0-00-33.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_812_0-00-33.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-07_frame_823_0-00-34.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_12_0-00-00.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_14_0-00-00.933333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_25_0-00-01.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_28_0-00-01.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_32_0-00-02.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_34_0-00-02.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_35_0-00-02.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_37_0-00-02.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-21_frame_6_0-00-00.400000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_108_0-00-07.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_135_0-00-09.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_1413_0-01-34.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_1470_0-01-38.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_179_0-00-11.933333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_183_0-00-12.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_235_0-00-15.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_351_0-00-23.400000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_412_0-00-27.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_447_0-00-29.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_54_0-00-03.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_799_0-00-53.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-02-28_frame_98_0-00-06.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-01_frame_0_0-00-00.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-01_frame_10_0-00-00.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-01_frame_22_0-00-01.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-01_frame_37_0-00-02.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-01_frame_59_0-00-03.933333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_108_0-00-04.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_110_0-00-04.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_114_0-00-04.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_117_0-00-04.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_127_0-00-05.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_129_0-00-05.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_131_0-00-05.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_132_0-00-05.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_135_0-00-05.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_151_0-00-06.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_155_0-00-06.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_159_0-00-06.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_170_0-00-07.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_173_0-00-07.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_17_0-00-00.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_29_0-00-01.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_34_0-00-01.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_65_0-00-02.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_68_0-00-02.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_69_0-00-02.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_73_0-00-03.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_86_0-00-03.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30%281%29_frame_91_0-00-03.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_112_0-00-04.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_144_0-00-06.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_147_0-00-06.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_162_0-00-06.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_174_0-00-07.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_203_0-00-08.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_221_0-00-09.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_279_0-00-11.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_28_0-00-01.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_38_0-00-01.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-03-30_frame_74_0-00-03.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-02_frame_27_0-00-01.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-02_frame_44_0-00-01.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-02_frame_55_0-00-02.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-02_frame_59_0-00-02.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-02_frame_71_0-00-02.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-02_frame_88_0-00-03.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_125_0-00-05.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_20_0-00-00.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_576_0-00-24.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_582_0-00-24.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_583_0-00-24.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_621_0-00-25.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_62_0-00-02.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_679_0-00-28.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_682_0-00-28.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_709_0-00-29.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_739_0-00-30.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_770_0-00-32.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_7_0-00-00.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_840_0-00-35.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_843_0-00-35.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_86_0-00-03.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_884_0-00-36.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_894_0-00-37.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%281%29_frame_96_0-00-04.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%282%29_frame_273_0-00-11.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%282%29_frame_402_0-00-16.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%282%29_frame_420_0-00-17.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%282%29_frame_430_0-00-17.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%282%29_frame_85_0-00-03.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%282%29_frame_922_0-00-38.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08%282%29_frame_935_0-00-38.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_1467_0-01-01.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_1702_0-01-10.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_1713_0-01-11.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_1732_0-01-12.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_1861_0-01-17.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_1908_0-01-19.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_2059_0-01-25.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_2102_0-01-27.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-08_frame_2271_0-01-34.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-14_frame_0_0-00-00.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-14_frame_1_0-00-00.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-14_frame_2_0-00-00.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-14_frame_3_0-00-00.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-14_frame_4_0-00-00.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-14_frame_5_0-00-00.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE278%202023-04-14_frame_6_0-00-00.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_101_0-00-04.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_105_0-00-04.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_106_0-00-04.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_111_0-00-04.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_114_0-00-04.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_117_0-00-04.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_118_0-00-04.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_125_0-00-05.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_130_0-00-05.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_131_0-00-05.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_145_0-00-06.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_148_0-00-06.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_158_0-00-06.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_15_0-00-00.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_176_0-00-07.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_180_0-00-07.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_1_0-00-00.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_221_0-00-09.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_229_0-00-09.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_272_0-00-11.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_279_0-00-11.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_30_0-00-01.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_327_0-00-13.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_56_0-00-02.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_58_0-00-02.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_6_0-00-00.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_77_0-00-03.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_94_0-00-03.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE32%202023-04-08_frame_97_0-00-04.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_105_0-00-04.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_109_0-00-04.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_143_0-00-05.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_157_0-00-06.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_194_0-00-08.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_287_0-00-11.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_301_0-00-12.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_303_0-00-12.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_310_0-00-12.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_316_0-00-13.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_373_0-00-15.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_375_0-00-15.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_411_0-00-17.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_419_0-00-17.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_41_0-00-01.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_473_0-00-19.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_492_0-00-20.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_501_0-00-20.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_546_0-00-22.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_554_0-00-23.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_583_0-00-24.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_585_0-00-24.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_614_0-00-25.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_651_0-00-27.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_658_0-00-27.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_698_0-00-29.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_725_0-00-30.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_791_0-00-32.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-02-07_frame_84_0-00-03.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_112_0-00-04.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_129_0-00-05.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_133_0-00-05.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_155_0-00-06.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_196_0-00-08.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_211_0-00-08.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_214_0-00-08.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_228_0-00-09.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_22_0-00-00.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_242_0-00-10.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_259_0-00-10.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_261_0-00-10.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_264_0-00-11.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_266_0-00-11.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_270_0-00-11.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_286_0-00-11.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_305_0-00-12.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_313_0-00-13.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_46_0-00-01.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_4_0-00-00.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_51_0-00-02.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_5_0-00-00.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_61_0-00-02.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_67_0-00-02.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_72_0-00-03.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_88_0-00-03.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_8_0-00-00.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_95_0-00-03.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/CODE326%202023-03-30_frame_99_0-00-04.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/flood/Copy%20of%20CODE278%202023-04-08%281%29_frame_709_0-00-29.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_1328_0-00-55.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_1353_0-00-56.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_1455_0-01-00.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_1634_0-01-08.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_1712_0-01-11.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_1833_0-01-16.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_1917_0-01-19.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2073_0-01-26.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2085_0-01-26.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2132_0-01-28.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2230_0-01-32.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_238_0-00-09.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2404_0-01-40.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2444_0-01-41.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2478_0-01-43.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2485_0-01-43.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2511_0-01-44.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2514_0-01-44.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_2690_0-01-52.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_287_0-00-11.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_3069_0-02-07.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_3475_0-02-24.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_3642_0-02-31.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_3706_0-02-34.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_3839_0-02-39.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_396_0-00-16.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_428_0-00-17.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_503_0-00-20.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_634_0-00-26.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-08_frame_741_0-00-30.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_38_0-00-02.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_42_0-00-02.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_46_0-00-03.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_55_0-00-03.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_60_0-00-04.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_61_0-00-04.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_63_0-00-04.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_75_0-00-05.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_77_0-00-05.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_79_0-00-05.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1083%202023-02-15_frame_84_0-00-05.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_1269_0-00-52.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_1321_0-00-55.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_1390_0-00-57.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_1481_0-01-01.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_1495_0-01-02.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_1554_0-01-04.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_1560_0-01-05.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_1568_0-01-05.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_382_0-00-15.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_501_0-00-20.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_623_0-00-25.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_688_0-00-28.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_710_0-00-29.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE1638%202023-04-08_frame_913_0-00-38.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1268_0-00-52.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1270_0-00-52.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1433_0-00-59.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1541_0-01-04.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1699_0-01-10.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1749_0-01-12.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1964_0-01-21.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1984_0-01-22.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_1986_0-01-22.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_2034_0-01-24.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_2037_0-01-24.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_2139_0-01-29.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_2182_0-01-30.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_2420_0-01-40.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_2486_0-01-43.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-07_frame_2617_0-01-49.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_103_0-00-06.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_106_0-00-07.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_108_0-00-07.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_112_0-00-07.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_115_0-00-07.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_122_0-00-08.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_130_0-00-08.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_45_0-00-03.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_73_0-00-04.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_77_0-00-05.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-21_frame_94_0-00-06.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_1006_0-01-07.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_1066_0-01-11.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_1073_0-01-11.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_1193_0-01-19.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_1205_0-01-20.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_1336_0-01-29.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_1347_0-01-29.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_5_0-00-00.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_634_0-00-42.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_649_0-00-43.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_688_0-00-45.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_8_0-00-00.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_911_0-01-00.733333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_930_0-01-02.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_934_0-01-02.266667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_970_0-01-04.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-02-28_frame_9_0-00-00.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_100_0-00-06.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_114_0-00-07.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_131_0-00-08.733333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_136_0-00-09.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_152_0-00-10.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_155_0-00-10.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_170_0-00-11.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_180_0-00-12.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_191_0-00-12.733333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_205_0-00-13.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_208_0-00-13.866667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_215_0-00-14.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_224_0-00-14.933333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_240_0-00-16.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_245_0-00-16.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_249_0-00-16.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_272_0-00-18.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_297_0-00-19.800000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_309_0-00-20.600000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_316_0-00-21.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_322_0-00-21.466667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_61_0-00-04.066667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_92_0-00-06.133333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_93_0-00-06.200000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-01_frame_98_0-00-06.533333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30%281%29_frame_193_0-00-08.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30%281%29_frame_199_0-00-08.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30%281%29_frame_200_0-00-08.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30%281%29_frame_204_0-00-08.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30%281%29_frame_218_0-00-09.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_1085_0-00-45.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_1127_0-00-46.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_1131_0-00-47.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_1149_0-00-47.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_1353_0-00-56.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_298_0-00-12.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_386_0-00-16.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_485_0-00-20.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_518_0-00-21.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_540_0-00-22.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_543_0-00-22.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_549_0-00-22.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_561_0-00-23.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_634_0-00-26.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_650_0-00-27.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_674_0-00-28.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_699_0-00-29.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_992_0-00-41.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-03-30_frame_993_0-00-41.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_104_0-00-04.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_124_0-00-05.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_147_0-00-06.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_165_0-00-06.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_186_0-00-07.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_268_0-00-11.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_282_0-00-11.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_316_0-00-13.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_327_0-00-13.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_338_0-00-14.083333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_348_0-00-14.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_391_0-00-16.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_400_0-00-16.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_404_0-00-16.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_407_0-00-16.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_446_0-00-18.583333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_462_0-00-19.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_510_0-00-21.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_531_0-00-22.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_562_0-00-23.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_587_0-00-24.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_588_0-00-24.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_592_0-00-24.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-02_frame_609_0-00-25.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_135_0-00-05.625000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_219_0-00-09.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_226_0-00-09.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_264_0-00-11.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_361_0-00-15.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_377_0-00-15.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_414_0-00-17.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_421_0-00-17.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_556_0-00-23.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_557_0-00-23.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%281%29_frame_561_0-00-23.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1048_0-00-43.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1061_0-00-44.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1092_0-00-45.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1218_0-00-50.750000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1245_0-00-51.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1309_0-00-54.541667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1437_0-00-59.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1493_0-01-02.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1524_0-01-03.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1707_0-01-11.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1784_0-01-14.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1864_0-01-17.666667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_1872_0-01-18.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2061_0-01-25.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2336_0-01-37.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2358_0-01-38.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2480_0-01-43.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2497_0-01-44.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2648_0-01-50.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2827_0-01-57.791667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2838_0-01-58.250000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2879_0-01-59.958333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08%282%29_frame_2912_0-02-01.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1018_0-00-42.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1114_0-00-46.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1133_0-00-47.208333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1163_0-00-48.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1390_0-00-57.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1417_0-00-59.041667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1450_0-01-00.416667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1798_0-01-14.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1809_0-01-15.375000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_1831_0-01-16.291667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_405_0-00-16.875000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_412_0-00-17.166667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_507_0-00-21.125000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_524_0-00-21.833333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_560_0-00-23.333333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_569_0-00-23.708333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_587_0-00-24.458333.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_588_0-00-24.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_660_0-00-27.500000.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_814_0-00-33.916667.jpg +https://storage.googleapis.com/datario-public/flooding_detection/classified_images/images_with_label/no_flood/CODE278%202023-04-08_frame_990_0-00-41.250000.jpg From be1bb1d64c4cb4b5d0db3dcd23065a1692887afa Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 05:10:47 +0000 Subject: [PATCH 42/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/Home.py | 10 ++-------- app/utils/utils.py | 3 ++- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/app/Home.py b/app/Home.py index 14e658a..992479d 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,14 +3,8 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import ( - create_map, - display_camera_details, - get_agrid_table, - get_cameras, - get_filted_cameras_objects, - treat_data, -) +from utils.utils import (create_map, display_camera_details, get_agrid_table, + get_cameras, get_filted_cameras_objects, treat_data) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) diff --git a/app/utils/utils.py b/app/utils/utils.py index 05948f4..6ced9d3 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,8 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode +from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, + GridUpdateMode) from utils.api import APIVisionAI vision_api = APIVisionAI( From f15b5d5dd1be4098e98dd993be6993282bb45f71 Mon Sep 17 00:00:00 2001 From: Gabriel Gazola Milan Date: Wed, 7 Feb 2024 15:19:52 -0300 Subject: [PATCH 43/64] feat: implement auth --- app/utils/utils.py | 46 ++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 40 insertions(+), 6 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index 6ced9d3..e42cd29 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,14 +6,48 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, - GridUpdateMode) +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode from utils.api import APIVisionAI -vision_api = APIVisionAI( - username=os.environ.get("VISION_API_USERNAME"), - password=os.environ.get("VISION_API_PASSWORD"), -) + +def get_vision_ai_api(): + def user_is_logged_in(): + if "logged_in" not in st.session_state: + st.session_state["logged_in"] = False + + def callback_data(): + username = st.session_state["username"] + password = st.session_state["password"] + try: + _ = APIVisionAI( + username=username, + password=password, + ) + st.session_state["logged_in"] = True + except Exception as exc: + st.error(f"Error: {exc}") + st.session_state["logged_in"] = False + + if st.session_state["logged_in"]: + return True + + st.write("Please login") + st.text_input("Username", key="username") + st.text_input("Password", key="password", type="password") + st.button("Login", on_click=callback_data) + return False + + if not user_is_logged_in(): + st.stop() + + vision_api = APIVisionAI( + username=st.session_state["username"], + password=st.session_state["password"], + ) + return vision_api + + +vision_api = get_vision_ai_api() @st.cache_data(ttl=600 * 2, persist=False) From ca7dadbb01e1507ee4445ae094f9bb05afd9575b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:20:22 +0000 Subject: [PATCH 44/64] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- app/utils/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index e42cd29..f0557dd 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,8 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode +from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, + GridUpdateMode) from utils.api import APIVisionAI From 66c971099058192c332933f3f1665be7f569d3b9 Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 16:12:13 -0300 Subject: [PATCH 45/64] chore: sequencial imagens and skip if image_condition is poor --- app/Home.py | 10 ++++++++-- app/pages/Classificador de Labels.py | 14 +++++--------- app/utils/utils.py | 9 ++++++--- 3 files changed, 19 insertions(+), 14 deletions(-) diff --git a/app/Home.py b/app/Home.py index 992479d..14e658a 100644 --- a/app/Home.py +++ b/app/Home.py @@ -3,8 +3,14 @@ import streamlit as st from streamlit_folium import st_folium # noqa -from utils.utils import (create_map, display_camera_details, get_agrid_table, - get_cameras, get_filted_cameras_objects, treat_data) +from utils.utils import ( + create_map, + display_camera_details, + get_agrid_table, + get_cameras, + get_filted_cameras_objects, + treat_data, +) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index fc10f8e..a74e884 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -71,8 +71,6 @@ def get_translation(label): return translation -# - snapshots_identifications = [ { "object": "image_condition", @@ -105,16 +103,17 @@ def get_translation(label): snapshots_objects = explode_df( pd.DataFrame(data=snapshots), "snapshot_identification" ) # noqa -# randomize dataframe -snapshots_objects = snapshots_objects.sample(frac=1) def put_selected_label(label, snapshots_options): - snapshots_to_put = snapshots_options.to_dict() - snapshots_to_put["label"] = label # # TODO: make a put for selected object/label + if (snapshots_to_put.get("object") == "image_condition") and ( + label == "poor" + ): # noqa + st.session_state.row_index += 3 + print(json.dumps(snapshots_to_put, indent=4), "\n") @@ -183,16 +182,13 @@ def buttom( st.image(snapshot_url) st.markdown( f"### {translate_dict.get('title')}", - unsafe_allow_html=True, ) st.markdown( f"**Explicação:** {translate_dict.get('explanation')}", - unsafe_allow_html=True, ) # place labels in a grid of 2 columns col1, col2, col3, col4, col5, col6 = st.columns(6) for i, label in enumerate(choices): - print(i, label) label_translated = translate_dict.get("labels").get(label) if i % 2 == 0: diff --git a/app/utils/utils.py b/app/utils/utils.py index f0557dd..c4c4581 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -1,13 +1,12 @@ # -*- coding: utf-8 -*- import json # noqa -import os +import os # noqa from typing import Union import folium import pandas as pd import streamlit as st -from st_aggrid import (AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, - GridUpdateMode) +from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode from utils.api import APIVisionAI @@ -49,6 +48,10 @@ def callback_data(): vision_api = get_vision_ai_api() +# vision_api = APIVisionAI( +# username=os.environ.get("VISION_API_USERNAME"), +# password=os.environ.get("VISION_API_PASSWORD"), +# ) @st.cache_data(ttl=600 * 2, persist=False) From 505ba08f09006d7cb8b7fb0811f5823f1a7f6ac0 Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 18:08:55 -0300 Subject: [PATCH 46/64] chore: add prompt viz, add new display for classifier and adjust layout for home --- app/Home.py | 4 +-- app/pages/Classificador de Labels.py | 48 +++++++++++++++------------- app/pages/Visualizar Prompt.py | 33 +++++++++++++++++++ app/utils/utils.py | 28 ++++++++++++---- poetry.lock | 16 +++++++++- pyproject.toml | 1 + 6 files changed, 99 insertions(+), 31 deletions(-) create mode 100644 app/pages/Visualizar Prompt.py diff --git a/app/Home.py b/app/Home.py index 14e658a..87cf56b 100644 --- a/app/Home.py +++ b/app/Home.py @@ -16,7 +16,7 @@ # st.image("./data/logo/logo.png", width=300) DEFAULT_OBJECT = "water_level" -st.markdown("# Mapa de Alagamentos | Vision AI") +st.markdown("# Identificações | Vision AI") # get cameras cameras = get_cameras( @@ -84,7 +84,6 @@ "timestamp", "object", "label", - "label_explanation", ] selected_row = get_agrid_table( cameras_identifications_merged[selected_cols].reset_index() @@ -113,6 +112,7 @@ ) with col1: + st.markdown("### 📍 Mapa") st_folium(folium_map, key="fig1", height=600, width="100%") # for camera_id in cameras_identifications_filter.index: diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index a74e884..a78d237 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -34,7 +34,7 @@ def get_translation(label): }, { "object": "water_in_road", - "title": "Há água na via?", + "title": "Há indício de chuva?", "condition": "Se a resposta for 'Não', associe o rótulo ‘Baixa ou Indiferente’ à opção 3 e pule para 4.", # noqa "explanation": " Inspeção visual para presença de água na pista, que pode variar desde uma leve umidade até condições de alagamento evidente.", # noqa "labels": { @@ -104,6 +104,14 @@ def get_translation(label): pd.DataFrame(data=snapshots), "snapshot_identification" ) # noqa +objects_number = { + object_name: i + 1 + for i, object_name in enumerate( + snapshots_objects["object"].unique().tolist() + ) # noqa +} +snapshots_objects["question_number"] = snapshots_objects["object"].map(objects_number) + def put_selected_label(label, snapshots_options): snapshots_to_put = snapshots_options.to_dict() @@ -162,13 +170,11 @@ def buttom( else: # Get the current image from the DataFrame row = snapshots_objects.iloc[st.session_state.row_index] # noqa - st.write( - f"INDEX: {st.session_state.row_index +1} / {len(snapshots_objects)}" # noqa - ) # noqa # Extract relevant information name = row["object"] translate_dict = get_translation(name) snapshot_url = row["snapshot_url"] + question_number = row["question_number"] labels_options = labels.loc[name] choices = labels_options["value"].tolist() @@ -177,33 +183,31 @@ def buttom( choices = ["true", "false"] # st.write" - col1, col2, col3 = st.columns(3) + col1, col2 = st.columns(2) with col2: st.image(snapshot_url) + with col1: st.markdown( - f"### {translate_dict.get('title')}", + f"### {question_number}. {translate_dict.get('title')}", ) st.markdown( f"**Explicação:** {translate_dict.get('explanation')}", ) # place labels in a grid of 2 columns - col1, col2, col3, col4, col5, col6 = st.columns(6) for i, label in enumerate(choices): label_translated = translate_dict.get("labels").get(label) - - if i % 2 == 0: - with col3: - buttom( - label=label, - label_translated=label_translated, - row=row, - ) - else: - with col4: - buttom( - label=label, - label_translated=label_translated, - row=row, - ) + with col1: + buttom( + label=label, + label_translated=label_translated, + row=row, + ) + # else: + # with col4: + # buttom( + # label=label, + # label_translated=label_translated, + # row=row, + # ) st.session_state.row_index += 1 # noqa diff --git a/app/pages/Visualizar Prompt.py b/app/pages/Visualizar Prompt.py new file mode 100644 index 0000000..0ff7e90 --- /dev/null +++ b/app/pages/Visualizar Prompt.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +import pandas as pd +import streamlit as st +from utils.utils import get_objects, get_objetcs_labels_df, get_prompts + +st.set_page_config(layout="wide", initial_sidebar_state="collapsed") +# st.image("./data/logo/logo.png", width=300) + +st.markdown("# Visualizar Prompt | Vision AI") + +data = get_prompts() +objects = pd.DataFrame(get_objects()) +labels = get_objetcs_labels_df(objects) + +prompt_parameters = data[0] +prompt_text = prompt_parameters.get("prompt_text") +prompt_objects = prompt_parameters.get("objects") + +selected_labels_cols = ["name", "criteria", "identification_guide", "value"] +labels = labels[selected_labels_cols] +labels = labels[labels["name"].isin(prompt_objects)] +objects_table_md = labels.to_markdown(index=False) + + +output_schema = """{\n "$defs": {\n "Object": {\n "properties": {\n "object": {\n"description": "The object from the objects table",\n"title": "Object",\n"type": "string"\n },\n "label_explanation": {\n"description": "Highly detailed visual description of the image given the object context",\n"title": "Label Explanation",\n"type": "string"\n },\n "label": {\n"anyOf": [\n {\n "type": "boolean"\n },\n {\n "type": "string"\n },\n {\n "type": "null"\n }\n],\n"description": "Label indicating the condition or characteristic of the object",\n"title": "Label"\n }\n },\n "required": [\n "object",\n "label_explanation",\n "label"\n ],\n "title": "Object",\n "type": "object"\n }\n },\n "properties": {\n "objects": {\n "items": {\n "$ref": "#/$defs/Object"\n },\n "title": "Objects",\n "type": "array"\n }\n },\n "required": [\n "objects"\n ],\n "title": "Output",\n "type": "object"\n}\n""" # noqa +output_example = """{\n "objects": [\n {\n "object": "",\n "label_explanation": "",\n "label": ""\n }\n ]\n}\n""" # noqa + +prompt_text = ( + prompt_text.replace("{objects_table_md}", objects_table_md) + .replace("{output_schema}", output_schema) + .replace("{output_example}", output_example) +) +st.markdown(prompt_text) diff --git a/app/utils/utils.py b/app/utils/utils.py index c4c4581..bc39d34 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -54,12 +54,12 @@ def callback_data(): # ) -@st.cache_data(ttl=600 * 2, persist=False) +@st.cache_data(ttl=60 * 5, persist=False) def get_cameras( only_active=True, use_mock_data=False, update_mock_data=False, - page_size=100, + page_size=3000, timeout=120, ): mock_data_path = "./data/temp/mock_api_data.json" @@ -86,7 +86,7 @@ def get_cameras( return data -@st.cache_data(ttl=600 * 2, persist=False) +@st.cache_data(ttl=60 * 2, persist=False) def get_objects( page_size=100, timeout=120, @@ -97,6 +97,17 @@ def get_objects( return data +@st.cache_data(ttl=60 * 60, persist=False) +def get_prompts( + page_size=100, + timeout=120, +): + data = vision_api._get_all_pages( + path="/prompts", page_size=page_size, timeout=timeout + ) + return data + + 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( @@ -211,19 +222,24 @@ def display_camera_details(row, cameras_identifications): st.markdown(f"### 📷 Camera snapshot") # noqa st.markdown(f"Endereço: {camera_name}") - # st.markdown(f"Data Snapshot: {snapshot_timestamp}") + st.markdown(f"Data Snapshot: {snapshot_timestamp}") # get cameras_attr url from selected row by id if image_url is None: st.markdown("Falha ao capturar o snapshot da câmera.") else: st.markdown( - f""" """, + f""" """, # noqa unsafe_allow_html=True, ) + st.markdown("



", unsafe_allow_html=True) + + st.markdown(f"### 📃 Identificações") camera_identifications = cameras_identifications.loc[camera_id] # noqa - get_agrid_table(table=camera_identifications.reset_index()) + selected_cols = ["object", "label", "label_explanation"] + + st.dataframe(camera_identifications[selected_cols].reset_index()) def get_icon_color(label: Union[bool, None]): diff --git a/poetry.lock b/poetry.lock index 5477e99..11a9f2d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1818,6 +1818,20 @@ files = [ [package.dependencies] streamlit = ">=0.63" +[[package]] +name = "tabulate" +version = "0.9.0" +description = "Pretty-print tabular data" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, + {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, +] + +[package.extras] +widechars = ["wcwidth"] + [[package]] name = "tenacity" version = "8.2.3" @@ -2008,4 +2022,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "69f3cecbac03a758c87cd0c84c6d8a0a65aa6f8d10b8d9db9dd82cf2f434333b" +content-hash = "445c96f85889261bd38fb683577bd2295c370e0960834f2db5c8e03802f9b084" diff --git a/pyproject.toml b/pyproject.toml index 969867c..59ce351 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ streamlit-extras = "^0.3.5" streamlit-autorefresh = "^1.0.1" pillow = "^10.1.0" streamlit-aggrid = "0.3.4.post3" +tabulate = "^0.9.0" [build-system] From c346ee023aeb80854767b5b11b7c825ecb48a378 Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 18:14:06 -0300 Subject: [PATCH 47/64] chore: add prompt viz, add new display for classifier and adjust layout for home --- app/pages/Visualizar Prompt.py | 4 ++++ app/utils/utils.py | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/app/pages/Visualizar Prompt.py b/app/pages/Visualizar Prompt.py index 0ff7e90..76f64ec 100644 --- a/app/pages/Visualizar Prompt.py +++ b/app/pages/Visualizar Prompt.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +import json + import pandas as pd import streamlit as st from utils.utils import get_objects, get_objetcs_labels_df, get_prompts @@ -23,7 +25,9 @@ output_schema = """{\n "$defs": {\n "Object": {\n "properties": {\n "object": {\n"description": "The object from the objects table",\n"title": "Object",\n"type": "string"\n },\n "label_explanation": {\n"description": "Highly detailed visual description of the image given the object context",\n"title": "Label Explanation",\n"type": "string"\n },\n "label": {\n"anyOf": [\n {\n "type": "boolean"\n },\n {\n "type": "string"\n },\n {\n "type": "null"\n }\n],\n"description": "Label indicating the condition or characteristic of the object",\n"title": "Label"\n }\n },\n "required": [\n "object",\n "label_explanation",\n "label"\n ],\n "title": "Object",\n "type": "object"\n }\n },\n "properties": {\n "objects": {\n "items": {\n "$ref": "#/$defs/Object"\n },\n "title": "Objects",\n "type": "array"\n }\n },\n "required": [\n "objects"\n ],\n "title": "Output",\n "type": "object"\n}\n""" # noqa +output_schema = json.dumps(json.loads(output_schema), indent=4) output_example = """{\n "objects": [\n {\n "object": "",\n "label_explanation": "",\n "label": ""\n }\n ]\n}\n""" # noqa +output_example = json.dumps(json.loads(output_example), indent=4) prompt_text = ( prompt_text.replace("{objects_table_md}", objects_table_md) diff --git a/app/utils/utils.py b/app/utils/utils.py index bc39d34..5cb2a29 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -47,11 +47,11 @@ def callback_data(): return vision_api -vision_api = get_vision_ai_api() -# vision_api = APIVisionAI( -# username=os.environ.get("VISION_API_USERNAME"), -# password=os.environ.get("VISION_API_PASSWORD"), -# ) +# vision_api = get_vision_ai_api() +vision_api = APIVisionAI( + username=os.environ.get("VISION_API_USERNAME"), + password=os.environ.get("VISION_API_PASSWORD"), +) @st.cache_data(ttl=60 * 5, persist=False) From 4fd520cf2cc7e57a96f00f005cd102da59ca80e4 Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 18:23:56 -0300 Subject: [PATCH 48/64] chore: add prompt viz, add new display for classifier and adjust layout for home --- app/utils/utils.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index 5cb2a29..bc39d34 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -47,11 +47,11 @@ def callback_data(): return vision_api -# vision_api = get_vision_ai_api() -vision_api = APIVisionAI( - username=os.environ.get("VISION_API_USERNAME"), - password=os.environ.get("VISION_API_PASSWORD"), -) +vision_api = get_vision_ai_api() +# vision_api = APIVisionAI( +# username=os.environ.get("VISION_API_USERNAME"), +# password=os.environ.get("VISION_API_PASSWORD"), +# ) @st.cache_data(ttl=60 * 5, persist=False) From 5d29ad07e4a4ce238e792650169cdb3738d2a1ea Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 18:34:13 -0300 Subject: [PATCH 49/64] chore: add prompt viz, add new display for classifier and adjust layout for home --- app/pages/Visualizar Prompt.py | 3 ++- app/utils/utils.py | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app/pages/Visualizar Prompt.py b/app/pages/Visualizar Prompt.py index 76f64ec..de2f840 100644 --- a/app/pages/Visualizar Prompt.py +++ b/app/pages/Visualizar Prompt.py @@ -12,12 +12,13 @@ data = get_prompts() objects = pd.DataFrame(get_objects()) -labels = get_objetcs_labels_df(objects) +labels = get_objetcs_labels_df(objects, keep_null=True) prompt_parameters = data[0] prompt_text = prompt_parameters.get("prompt_text") prompt_objects = prompt_parameters.get("objects") + selected_labels_cols = ["name", "criteria", "identification_guide", "value"] labels = labels[selected_labels_cols] labels = labels[labels["name"].isin(prompt_objects)] diff --git a/app/utils/utils.py b/app/utils/utils.py index bc39d34..ed25dc8 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -172,11 +172,12 @@ def explode_df(dataframe, column_to_explode, prefix=None): return result_df -def get_objetcs_labels_df(objects): +def get_objetcs_labels_df(objects, keep_null=False): objects_df = objects.rename(columns={"id": "object_id"}) objects_df = objects_df[["name", "object_id", "labels"]] labels = explode_df(objects_df, "labels") - labels = labels[~labels["value"].isin(["null"])] + if not keep_null: + labels = labels[~labels["value"].isin(["null"])] labels = labels.rename(columns={"label_id": "label"}) labels = labels.reset_index(drop=True) return labels From dce93d9ee5fac231b16d20e90309bfb9421c35c3 Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 20:58:20 -0300 Subject: [PATCH 50/64] chore: add prompt viz, add new display for classifier and adjust layout for home --- app/Home.py | 20 +++++--- app/pages/Visualizar Prompt.py | 1 + app/utils/utils.py | 86 +++++++++++++++------------------- 3 files changed, 54 insertions(+), 53 deletions(-) diff --git a/app/Home.py b/app/Home.py index 87cf56b..5360e35 100644 --- a/app/Home.py +++ b/app/Home.py @@ -10,6 +10,7 @@ get_cameras, get_filted_cameras_objects, treat_data, + get_icon_color, ) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") @@ -79,15 +80,22 @@ with col1: selected_cols = [ - "bairro", - "snapshot_timestamp", - "timestamp", + "index", + "id", "object", "label", + "timestamp", + "snapshot_timestamp", + "bairro", ] - selected_row = get_agrid_table( - cameras_identifications_merged[selected_cols].reset_index() - ) # noqa + 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] + selected_row = get_agrid_table(aggrid_table) # noqa with col2: if selected_row: diff --git a/app/pages/Visualizar Prompt.py b/app/pages/Visualizar Prompt.py index de2f840..5900d35 100644 --- a/app/pages/Visualizar Prompt.py +++ b/app/pages/Visualizar Prompt.py @@ -22,6 +22,7 @@ selected_labels_cols = ["name", "criteria", "identification_guide", "value"] labels = labels[selected_labels_cols] labels = labels[labels["name"].isin(prompt_objects)] +labels = labels.rename(columns={"name": "object", "value": "label"}) objects_table_md = labels.to_markdown(index=False) diff --git a/app/utils/utils.py b/app/utils/utils.py index ed25dc8..9764a7b 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -235,15 +235,31 @@ def display_camera_details(row, cameras_identifications): ) st.markdown("



", unsafe_allow_html=True) - st.markdown(f"### 📃 Identificações") + st.markdown(f"### 📃 Detalhes") camera_identifications = cameras_identifications.loc[camera_id] # noqa - selected_cols = ["object", "label", "label_explanation"] + camera_identifications = camera_identifications.reset_index(drop=True) + camera_identifications.index = camera_identifications["label"].apply( + lambda x: get_icon_color(x, type="emoji") + ) + camera_identifications["timestamp"] = camera_identifications["timestamp"].apply( + lambda x: x.strftime("%d/%m/%Y %H:%M") + ) + + rename_columns = { + "timestamp": "Data Identificação", + "object": "Identificador", + "label": "Label", + "label_explanation": "Descrição", + } + camera_identifications = camera_identifications[list(rename_columns.keys())] - st.dataframe(camera_identifications[selected_cols].reset_index()) + camera_identifications = camera_identifications.rename(columns=rename_columns) + st.dataframe(camera_identifications) -def get_icon_color(label: Union[bool, None]): + +def get_icon_color(label: Union[bool, None], type=None): if label in [ "major", "totally_blocked", @@ -253,8 +269,13 @@ def get_icon_color(label: Union[bool, None]): "true", "flodding", ]: # noqa + if type == "emoji": + return "🔴" return "red" + elif label in ["minor", "partially_blocked", "difficult", "puddle"]: + if type == "emoji": + return "🟠" return "orange" elif label in [ "normal", @@ -265,9 +286,14 @@ def get_icon_color(label: Union[bool, None]): "false", "low_indifferent", ]: + if type == "emoji": + return "🟢" + return "green" else: - return "gray" + if type == "emoji": + return "⚫" + return "grey" def create_map(chart_data, location=None): @@ -302,53 +328,19 @@ def create_map(chart_data, location=None): return m -def label_emoji(label): - if label is True: - return "🔴" - elif label is False: - return "🟢" - else: - return "⚫" - - -def get_table_cameras_with_images(dataframe): - # filter only flooded cameras - table_data = ( - dataframe[dataframe["label"].notnull()] - .sort_values(by=["label", "id_camera"], ascending=False) - .reset_index(drop=True) - ) - table_data["emoji"] = table_data["label"].apply(label_emoji) - - col_order = [ - "emoji", - "id_camera", - "object", - "bairro", - "subprefeitura", - "id_bolsao", - "bacia", - "sub_bacia", - "image_url", - ] - table_data = table_data[col_order] - - return table_data - - def get_agrid_table(table): - gb = GridOptionsBuilder.from_dataframe(table) # noqa - + gb = GridOptionsBuilder.from_dataframe(table, index=True) # noqa + gb.configure_column("index", header_name="", pinned="left") gb.configure_column("id", header_name="ID Camera", pinned="left") gb.configure_column("object", header_name="Identificador") gb.configure_column("label", header_name="Label") gb.configure_column("timestamp", header_name="Data Identificação") - gb.configure_column( - "label_explanation", - header_name="Descrição", - cellStyle={"white-space": "normal"}, - autoHeight=True, - ) + # gb.configure_column( + # "label_explanation", + # header_name="Descrição", + # cellStyle={"white-space": "normal"}, + # autoHeight=True, + # ) gb.configure_column( "snapshot_timestamp", header_name="Data Snapshot", hide=False From c989bb5519211deafe9894d7aea419baada1ad17 Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 21:24:40 -0300 Subject: [PATCH 51/64] chore: add prompt viz, add new display for classifier and adjust layout for home --- app/utils/utils.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index 9764a7b..dc1ba91 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -239,13 +239,15 @@ def display_camera_details(row, cameras_identifications): camera_identifications = cameras_identifications.loc[camera_id] # noqa camera_identifications = camera_identifications.reset_index(drop=True) - camera_identifications.index = camera_identifications["label"].apply( + + camera_identifications[""] = camera_identifications["label"].apply( lambda x: get_icon_color(x, type="emoji") ) + camera_identifications.index = camera_identifications[""] + camera_identifications["timestamp"] = camera_identifications["timestamp"].apply( lambda x: x.strftime("%d/%m/%Y %H:%M") ) - rename_columns = { "timestamp": "Data Identificação", "object": "Identificador", From 337dd49a4b4383abf9a834415da09f8e29ed5ec3 Mon Sep 17 00:00:00 2001 From: d116626 Date: Wed, 7 Feb 2024 21:43:04 -0300 Subject: [PATCH 52/64] chore: add prompt viz, add new display for classifier and adjust layout for home --- app/pages/Classificador de Labels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index a78d237..e61b2cf 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -183,7 +183,7 @@ def buttom( choices = ["true", "false"] # st.write" - col1, col2 = st.columns(2) + col1, col2 = st.columns([1, 1.5]) with col2: st.image(snapshot_url) with col1: From cbe1d318add4f32f8d8b8f16ab5d56398a611019 Mon Sep 17 00:00:00 2001 From: d116626 Date: Thu, 8 Feb 2024 00:03:43 -0300 Subject: [PATCH 53/64] fix: remove aggrid header element --- app/utils/utils.py | 62 ++- poetry.lock | 1326 ++++++++++++++++++++++---------------------- pyproject.toml | 10 + 3 files changed, 725 insertions(+), 673 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index dc1ba91..c614b56 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -6,7 +6,12 @@ import folium import pandas as pd import streamlit as st -from st_aggrid import AgGrid, ColumnsAutoSizeMode, GridOptionsBuilder, GridUpdateMode +from st_aggrid import ( + AgGrid, + ColumnsAutoSizeMode, + GridOptionsBuilder, + GridUpdateMode, +) from utils.api import APIVisionAI @@ -235,7 +240,7 @@ def display_camera_details(row, cameras_identifications): ) st.markdown("



", unsafe_allow_html=True) - st.markdown(f"### 📃 Detalhes") + st.markdown("### 📃 Detalhes") camera_identifications = cameras_identifications.loc[camera_id] # noqa camera_identifications = camera_identifications.reset_index(drop=True) @@ -245,7 +250,9 @@ def display_camera_details(row, cameras_identifications): ) camera_identifications.index = camera_identifications[""] - camera_identifications["timestamp"] = camera_identifications["timestamp"].apply( + camera_identifications["timestamp"] = camera_identifications[ + "timestamp" + ].apply( # noqa lambda x: x.strftime("%d/%m/%Y %H:%M") ) rename_columns = { @@ -254,9 +261,11 @@ def display_camera_details(row, cameras_identifications): "label": "Label", "label_explanation": "Descrição", } - camera_identifications = camera_identifications[list(rename_columns.keys())] + camera_identifications = camera_identifications[list(rename_columns.keys())] # noqa - camera_identifications = camera_identifications.rename(columns=rename_columns) + camera_identifications = camera_identifications.rename( + columns=rename_columns + ) # noqa st.dataframe(camera_identifications) @@ -332,39 +341,46 @@ def create_map(chart_data, location=None): def get_agrid_table(table): gb = GridOptionsBuilder.from_dataframe(table, index=True) # noqa - gb.configure_column("index", header_name="", pinned="left") - gb.configure_column("id", header_name="ID Camera", pinned="left") - gb.configure_column("object", header_name="Identificador") - gb.configure_column("label", header_name="Label") - gb.configure_column("timestamp", header_name="Data Identificação") - # gb.configure_column( - # "label_explanation", - # header_name="Descrição", - # cellStyle={"white-space": "normal"}, - # autoHeight=True, - # ) + gb.configure_column("index", header_name="", pinned="left") + gb.configure_column("id", header_name="ID Camera", pinned="left") # noqa + gb.configure_column("object", header_name="Identificador", wrapText=True) + gb.configure_column("label", header_name="Label", wrapText=True) + gb.configure_column( + "timestamp", header_name="Data Identificação", wrapText=True + ) # noqa gb.configure_column( - "snapshot_timestamp", header_name="Data Snapshot", hide=False + "snapshot_timestamp", + header_name="Data Snapshot", + hide=False, + wrapText=True, # noqa ) # noqa + gb.configure_column( + "label_explanation", + header_name="Descrição", + cellStyle={"white-space": "normal"}, + autoHeight=True, + wrapText=True, + hide=True, + ) gb.configure_selection("single", use_checkbox=False) - gb.configure_side_bar() gb.configure_grid_options(enableCellTextSelection=True) # gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa grid_options = gb.build() - grid_response = AgGrid( table, gridOptions=grid_options, columns_auto_size_mode=ColumnsAutoSizeMode.FIT_CONTENTS, update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, # noqa - # fit_columns_on_grid_load=True - # custom_css=custom_css, - # allow_unsafe_jscode=True, + # fit_columns_on_grid_load=True, height=600, - # width="100%", + custom_css={ + "#gridToolBar": { + "padding-bottom": "0px !important", + } + }, ) selected_row = grid_response["selected_rows"] diff --git a/poetry.lock b/poetry.lock index 11a9f2d..e5c1e3d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "altair" -version = "5.1.2" +version = "5.2.0" description = "Vega-Altair: A declarative statistical visualization library for Python." optional = false python-versions = ">=3.8" files = [ - {file = "altair-5.1.2-py3-none-any.whl", hash = "sha256:7219708ec33c152e53145485040f428954ed15fd09b2a2d89e543e6d111dae7f"}, - {file = "altair-5.1.2.tar.gz", hash = "sha256:e5f52a71853a607c61ce93ad4a414b3d486cd0d46ac597a24ae8bd1ac99dd460"}, + {file = "altair-5.2.0-py3-none-any.whl", hash = "sha256:8c4888ad11db7c39f3f17aa7f4ea985775da389d79ac30a6c22856ab238df399"}, + {file = "altair-5.2.0.tar.gz", hash = "sha256:2ad7f0c8010ebbc46319cc30febfb8e59ccf84969a201541c207bc3a4fa6cf81"}, ] [package.dependencies] @@ -21,42 +21,46 @@ toolz = "*" typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} [package.extras] -dev = ["anywidget", "black (<24)", "hatch", "ipython", "m2r", "mypy", "pandas-stubs", "pyarrow (>=11)", "pytest", "pytest-cov", "ruff", "types-jsonschema", "types-setuptools", "vega-datasets", "vegafusion[embed] (>=1.4.0)", "vl-convert-python (>=0.14.0)"] -doc = ["docutils", "geopandas", "jinja2", "myst-parser", "numpydoc", "pillow (>=9,<10)", "pydata-sphinx-theme", "scipy", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinxext-altair"] +dev = ["anywidget", "geopandas", "hatch", "ipython", "m2r", "mypy", "pandas-stubs", "pyarrow (>=11)", "pytest", "pytest-cov", "ruff (>=0.1.3)", "types-jsonschema", "types-setuptools", "vega-datasets", "vegafusion[embed] (>=1.4.0)", "vl-convert-python (>=1.1.0)"] +doc = ["docutils", "jinja2", "myst-parser", "numpydoc", "pillow (>=9,<10)", "pydata-sphinx-theme (>=0.14.1)", "scipy", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinxext-altair"] [[package]] name = "attrs" -version = "23.1.0" +version = "23.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, - {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, + {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, + {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, ] [package.extras] cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[docs,tests]", "pre-commit"] +dev = ["attrs[tests]", "pre-commit"] docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] +tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] [[package]] name = "beautifulsoup4" -version = "4.12.2" +version = "4.12.3" description = "Screen-scraping library" optional = false python-versions = ">=3.6.0" files = [ - {file = "beautifulsoup4-4.12.2-py3-none-any.whl", hash = "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a"}, - {file = "beautifulsoup4-4.12.2.tar.gz", hash = "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da"}, + {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, + {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, ] [package.dependencies] soupsieve = ">1.2" [package.extras] +cchardet = ["cchardet"] +chardet = ["chardet"] +charset-normalizer = ["charset-normalizer"] html5lib = ["html5lib"] lxml = ["lxml"] @@ -73,17 +77,17 @@ files = [ [[package]] name = "branca" -version = "0.7.0" +version = "0.7.1" description = "Generate complex HTML+JS pages with Python" optional = false python-versions = ">=3.7" files = [ - {file = "branca-0.7.0-py3-none-any.whl", hash = "sha256:c653d9a3fef1e6cd203757c77d3eb44810f11998506451f9a27d52b983500c16"}, - {file = "branca-0.7.0.tar.gz", hash = "sha256:503ccb589a9ee9464cb7b5b17e5ffd8d5082c5c28624197f58f20d4d377a68bb"}, + {file = "branca-0.7.1-py3-none-any.whl", hash = "sha256:70515944ed2d1ed2784c552508df58037ca19402a8a1069d57f9113e3e012f51"}, + {file = "branca-0.7.1.tar.gz", hash = "sha256:e6b6f37a37bc0abffd960c68c045a7fe025d628eff87fedf6ab6ca814812110c"}, ] [package.dependencies] -jinja2 = "*" +jinja2 = ">=3" [[package]] name = "cachetools" @@ -98,13 +102,13 @@ files = [ [[package]] name = "certifi" -version = "2023.7.22" +version = "2024.2.2" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, - {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, + {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, + {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, ] [[package]] @@ -322,13 +326,13 @@ files = [ [[package]] name = "faker" -version = "20.0.0" +version = "23.1.0" description = "Faker is a Python package that generates fake data for you." optional = false python-versions = ">=3.8" files = [ - {file = "Faker-20.0.0-py3-none-any.whl", hash = "sha256:171b27ba106cf69e30a91ac471407c2362bd6af27738e2461dc441aeff5eed91"}, - {file = "Faker-20.0.0.tar.gz", hash = "sha256:df44b68b9d231e784f4bfe616d781576cfef9f0c5d9a17671bf84dc10d7b44d6"}, + {file = "Faker-23.1.0-py3-none-any.whl", hash = "sha256:60e89e5c0b584e285a7db05eceba35011a241954afdab2853cb246c8a56700a2"}, + {file = "Faker-23.1.0.tar.gz", hash = "sha256:b7f76bb1b2ac4cdc54442d955e36e477c387000f31ce46887fb9722a041be60b"}, ] [package.dependencies] @@ -371,60 +375,60 @@ testing = ["pytest"] [[package]] name = "fonttools" -version = "4.44.1" +version = "4.48.1" description = "Tools to manipulate font files" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.44.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8acf50c20bae9880169ff133768a54f587d956676d28894401835a28f450935e"}, - {file = "fonttools-4.44.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:02939e423540e05843a5c2b84704f45d307144f761a42a299d9b0b481e497225"}, - {file = "fonttools-4.44.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d96cc1395dbf82dedfd4eb127d320004088df6007383c25db676e5f42fe414"}, - {file = "fonttools-4.44.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aff3c12fba2525e5b7f7ba73fab10ddac386f8019b6cf2b8701239cf9f3e2a8a"}, - {file = "fonttools-4.44.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3675499e11a2332a867c1ce98792d29615ac143186c1c1d3e1bb7a13f1929b52"}, - {file = "fonttools-4.44.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fcf6c0c2bf2b0baeb55b5e44e9d6f2b71ede808949b8ab4daca077cc3f9cfff5"}, - {file = "fonttools-4.44.1-cp310-cp310-win32.whl", hash = "sha256:147c9f5fbe12486fa186b5ccdc64a537d581e4f9bbddfbc40f2a15a55c66f54e"}, - {file = "fonttools-4.44.1-cp310-cp310-win_amd64.whl", hash = "sha256:0bd45092788dbfb781fae299905695a3fe5c1956a515ee331c9f034da3a9d0e5"}, - {file = "fonttools-4.44.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d22d9a4cb3f0c96991d4dccab66c7377302c9ca09dcf0cbce968d73919585120"}, - {file = "fonttools-4.44.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0c1ac78c60b155ce709b50e28321baa3813dfae648bf55ac80d5a97c70d088e0"}, - {file = "fonttools-4.44.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6065578bdf96d4b69dd53d8b49ff02412b2a46d461b0d1ee5eddb81c3a953a46"}, - {file = "fonttools-4.44.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17702266ba92cef9a0d7418609f8f8b8e019192c62e8014f10b89a485af9d8ce"}, - {file = "fonttools-4.44.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c1d22a61a247262f178819f0331e0692e27c88be5770bf1c2404d0d52799f711"}, - {file = "fonttools-4.44.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:61b794e6a9208e7ee3abf11a9f56b9c1409967817dfd732f97b44812686cab1d"}, - {file = "fonttools-4.44.1-cp311-cp311-win32.whl", hash = "sha256:a02747ac741abe1fe994ac55b143432637d136e4a5a472e7a90574a015b57dc4"}, - {file = "fonttools-4.44.1-cp311-cp311-win_amd64.whl", hash = "sha256:8dd81470227c53ab78788f1b21b7e655b2c3aa66f0f670d9011f2deb64bed034"}, - {file = "fonttools-4.44.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:63efb6b66c275cb2c750576ed743f9995b92bcd733b72699599c6f74dce277c6"}, - {file = "fonttools-4.44.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:25504368ce3dbdc5df1e6bee1980674b60216c543ad2647c85333f8daf5e9dd2"}, - {file = "fonttools-4.44.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc4acf7f1684d234d788cbb1976fbced4e1ae7c51abaf4314e11d1d86498ba76"}, - {file = "fonttools-4.44.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6698abcbb43f68ecfe473169d5928adf0a09ab8e6439322f80bc10a80ab9195d"}, - {file = "fonttools-4.44.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6dce674ba22419a9f3822f9c1b6bd823fce11d3a34372c580216167b6d9e232b"}, - {file = "fonttools-4.44.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8493c84ac86fdc5dde68b720959b79865cf5216a5c1ee9b4a161eac8c56dc310"}, - {file = "fonttools-4.44.1-cp312-cp312-win32.whl", hash = "sha256:a4a8734ddb91647d9545caae4dfb4633045c5dccb2fccb2d6c2a09424d975ef1"}, - {file = "fonttools-4.44.1-cp312-cp312-win_amd64.whl", hash = "sha256:7debaae9f267702ac4e89944bbfc4e55bc2d0ef891aa6c18d6afd9184a14554a"}, - {file = "fonttools-4.44.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:748d21764665209d5e0729ce8386fd01c92258699db732c7dbe4c9abf9e7c392"}, - {file = "fonttools-4.44.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:753de1235ac308111f80eacb9d92b328088adfec7147fd101692cc49ad53a3fe"}, - {file = "fonttools-4.44.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c142c11d28af532c7edddf191367d6acf2a2884bb4e2ba329c265f58ca865d0a"}, - {file = "fonttools-4.44.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6dd10d40028bf71e9604279875e4c258a36b2a42fff349fdf20141813d83cc61"}, - {file = "fonttools-4.44.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8e4961e26423ddd713672746c110e708c0094deae74493e21198d85f54f7d88c"}, - {file = "fonttools-4.44.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:af89a9370dc463ffed3010af6fad1aa58998ce5eb5d94c2c2688768e6b108cc8"}, - {file = "fonttools-4.44.1-cp38-cp38-win32.whl", hash = "sha256:6d2d0e0d64a21b07c30206d500f8e77f4beaf80e7cc0ffd65a304a9ae1c0e197"}, - {file = "fonttools-4.44.1-cp38-cp38-win_amd64.whl", hash = "sha256:dc16e26668ec2ae01a37ff8293ce0326cf8c043e24fcf86fc38e6c25ddd98926"}, - {file = "fonttools-4.44.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a04ad39ac67c523c9f8f102706ac05d7e5cee3148a3519c6afc6ffbb3f0af7aa"}, - {file = "fonttools-4.44.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:11e9cba26fd658a491c82fdf5dc5bdb8078ca69ca70ba5724f63a66d486fa8b3"}, - {file = "fonttools-4.44.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fa904fb50c9f1b3ffbe352c7c4ed35eb16558933f011ff74f86f33504358e4d"}, - {file = "fonttools-4.44.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caf014bcc24673b681e7f768180f063691b301e2eccd9a53c43b5eebfb448bd8"}, - {file = "fonttools-4.44.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:97fb6f806694268d0c35abfc1f33662a1a96d12875a790b2b69d7b8d4fadbea5"}, - {file = "fonttools-4.44.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ac523156bf227f009102cf33c116bcc18d6b9a05ea9a3a6eaa57e3adb42620a9"}, - {file = "fonttools-4.44.1-cp39-cp39-win32.whl", hash = "sha256:50aacecec89ca07ba97a63a949f9b273ccbdc105602ec4426c8a9a143f9e6aa3"}, - {file = "fonttools-4.44.1-cp39-cp39-win_amd64.whl", hash = "sha256:994c62a46cb2cfd670edc360d87c902ee475790fbddb267abd9fd8a83199423a"}, - {file = "fonttools-4.44.1-py3-none-any.whl", hash = "sha256:e775851c6884c16ed3831e461a0d5e271d9ebcd05204122d3a21ca2465a5d8c1"}, - {file = "fonttools-4.44.1.tar.gz", hash = "sha256:0d8ed83815a125b25c10404736a2cd43d60eb6479fe2d68373418cd1822ec330"}, + {file = "fonttools-4.48.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:702ae93058c81f46461dc4b2c79f11d3c3d8fd7296eaf8f75b4ba5bbf813cd5f"}, + {file = "fonttools-4.48.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:97f0a49fa6aa2d6205c6f72f4f98b74ef4b9bfdcb06fd78e6fe6c7af4989b63e"}, + {file = "fonttools-4.48.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3260db55f1843e57115256e91247ad9f68cb02a434b51262fe0019e95a98738"}, + {file = "fonttools-4.48.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e740a7602c2bb71e1091269b5dbe89549749a8817dc294b34628ffd8b2bf7124"}, + {file = "fonttools-4.48.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4108b1d247953dd7c90ec8f457a2dec5fceb373485973cc852b14200118a51ee"}, + {file = "fonttools-4.48.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56339ec557f0c342bddd7c175f5e41c45fc21282bee58a86bd9aa322bec715f2"}, + {file = "fonttools-4.48.1-cp310-cp310-win32.whl", hash = "sha256:bff5b38d0e76eb18e0b8abbf35d384e60b3371be92f7be36128ee3e67483b3ec"}, + {file = "fonttools-4.48.1-cp310-cp310-win_amd64.whl", hash = "sha256:f7449493886da6a17472004d3818cc050ba3f4a0aa03fb47972e4fa5578e6703"}, + {file = "fonttools-4.48.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:18b35fd1a850ed7233a99bbd6774485271756f717dac8b594958224b54118b61"}, + {file = "fonttools-4.48.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cad5cfd044ea2e306fda44482b3dd32ee47830fa82dfa4679374b41baa294f5f"}, + {file = "fonttools-4.48.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f30e605c7565d0da6f0aec75a30ec372072d016957cd8fc4469721a36ea59b7"}, + {file = "fonttools-4.48.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aee76fd81a8571c68841d6ef0da750d5ff08ff2c5f025576473016f16ac3bcf7"}, + {file = "fonttools-4.48.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:5057ade278e67923000041e2b195c9ea53e87f227690d499b6a4edd3702f7f01"}, + {file = "fonttools-4.48.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b10633aafc5932995a391ec07eba5e79f52af0003a1735b2306b3dab8a056d48"}, + {file = "fonttools-4.48.1-cp311-cp311-win32.whl", hash = "sha256:0d533f89819f9b3ee2dbedf0fed3825c425850e32bdda24c558563c71be0064e"}, + {file = "fonttools-4.48.1-cp311-cp311-win_amd64.whl", hash = "sha256:d20588466367f05025bb1efdf4e5d498ca6d14bde07b6928b79199c588800f0a"}, + {file = "fonttools-4.48.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0a2417547462e468edf35b32e3dd06a6215ac26aa6316b41e03b8eeaf9f079ea"}, + {file = "fonttools-4.48.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cf5a0cd974f85a80b74785db2d5c3c1fd6cc09a2ba3c837359b2b5da629ee1b0"}, + {file = "fonttools-4.48.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0452fcbfbce752ba596737a7c5ec5cf76bc5f83847ce1781f4f90eab14ece252"}, + {file = "fonttools-4.48.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:578c00f93868f64a4102ecc5aa600a03b49162c654676c3fadc33de2ddb88a81"}, + {file = "fonttools-4.48.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:63dc592a16cd08388d8c4c7502b59ac74190b23e16dfc863c69fe1ea74605b68"}, + {file = "fonttools-4.48.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9b58638d8a85e3a1b32ec0a91d9f8171a877b4b81c408d4cb3257d0dee63e092"}, + {file = "fonttools-4.48.1-cp312-cp312-win32.whl", hash = "sha256:d10979ef14a8beaaa32f613bb698743f7241d92f437a3b5e32356dfb9769c65d"}, + {file = "fonttools-4.48.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdfd7557d1bd294a200bd211aa665ca3b02998dcc18f8211a5532da5b8fad5c5"}, + {file = "fonttools-4.48.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:3cdb9a92521b81bf717ebccf592bd0292e853244d84115bfb4db0c426de58348"}, + {file = "fonttools-4.48.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9b4ec6d42a7555f5ae35f3b805482f0aad0f1baeeef54859492ea3b782959d4a"}, + {file = "fonttools-4.48.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:902e9c4e9928301912f34a6638741b8ae0b64824112b42aaf240e06b735774b1"}, + {file = "fonttools-4.48.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8c8b54bd1420c184a995f980f1a8076f87363e2bb24239ef8c171a369d85a31"}, + {file = "fonttools-4.48.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:12ee86abca46193359ea69216b3a724e90c66ab05ab220d39e3fc068c1eb72ac"}, + {file = "fonttools-4.48.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6978bade7b6c0335095bdd0bd97f8f3d590d2877b370f17e03e0865241694eb5"}, + {file = "fonttools-4.48.1-cp38-cp38-win32.whl", hash = "sha256:bcd77f89fc1a6b18428e7a55dde8ef56dae95640293bfb8f4e929929eba5e2a2"}, + {file = "fonttools-4.48.1-cp38-cp38-win_amd64.whl", hash = "sha256:f40441437b039930428e04fb05ac3a132e77458fb57666c808d74a556779e784"}, + {file = "fonttools-4.48.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0d2b01428f7da26f229a5656defc824427b741e454b4e210ad2b25ed6ea2aed4"}, + {file = "fonttools-4.48.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:df48798f9a4fc4c315ab46e17873436c8746f5df6eddd02fad91299b2af7af95"}, + {file = "fonttools-4.48.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2eb4167bde04e172a93cf22c875d8b0cff76a2491f67f5eb069566215302d45d"}, + {file = "fonttools-4.48.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c900508c46274d32d308ae8e82335117f11aaee1f7d369ac16502c9a78930b0a"}, + {file = "fonttools-4.48.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:594206b31c95fcfa65f484385171fabb4ec69f7d2d7f56d27f17db26b7a31814"}, + {file = "fonttools-4.48.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:292922dc356d7f11f5063b4111a8b719efb8faea92a2a88ed296408d449d8c2e"}, + {file = "fonttools-4.48.1-cp39-cp39-win32.whl", hash = "sha256:4709c5bf123ba10eac210d2d5c9027d3f472591d9f1a04262122710fa3d23199"}, + {file = "fonttools-4.48.1-cp39-cp39-win_amd64.whl", hash = "sha256:63c73b9dd56a94a3cbd2f90544b5fca83666948a9e03370888994143b8d7c070"}, + {file = "fonttools-4.48.1-py3-none-any.whl", hash = "sha256:e3e33862fc5261d46d9aae3544acb36203b1a337d00bdb5d3753aae50dac860e"}, + {file = "fonttools-4.48.1.tar.gz", hash = "sha256:8b8a45254218679c7f1127812761e7854ed5c8e34349aebf581e8c9204e7495a"}, ] [package.extras] -all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] graphite = ["lz4 (>=1.7.4.2)"] -interpolatable = ["munkres", "scipy"] -lxml = ["lxml (>=4.0,<5)"] +interpolatable = ["munkres", "pycairo", "scipy"] +lxml = ["lxml (>=4.0)"] pathops = ["skia-pathops (>=0.5.0)"] plot = ["matplotlib"] repacker = ["uharfbuzz (>=0.23.0)"] @@ -450,20 +454,20 @@ smmap = ">=3.0.1,<6" [[package]] name = "gitpython" -version = "3.1.40" +version = "3.1.41" description = "GitPython is a Python library used to interact with Git repositories" optional = false python-versions = ">=3.7" files = [ - {file = "GitPython-3.1.40-py3-none-any.whl", hash = "sha256:cf14627d5a8049ffbf49915732e5eddbe8134c3bdb9d476e6182b676fc573f8a"}, - {file = "GitPython-3.1.40.tar.gz", hash = "sha256:22b126e9ffb671fdd0c129796343a02bf67bf2994b35449ffc9321aa755e18a4"}, + {file = "GitPython-3.1.41-py3-none-any.whl", hash = "sha256:c36b6634d069b3f719610175020a9aed919421c87552185b085e04fbbdb10b7c"}, + {file = "GitPython-3.1.41.tar.gz", hash = "sha256:ed66e624884f76df22c8e16066d567aaa5a37d5b5fa19db2c6df6f7156db9048"}, ] [package.dependencies] gitdb = ">=4.0.1,<5" [package.extras] -test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-instafail", "pytest-subtests", "pytest-sugar"] +test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", "pytest (>=7.3.1)", "pytest-cov", "pytest-instafail", "pytest-mock", "pytest-sugar", "sumtypes"] [[package]] name = "htbuilder" @@ -481,43 +485,43 @@ more-itertools = "*" [[package]] name = "idna" -version = "3.4" +version = "3.6" description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.5" files = [ - {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, - {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, + {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, + {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, ] [[package]] name = "importlib-metadata" -version = "6.8.0" +version = "7.0.1" description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, - {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, + {file = "importlib_metadata-7.0.1-py3-none-any.whl", hash = "sha256:4805911c3a4ec7c3966410053e9ec6a1fecd629117df5adee56dfc9432a1081e"}, + {file = "importlib_metadata-7.0.1.tar.gz", hash = "sha256:f238736bb06590ae52ac1fab06a3a9ef1d8dce2b7a35b5ab329371d6c8f5d2cc"}, ] [package.dependencies] zipp = ">=0.5" [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] perf = ["ipython"] testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] [[package]] name = "jinja2" -version = "3.1.2" +version = "3.1.3" description = "A very fast and expressive template engine." optional = false python-versions = ">=3.7" files = [ - {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, - {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, + {file = "Jinja2-3.1.3-py3-none-any.whl", hash = "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa"}, + {file = "Jinja2-3.1.3.tar.gz", hash = "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"}, ] [package.dependencies] @@ -528,13 +532,13 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "jsonschema" -version = "4.19.2" +version = "4.21.1" description = "An implementation of JSON Schema validation for Python" optional = false python-versions = ">=3.8" files = [ - {file = "jsonschema-4.19.2-py3-none-any.whl", hash = "sha256:eee9e502c788e89cb166d4d37f43084e3b64ab405c795c03d343a4dbc2c810fc"}, - {file = "jsonschema-4.19.2.tar.gz", hash = "sha256:c9ff4d7447eed9592c23a12ccee508baf0dd0d59650615e847feb6cdca74f392"}, + {file = "jsonschema-4.21.1-py3-none-any.whl", hash = "sha256:7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f"}, + {file = "jsonschema-4.21.1.tar.gz", hash = "sha256:85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5"}, ] [package.dependencies] @@ -549,17 +553,17 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- [[package]] name = "jsonschema-specifications" -version = "2023.7.1" +version = "2023.12.1" description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" optional = false python-versions = ">=3.8" files = [ - {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, - {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, + {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, + {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, ] [package.dependencies] -referencing = ">=0.28.0" +referencing = ">=0.31.0" [[package]] name = "kiwisolver" @@ -676,120 +680,106 @@ files = [ [[package]] name = "lxml" -version = "4.9.3" +version = "5.1.0" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*" -files = [ - {file = "lxml-4.9.3-cp27-cp27m-macosx_11_0_x86_64.whl", hash = "sha256:b0a545b46b526d418eb91754565ba5b63b1c0b12f9bd2f808c852d9b4b2f9b5c"}, - {file = "lxml-4.9.3-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:075b731ddd9e7f68ad24c635374211376aa05a281673ede86cbe1d1b3455279d"}, - {file = "lxml-4.9.3-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1e224d5755dba2f4a9498e150c43792392ac9b5380aa1b845f98a1618c94eeef"}, - {file = "lxml-4.9.3-cp27-cp27m-win32.whl", hash = "sha256:2c74524e179f2ad6d2a4f7caf70e2d96639c0954c943ad601a9e146c76408ed7"}, - {file = "lxml-4.9.3-cp27-cp27m-win_amd64.whl", hash = "sha256:4f1026bc732b6a7f96369f7bfe1a4f2290fb34dce00d8644bc3036fb351a4ca1"}, - {file = "lxml-4.9.3-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c0781a98ff5e6586926293e59480b64ddd46282953203c76ae15dbbbf302e8bb"}, - {file = "lxml-4.9.3-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:cef2502e7e8a96fe5ad686d60b49e1ab03e438bd9123987994528febd569868e"}, - {file = "lxml-4.9.3-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:b86164d2cff4d3aaa1f04a14685cbc072efd0b4f99ca5708b2ad1b9b5988a991"}, - {file = "lxml-4.9.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:42871176e7896d5d45138f6d28751053c711ed4d48d8e30b498da155af39aebd"}, - {file = "lxml-4.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:ae8b9c6deb1e634ba4f1930eb67ef6e6bf6a44b6eb5ad605642b2d6d5ed9ce3c"}, - {file = "lxml-4.9.3-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:411007c0d88188d9f621b11d252cce90c4a2d1a49db6c068e3c16422f306eab8"}, - {file = "lxml-4.9.3-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:cd47b4a0d41d2afa3e58e5bf1f62069255aa2fd6ff5ee41604418ca925911d76"}, - {file = "lxml-4.9.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e2cb47860da1f7e9a5256254b74ae331687b9672dfa780eed355c4c9c3dbd23"}, - {file = "lxml-4.9.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1247694b26342a7bf47c02e513d32225ededd18045264d40758abeb3c838a51f"}, - {file = "lxml-4.9.3-cp310-cp310-win32.whl", hash = "sha256:cdb650fc86227eba20de1a29d4b2c1bfe139dc75a0669270033cb2ea3d391b85"}, - {file = "lxml-4.9.3-cp310-cp310-win_amd64.whl", hash = "sha256:97047f0d25cd4bcae81f9ec9dc290ca3e15927c192df17331b53bebe0e3ff96d"}, - {file = "lxml-4.9.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:1f447ea5429b54f9582d4b955f5f1985f278ce5cf169f72eea8afd9502973dd5"}, - {file = "lxml-4.9.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:57d6ba0ca2b0c462f339640d22882acc711de224d769edf29962b09f77129cbf"}, - {file = "lxml-4.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:9767e79108424fb6c3edf8f81e6730666a50feb01a328f4a016464a5893f835a"}, - {file = "lxml-4.9.3-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:71c52db65e4b56b8ddc5bb89fb2e66c558ed9d1a74a45ceb7dcb20c191c3df2f"}, - {file = "lxml-4.9.3-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d73d8ecf8ecf10a3bd007f2192725a34bd62898e8da27eb9d32a58084f93962b"}, - {file = "lxml-4.9.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0a3d3487f07c1d7f150894c238299934a2a074ef590b583103a45002035be120"}, - {file = "lxml-4.9.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e28c51fa0ce5674be9f560c6761c1b441631901993f76700b1b30ca6c8378d6"}, - {file = "lxml-4.9.3-cp311-cp311-win32.whl", hash = "sha256:0bfd0767c5c1de2551a120673b72e5d4b628737cb05414f03c3277bf9bed3305"}, - {file = "lxml-4.9.3-cp311-cp311-win_amd64.whl", hash = "sha256:25f32acefac14ef7bd53e4218fe93b804ef6f6b92ffdb4322bb6d49d94cad2bc"}, - {file = "lxml-4.9.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:d3ff32724f98fbbbfa9f49d82852b159e9784d6094983d9a8b7f2ddaebb063d4"}, - {file = "lxml-4.9.3-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:48d6ed886b343d11493129e019da91d4039826794a3e3027321c56d9e71505be"}, - {file = "lxml-4.9.3-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9a92d3faef50658dd2c5470af249985782bf754c4e18e15afb67d3ab06233f13"}, - {file = "lxml-4.9.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b4e4bc18382088514ebde9328da057775055940a1f2e18f6ad2d78aa0f3ec5b9"}, - {file = "lxml-4.9.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fc9b106a1bf918db68619fdcd6d5ad4f972fdd19c01d19bdb6bf63f3589a9ec5"}, - {file = "lxml-4.9.3-cp312-cp312-win_amd64.whl", hash = "sha256:d37017287a7adb6ab77e1c5bee9bcf9660f90ff445042b790402a654d2ad81d8"}, - {file = "lxml-4.9.3-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:56dc1f1ebccc656d1b3ed288f11e27172a01503fc016bcabdcbc0978b19352b7"}, - {file = "lxml-4.9.3-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:578695735c5a3f51569810dfebd05dd6f888147a34f0f98d4bb27e92b76e05c2"}, - {file = "lxml-4.9.3-cp35-cp35m-win32.whl", hash = "sha256:704f61ba8c1283c71b16135caf697557f5ecf3e74d9e453233e4771d68a1f42d"}, - {file = "lxml-4.9.3-cp35-cp35m-win_amd64.whl", hash = "sha256:c41bfca0bd3532d53d16fd34d20806d5c2b1ace22a2f2e4c0008570bf2c58833"}, - {file = "lxml-4.9.3-cp36-cp36m-macosx_11_0_x86_64.whl", hash = "sha256:64f479d719dc9f4c813ad9bb6b28f8390360660b73b2e4beb4cb0ae7104f1c12"}, - {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:dd708cf4ee4408cf46a48b108fb9427bfa00b9b85812a9262b5c668af2533ea5"}, - {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c31c7462abdf8f2ac0577d9f05279727e698f97ecbb02f17939ea99ae8daa98"}, - {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:e3cd95e10c2610c360154afdc2f1480aea394f4a4f1ea0a5eacce49640c9b190"}, - {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:4930be26af26ac545c3dffb662521d4e6268352866956672231887d18f0eaab2"}, - {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4aec80cde9197340bc353d2768e2a75f5f60bacda2bab72ab1dc499589b3878c"}, - {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:14e019fd83b831b2e61baed40cab76222139926b1fb5ed0e79225bc0cae14584"}, - {file = "lxml-4.9.3-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0c0850c8b02c298d3c7006b23e98249515ac57430e16a166873fc47a5d549287"}, - {file = "lxml-4.9.3-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:aca086dc5f9ef98c512bac8efea4483eb84abbf926eaeedf7b91479feb092458"}, - {file = "lxml-4.9.3-cp36-cp36m-win32.whl", hash = "sha256:50baa9c1c47efcaef189f31e3d00d697c6d4afda5c3cde0302d063492ff9b477"}, - {file = "lxml-4.9.3-cp36-cp36m-win_amd64.whl", hash = "sha256:bef4e656f7d98aaa3486d2627e7d2df1157d7e88e7efd43a65aa5dd4714916cf"}, - {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:46f409a2d60f634fe550f7133ed30ad5321ae2e6630f13657fb9479506b00601"}, - {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:4c28a9144688aef80d6ea666c809b4b0e50010a2aca784c97f5e6bf143d9f129"}, - {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:141f1d1a9b663c679dc524af3ea1773e618907e96075262726c7612c02b149a4"}, - {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:53ace1c1fd5a74ef662f844a0413446c0629d151055340e9893da958a374f70d"}, - {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:17a753023436a18e27dd7769e798ce302963c236bc4114ceee5b25c18c52c693"}, - {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:7d298a1bd60c067ea75d9f684f5f3992c9d6766fadbc0bcedd39750bf344c2f4"}, - {file = "lxml-4.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:081d32421db5df44c41b7f08a334a090a545c54ba977e47fd7cc2deece78809a"}, - {file = "lxml-4.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:23eed6d7b1a3336ad92d8e39d4bfe09073c31bfe502f20ca5116b2a334f8ec02"}, - {file = "lxml-4.9.3-cp37-cp37m-win32.whl", hash = "sha256:1509dd12b773c02acd154582088820893109f6ca27ef7291b003d0e81666109f"}, - {file = "lxml-4.9.3-cp37-cp37m-win_amd64.whl", hash = "sha256:120fa9349a24c7043854c53cae8cec227e1f79195a7493e09e0c12e29f918e52"}, - {file = "lxml-4.9.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:4d2d1edbca80b510443f51afd8496be95529db04a509bc8faee49c7b0fb6d2cc"}, - {file = "lxml-4.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:8d7e43bd40f65f7d97ad8ef5c9b1778943d02f04febef12def25f7583d19baac"}, - {file = "lxml-4.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:71d66ee82e7417828af6ecd7db817913cb0cf9d4e61aa0ac1fde0583d84358db"}, - {file = "lxml-4.9.3-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:6fc3c450eaa0b56f815c7b62f2b7fba7266c4779adcf1cece9e6deb1de7305ce"}, - {file = "lxml-4.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:65299ea57d82fb91c7f019300d24050c4ddeb7c5a190e076b5f48a2b43d19c42"}, - {file = "lxml-4.9.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:eadfbbbfb41b44034a4c757fd5d70baccd43296fb894dba0295606a7cf3124aa"}, - {file = "lxml-4.9.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3e9bdd30efde2b9ccfa9cb5768ba04fe71b018a25ea093379c857c9dad262c40"}, - {file = "lxml-4.9.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fcdd00edfd0a3001e0181eab3e63bd5c74ad3e67152c84f93f13769a40e073a7"}, - {file = "lxml-4.9.3-cp38-cp38-win32.whl", hash = "sha256:57aba1bbdf450b726d58b2aea5fe47c7875f5afb2c4a23784ed78f19a0462574"}, - {file = "lxml-4.9.3-cp38-cp38-win_amd64.whl", hash = "sha256:92af161ecbdb2883c4593d5ed4815ea71b31fafd7fd05789b23100d081ecac96"}, - {file = "lxml-4.9.3-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:9bb6ad405121241e99a86efff22d3ef469024ce22875a7ae045896ad23ba2340"}, - {file = "lxml-4.9.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:8ed74706b26ad100433da4b9d807eae371efaa266ffc3e9191ea436087a9d6a7"}, - {file = "lxml-4.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:fbf521479bcac1e25a663df882c46a641a9bff6b56dc8b0fafaebd2f66fb231b"}, - {file = "lxml-4.9.3-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:303bf1edce6ced16bf67a18a1cf8339d0db79577eec5d9a6d4a80f0fb10aa2da"}, - {file = "lxml-4.9.3-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:5515edd2a6d1a5a70bfcdee23b42ec33425e405c5b351478ab7dc9347228f96e"}, - {file = "lxml-4.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:690dafd0b187ed38583a648076865d8c229661ed20e48f2335d68e2cf7dc829d"}, - {file = "lxml-4.9.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b6420a005548ad52154c8ceab4a1290ff78d757f9e5cbc68f8c77089acd3c432"}, - {file = "lxml-4.9.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bb3bb49c7a6ad9d981d734ef7c7193bc349ac338776a0360cc671eaee89bcf69"}, - {file = "lxml-4.9.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d27be7405547d1f958b60837dc4c1007da90b8b23f54ba1f8b728c78fdb19d50"}, - {file = "lxml-4.9.3-cp39-cp39-win32.whl", hash = "sha256:8df133a2ea5e74eef5e8fc6f19b9e085f758768a16e9877a60aec455ed2609b2"}, - {file = "lxml-4.9.3-cp39-cp39-win_amd64.whl", hash = "sha256:4dd9a263e845a72eacb60d12401e37c616438ea2e5442885f65082c276dfb2b2"}, - {file = "lxml-4.9.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6689a3d7fd13dc687e9102a27e98ef33730ac4fe37795d5036d18b4d527abd35"}, - {file = "lxml-4.9.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:f6bdac493b949141b733c5345b6ba8f87a226029cbabc7e9e121a413e49441e0"}, - {file = "lxml-4.9.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:05186a0f1346ae12553d66df1cfce6f251589fea3ad3da4f3ef4e34b2d58c6a3"}, - {file = "lxml-4.9.3-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c2006f5c8d28dee289f7020f721354362fa304acbaaf9745751ac4006650254b"}, - {file = "lxml-4.9.3-pp38-pypy38_pp73-macosx_11_0_x86_64.whl", hash = "sha256:5c245b783db29c4e4fbbbfc9c5a78be496c9fea25517f90606aa1f6b2b3d5f7b"}, - {file = "lxml-4.9.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:4fb960a632a49f2f089d522f70496640fdf1218f1243889da3822e0a9f5f3ba7"}, - {file = "lxml-4.9.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:50670615eaf97227d5dc60de2dc99fb134a7130d310d783314e7724bf163f75d"}, - {file = "lxml-4.9.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9719fe17307a9e814580af1f5c6e05ca593b12fb7e44fe62450a5384dbf61b4b"}, - {file = "lxml-4.9.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:3331bece23c9ee066e0fb3f96c61322b9e0f54d775fccefff4c38ca488de283a"}, - {file = "lxml-4.9.3-pp39-pypy39_pp73-macosx_11_0_x86_64.whl", hash = "sha256:ed667f49b11360951e201453fc3967344d0d0263aa415e1619e85ae7fd17b4e0"}, - {file = "lxml-4.9.3-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:8b77946fd508cbf0fccd8e400a7f71d4ac0e1595812e66025bac475a8e811694"}, - {file = "lxml-4.9.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:e4da8ca0c0c0aea88fd46be8e44bd49716772358d648cce45fe387f7b92374a7"}, - {file = "lxml-4.9.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fe4bda6bd4340caa6e5cf95e73f8fea5c4bfc55763dd42f1b50a94c1b4a2fbd4"}, - {file = "lxml-4.9.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:f3df3db1d336b9356dd3112eae5f5c2b8b377f3bc826848567f10bfddfee77e9"}, - {file = "lxml-4.9.3.tar.gz", hash = "sha256:48628bd53a426c9eb9bc066a923acaa0878d1e86129fd5359aee99285f4eed9c"}, +python-versions = ">=3.6" +files = [ + {file = "lxml-5.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:704f5572ff473a5f897745abebc6df40f22d4133c1e0a1f124e4f2bd3330ff7e"}, + {file = "lxml-5.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9d3c0f8567ffe7502d969c2c1b809892dc793b5d0665f602aad19895f8d508da"}, + {file = "lxml-5.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5fcfbebdb0c5d8d18b84118842f31965d59ee3e66996ac842e21f957eb76138c"}, + {file = "lxml-5.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2f37c6d7106a9d6f0708d4e164b707037b7380fcd0b04c5bd9cae1fb46a856fb"}, + {file = "lxml-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2befa20a13f1a75c751f47e00929fb3433d67eb9923c2c0b364de449121f447c"}, + {file = "lxml-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22b7ee4c35f374e2c20337a95502057964d7e35b996b1c667b5c65c567d2252a"}, + {file = "lxml-5.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bf8443781533b8d37b295016a4b53c1494fa9a03573c09ca5104550c138d5c05"}, + {file = "lxml-5.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:82bddf0e72cb2af3cbba7cec1d2fd11fda0de6be8f4492223d4a268713ef2147"}, + {file = "lxml-5.1.0-cp310-cp310-win32.whl", hash = "sha256:b66aa6357b265670bb574f050ffceefb98549c721cf28351b748be1ef9577d93"}, + {file = "lxml-5.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:4946e7f59b7b6a9e27bef34422f645e9a368cb2be11bf1ef3cafc39a1f6ba68d"}, + {file = "lxml-5.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:14deca1460b4b0f6b01f1ddc9557704e8b365f55c63070463f6c18619ebf964f"}, + {file = "lxml-5.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ed8c3d2cd329bf779b7ed38db176738f3f8be637bb395ce9629fc76f78afe3d4"}, + {file = "lxml-5.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:436a943c2900bb98123b06437cdd30580a61340fbdb7b28aaf345a459c19046a"}, + {file = "lxml-5.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:acb6b2f96f60f70e7f34efe0c3ea34ca63f19ca63ce90019c6cbca6b676e81fa"}, + {file = "lxml-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af8920ce4a55ff41167ddbc20077f5698c2e710ad3353d32a07d3264f3a2021e"}, + {file = "lxml-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7cfced4a069003d8913408e10ca8ed092c49a7f6cefee9bb74b6b3e860683b45"}, + {file = "lxml-5.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9e5ac3437746189a9b4121db2a7b86056ac8786b12e88838696899328fc44bb2"}, + {file = "lxml-5.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f4c9bda132ad108b387c33fabfea47866af87f4ea6ffb79418004f0521e63204"}, + {file = "lxml-5.1.0-cp311-cp311-win32.whl", hash = "sha256:bc64d1b1dab08f679fb89c368f4c05693f58a9faf744c4d390d7ed1d8223869b"}, + {file = "lxml-5.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:a5ab722ae5a873d8dcee1f5f45ddd93c34210aed44ff2dc643b5025981908cda"}, + {file = "lxml-5.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:9aa543980ab1fbf1720969af1d99095a548ea42e00361e727c58a40832439114"}, + {file = "lxml-5.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6f11b77ec0979f7e4dc5ae081325a2946f1fe424148d3945f943ceaede98adb8"}, + {file = "lxml-5.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a36c506e5f8aeb40680491d39ed94670487ce6614b9d27cabe45d94cd5d63e1e"}, + {file = "lxml-5.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f643ffd2669ffd4b5a3e9b41c909b72b2a1d5e4915da90a77e119b8d48ce867a"}, + {file = "lxml-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16dd953fb719f0ffc5bc067428fc9e88f599e15723a85618c45847c96f11f431"}, + {file = "lxml-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16018f7099245157564d7148165132c70adb272fb5a17c048ba70d9cc542a1a1"}, + {file = "lxml-5.1.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:82cd34f1081ae4ea2ede3d52f71b7be313756e99b4b5f829f89b12da552d3aa3"}, + {file = "lxml-5.1.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:19a1bc898ae9f06bccb7c3e1dfd73897ecbbd2c96afe9095a6026016e5ca97b8"}, + {file = "lxml-5.1.0-cp312-cp312-win32.whl", hash = "sha256:13521a321a25c641b9ea127ef478b580b5ec82aa2e9fc076c86169d161798b01"}, + {file = "lxml-5.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:1ad17c20e3666c035db502c78b86e58ff6b5991906e55bdbef94977700c72623"}, + {file = "lxml-5.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:24ef5a4631c0b6cceaf2dbca21687e29725b7c4e171f33a8f8ce23c12558ded1"}, + {file = "lxml-5.1.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8d2900b7f5318bc7ad8631d3d40190b95ef2aa8cc59473b73b294e4a55e9f30f"}, + {file = "lxml-5.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:601f4a75797d7a770daed8b42b97cd1bb1ba18bd51a9382077a6a247a12aa38d"}, + {file = "lxml-5.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4b68c961b5cc402cbd99cca5eb2547e46ce77260eb705f4d117fd9c3f932b95"}, + {file = "lxml-5.1.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:afd825e30f8d1f521713a5669b63657bcfe5980a916c95855060048b88e1adb7"}, + {file = "lxml-5.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:262bc5f512a66b527d026518507e78c2f9c2bd9eb5c8aeeb9f0eb43fcb69dc67"}, + {file = "lxml-5.1.0-cp36-cp36m-win32.whl", hash = "sha256:e856c1c7255c739434489ec9c8aa9cdf5179785d10ff20add308b5d673bed5cd"}, + {file = "lxml-5.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:c7257171bb8d4432fe9d6fdde4d55fdbe663a63636a17f7f9aaba9bcb3153ad7"}, + {file = "lxml-5.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b9e240ae0ba96477682aa87899d94ddec1cc7926f9df29b1dd57b39e797d5ab5"}, + {file = "lxml-5.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a96f02ba1bcd330807fc060ed91d1f7a20853da6dd449e5da4b09bfcc08fdcf5"}, + {file = "lxml-5.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e3898ae2b58eeafedfe99e542a17859017d72d7f6a63de0f04f99c2cb125936"}, + {file = "lxml-5.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61c5a7edbd7c695e54fca029ceb351fc45cd8860119a0f83e48be44e1c464862"}, + {file = "lxml-5.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3aeca824b38ca78d9ee2ab82bd9883083d0492d9d17df065ba3b94e88e4d7ee6"}, + {file = "lxml-5.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8f52fe6859b9db71ee609b0c0a70fea5f1e71c3462ecf144ca800d3f434f0764"}, + {file = "lxml-5.1.0-cp37-cp37m-win32.whl", hash = "sha256:d42e3a3fc18acc88b838efded0e6ec3edf3e328a58c68fbd36a7263a874906c8"}, + {file = "lxml-5.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:eac68f96539b32fce2c9b47eb7c25bb2582bdaf1bbb360d25f564ee9e04c542b"}, + {file = "lxml-5.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ae15347a88cf8af0949a9872b57a320d2605ae069bcdf047677318bc0bba45b1"}, + {file = "lxml-5.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c26aab6ea9c54d3bed716b8851c8bfc40cb249b8e9880e250d1eddde9f709bf5"}, + {file = "lxml-5.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:342e95bddec3a698ac24378d61996b3ee5ba9acfeb253986002ac53c9a5f6f84"}, + {file = "lxml-5.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:725e171e0b99a66ec8605ac77fa12239dbe061482ac854d25720e2294652eeaa"}, + {file = "lxml-5.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d184e0d5c918cff04cdde9dbdf9600e960161d773666958c9d7b565ccc60c45"}, + {file = "lxml-5.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:98f3f020a2b736566c707c8e034945c02aa94e124c24f77ca097c446f81b01f1"}, + {file = "lxml-5.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6d48fc57e7c1e3df57be5ae8614bab6d4e7b60f65c5457915c26892c41afc59e"}, + {file = "lxml-5.1.0-cp38-cp38-win32.whl", hash = "sha256:7ec465e6549ed97e9f1e5ed51c657c9ede767bc1c11552f7f4d022c4df4a977a"}, + {file = "lxml-5.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:b21b4031b53d25b0858d4e124f2f9131ffc1530431c6d1321805c90da78388d1"}, + {file = "lxml-5.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:52427a7eadc98f9e62cb1368a5079ae826f94f05755d2d567d93ee1bc3ceb354"}, + {file = "lxml-5.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6a2a2c724d97c1eb8cf966b16ca2915566a4904b9aad2ed9a09c748ffe14f969"}, + {file = "lxml-5.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:843b9c835580d52828d8f69ea4302537337a21e6b4f1ec711a52241ba4a824f3"}, + {file = "lxml-5.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9b99f564659cfa704a2dd82d0684207b1aadf7d02d33e54845f9fc78e06b7581"}, + {file = "lxml-5.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f8b0c78e7aac24979ef09b7f50da871c2de2def043d468c4b41f512d831e912"}, + {file = "lxml-5.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9bcf86dfc8ff3e992fed847c077bd875d9e0ba2fa25d859c3a0f0f76f07f0c8d"}, + {file = "lxml-5.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:49a9b4af45e8b925e1cd6f3b15bbba2c81e7dba6dce170c677c9cda547411e14"}, + {file = "lxml-5.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:280f3edf15c2a967d923bcfb1f8f15337ad36f93525828b40a0f9d6c2ad24890"}, + {file = "lxml-5.1.0-cp39-cp39-win32.whl", hash = "sha256:ed7326563024b6e91fef6b6c7a1a2ff0a71b97793ac33dbbcf38f6005e51ff6e"}, + {file = "lxml-5.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:8d7b4beebb178e9183138f552238f7e6613162a42164233e2bda00cb3afac58f"}, + {file = "lxml-5.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9bd0ae7cc2b85320abd5e0abad5ccee5564ed5f0cc90245d2f9a8ef330a8deae"}, + {file = "lxml-5.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8c1d679df4361408b628f42b26a5d62bd3e9ba7f0c0e7969f925021554755aa"}, + {file = "lxml-5.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:2ad3a8ce9e8a767131061a22cd28fdffa3cd2dc193f399ff7b81777f3520e372"}, + {file = "lxml-5.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:304128394c9c22b6569eba2a6d98392b56fbdfbad58f83ea702530be80d0f9df"}, + {file = "lxml-5.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d74fcaf87132ffc0447b3c685a9f862ffb5b43e70ea6beec2fb8057d5d2a1fea"}, + {file = "lxml-5.1.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:8cf5877f7ed384dabfdcc37922c3191bf27e55b498fecece9fd5c2c7aaa34c33"}, + {file = "lxml-5.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:877efb968c3d7eb2dad540b6cabf2f1d3c0fbf4b2d309a3c141f79c7e0061324"}, + {file = "lxml-5.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f14a4fb1c1c402a22e6a341a24c1341b4a3def81b41cd354386dcb795f83897"}, + {file = "lxml-5.1.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:25663d6e99659544ee8fe1b89b1a8c0aaa5e34b103fab124b17fa958c4a324a6"}, + {file = "lxml-5.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:8b9f19df998761babaa7f09e6bc169294eefafd6149aaa272081cbddc7ba4ca3"}, + {file = "lxml-5.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e53d7e6a98b64fe54775d23a7c669763451340c3d44ad5e3a3b48a1efbdc96f"}, + {file = "lxml-5.1.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c3cd1fc1dc7c376c54440aeaaa0dcc803d2126732ff5c6b68ccd619f2e64be4f"}, + {file = "lxml-5.1.0.tar.gz", hash = "sha256:3eea6ed6e6c918e468e693c41ef07f3c3acc310b70ddd9cc72d9ef84bc9564ca"}, ] [package.extras] cssselect = ["cssselect (>=0.7)"] html5 = ["html5lib"] htmlsoup = ["BeautifulSoup4"] -source = ["Cython (>=0.29.35)"] +source = ["Cython (>=3.0.7)"] [[package]] name = "markdown" -version = "3.5.1" +version = "3.5.2" description = "Python implementation of John Gruber's Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "Markdown-3.5.1-py3-none-any.whl", hash = "sha256:5874b47d4ee3f0b14d764324d2c94c03ea66bee56f2d929da9f2508d65e722dc"}, - {file = "Markdown-3.5.1.tar.gz", hash = "sha256:b65d7beb248dc22f2e8a31fb706d93798093c308dc1aba295aedeb9d41a813bd"}, + {file = "Markdown-3.5.2-py3-none-any.whl", hash = "sha256:d43323865d89fc0cb9b20c75fc8ad313af307cc087e84b657d9eec768eddeadd"}, + {file = "Markdown-3.5.2.tar.gz", hash = "sha256:e1ac7b3dc550ee80e602e71c1d168002f062e49f1b11e26a36264dafd4df2ef8"}, ] [package.extras] @@ -842,98 +832,108 @@ streamlit-extras = "*" [[package]] name = "markupsafe" -version = "2.1.3" +version = "2.1.5" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.7" files = [ - {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, - {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, + {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, ] [[package]] name = "matplotlib" -version = "3.8.1" +version = "3.8.2" description = "Python plotting package" optional = false python-versions = ">=3.9" files = [ - {file = "matplotlib-3.8.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:e11ab864323fa73ac1b7849688d9671c47a2665242e899785b4db1a375b547e1"}, - {file = "matplotlib-3.8.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:43a9d40feb63c9e31a0b8b069dcbd74a912f59bdc0095d187126694cd26977e4"}, - {file = "matplotlib-3.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:608ea2951838d391e45dec2e644888db6899c752d3c29e157af9dcefb3d7d8d5"}, - {file = "matplotlib-3.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82ec95b02e894561c21e066bd0c716e4b410df141ce9441aa5af6cd937e4ade2"}, - {file = "matplotlib-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e3ad1759ad4a5245172c6d32b8ada603a6020d03211524c39d78d25c9a7dc0d2"}, - {file = "matplotlib-3.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:20a0fdfd3ee836179047f3782be060057b878ad37f5abe29edf006a1ff3ecd73"}, - {file = "matplotlib-3.8.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:7658b7073c1d6a2922ecc0ed41602410fae88586cb8a54f7a2063d537b6beaf7"}, - {file = "matplotlib-3.8.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bf6889643d4560fcc56f9f0941f078e4df0d72a6c3e4ca548841fc13c5642664"}, - {file = "matplotlib-3.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff842e27bc6a80de08c40e0bfdce460bd08080e8a94af131162b6a1b8948f2cc"}, - {file = "matplotlib-3.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f99d07c0e753717775be7be39ab383453b4d8b629c9fa174596b970c6555890"}, - {file = "matplotlib-3.8.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f34b46dbb1db1f09bfa937cd5853e5f2af232caeeff509c3ab6e43fd33780eae"}, - {file = "matplotlib-3.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:1fcb49b6baf0375281979cbf26695ec10bd1cada1e311893e89533b3b70143e7"}, - {file = "matplotlib-3.8.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:e17674ee127f78f26fea237e7f4d5cf910a8be82beb6260fedf358b88075b823"}, - {file = "matplotlib-3.8.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d921c0270647ab11c3ef283efaaa3d46fd005ba233bfb3aea75231cdf3656de8"}, - {file = "matplotlib-3.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2afe7d2f8c9e35e94fbcfcfd9b28f29cb32f0a9068cba469cf907428379c8db9"}, - {file = "matplotlib-3.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5a504ff40f81d6233603475a45497a6dca37a873393fa20ae6f7dd6596ef72b"}, - {file = "matplotlib-3.8.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cd54bbf089953140905768ed4626d7223e1ad1d7e2a138410a9c4d3b865ccd80"}, - {file = "matplotlib-3.8.1-cp312-cp312-win_amd64.whl", hash = "sha256:27502d2452208ae784c19504644f09f83742809143bbeae147617640930aa344"}, - {file = "matplotlib-3.8.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:f55fb5ff02d999a100be28bf6ffe826e1867a54c7b465409685332c9dd48ffa5"}, - {file = "matplotlib-3.8.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:afb72822ae410d62aa1a2920c6563cb5680de9078358f0e9474396c6c3e06be2"}, - {file = "matplotlib-3.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:43cf368a4a1d8cbc426944806e5e183cead746647a64d2cdb786441546235967"}, - {file = "matplotlib-3.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c54c55457c7f5ea4dfdba0020004fc7667f5c10c8d9b8010d735345acc06c9b8"}, - {file = "matplotlib-3.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e3bb809b743653b5aab5d72ee45c8c937c28e147b0846b0826a54bece898608c"}, - {file = "matplotlib-3.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:c1b0ecaa0d1f4fe1e30f625a2347f0034a89a7d17c39efbb502e554d92ee2f61"}, - {file = "matplotlib-3.8.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ca84deaa38cb64b7dd160ca2046b45f7b5dbff2b0179642e1339fadc337446c9"}, - {file = "matplotlib-3.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed3b29f54f6bbf3eaca4cbd23bc260155153ace63b7f597c474fa6fc6f386530"}, - {file = "matplotlib-3.8.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0d24c47a1bb47e392fbcd26fe322e4ff3431653ac1e8718e4e147d450ae97a44"}, - {file = "matplotlib-3.8.1.tar.gz", hash = "sha256:044df81c1f6f3a8e52d70c4cfcb44e77ea9632a10929932870dfaa90de94365d"}, + {file = "matplotlib-3.8.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:09796f89fb71a0c0e1e2f4bdaf63fb2cefc84446bb963ecdeb40dfee7dfa98c7"}, + {file = "matplotlib-3.8.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6f9c6976748a25e8b9be51ea028df49b8e561eed7809146da7a47dbecebab367"}, + {file = "matplotlib-3.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b78e4f2cedf303869b782071b55fdde5987fda3038e9d09e58c91cc261b5ad18"}, + {file = "matplotlib-3.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e208f46cf6576a7624195aa047cb344a7f802e113bb1a06cfd4bee431de5e31"}, + {file = "matplotlib-3.8.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:46a569130ff53798ea5f50afce7406e91fdc471ca1e0e26ba976a8c734c9427a"}, + {file = "matplotlib-3.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:830f00640c965c5b7f6bc32f0d4ce0c36dfe0379f7dd65b07a00c801713ec40a"}, + {file = "matplotlib-3.8.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d86593ccf546223eb75a39b44c32788e6f6440d13cfc4750c1c15d0fcb850b63"}, + {file = "matplotlib-3.8.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9a5430836811b7652991939012f43d2808a2db9b64ee240387e8c43e2e5578c8"}, + {file = "matplotlib-3.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9576723858a78751d5aacd2497b8aef29ffea6d1c95981505877f7ac28215c6"}, + {file = "matplotlib-3.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ba9cbd8ac6cf422f3102622b20f8552d601bf8837e49a3afed188d560152788"}, + {file = "matplotlib-3.8.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:03f9d160a29e0b65c0790bb07f4f45d6a181b1ac33eb1bb0dd225986450148f0"}, + {file = "matplotlib-3.8.2-cp311-cp311-win_amd64.whl", hash = "sha256:3773002da767f0a9323ba1a9b9b5d00d6257dbd2a93107233167cfb581f64717"}, + {file = "matplotlib-3.8.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:4c318c1e95e2f5926fba326f68177dee364aa791d6df022ceb91b8221bd0a627"}, + {file = "matplotlib-3.8.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:091275d18d942cf1ee9609c830a1bc36610607d8223b1b981c37d5c9fc3e46a4"}, + {file = "matplotlib-3.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b0f3b8ea0e99e233a4bcc44590f01604840d833c280ebb8fe5554fd3e6cfe8d"}, + {file = "matplotlib-3.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7b1704a530395aaf73912be741c04d181f82ca78084fbd80bc737be04848331"}, + {file = "matplotlib-3.8.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:533b0e3b0c6768eef8cbe4b583731ce25a91ab54a22f830db2b031e83cca9213"}, + {file = "matplotlib-3.8.2-cp312-cp312-win_amd64.whl", hash = "sha256:0f4fc5d72b75e2c18e55eb32292659cf731d9d5b312a6eb036506304f4675630"}, + {file = "matplotlib-3.8.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:deaed9ad4da0b1aea77fe0aa0cebb9ef611c70b3177be936a95e5d01fa05094f"}, + {file = "matplotlib-3.8.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:172f4d0fbac3383d39164c6caafd3255ce6fa58f08fc392513a0b1d3b89c4f89"}, + {file = "matplotlib-3.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7d36c2209d9136cd8e02fab1c0ddc185ce79bc914c45054a9f514e44c787917"}, + {file = "matplotlib-3.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5864bdd7da445e4e5e011b199bb67168cdad10b501750367c496420f2ad00843"}, + {file = "matplotlib-3.8.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ef8345b48e95cee45ff25192ed1f4857273117917a4dcd48e3905619bcd9c9b8"}, + {file = "matplotlib-3.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:7c48d9e221b637c017232e3760ed30b4e8d5dfd081daf327e829bf2a72c731b4"}, + {file = "matplotlib-3.8.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:aa11b3c6928a1e496c1a79917d51d4cd5d04f8a2e75f21df4949eeefdf697f4b"}, + {file = "matplotlib-3.8.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1095fecf99eeb7384dabad4bf44b965f929a5f6079654b681193edf7169ec20"}, + {file = "matplotlib-3.8.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:bddfb1db89bfaa855912261c805bd0e10218923cc262b9159a49c29a7a1c1afa"}, + {file = "matplotlib-3.8.2.tar.gz", hash = "sha256:01a978b871b881ee76017152f1f1a0cbf6bd5f7b8ff8c96df0df1bd57d8755a1"}, ] [package.dependencies] @@ -960,58 +960,58 @@ files = [ [[package]] name = "more-itertools" -version = "10.1.0" +version = "10.2.0" description = "More routines for operating on iterables, beyond itertools" optional = false python-versions = ">=3.8" files = [ - {file = "more-itertools-10.1.0.tar.gz", hash = "sha256:626c369fa0eb37bac0291bce8259b332fd59ac792fa5497b59837309cd5b114a"}, - {file = "more_itertools-10.1.0-py3-none-any.whl", hash = "sha256:64e0735fcfdc6f3464ea133afe8ea4483b1c5fe3a3d69852e6503b43a0b222e6"}, + {file = "more-itertools-10.2.0.tar.gz", hash = "sha256:8fccb480c43d3e99a00087634c06dd02b0d50fbf088b380de5a41a015ec239e1"}, + {file = "more_itertools-10.2.0-py3-none-any.whl", hash = "sha256:686b06abe565edfab151cb8fd385a05651e1fdf8f0a14191e4439283421f8684"}, ] [[package]] name = "numpy" -version = "1.26.2" +version = "1.26.4" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.9" files = [ - {file = "numpy-1.26.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3703fc9258a4a122d17043e57b35e5ef1c5a5837c3db8be396c82e04c1cf9b0f"}, - {file = "numpy-1.26.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cc392fdcbd21d4be6ae1bb4475a03ce3b025cd49a9be5345d76d7585aea69440"}, - {file = "numpy-1.26.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36340109af8da8805d8851ef1d74761b3b88e81a9bd80b290bbfed61bd2b4f75"}, - {file = "numpy-1.26.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcc008217145b3d77abd3e4d5ef586e3bdfba8fe17940769f8aa09b99e856c00"}, - {file = "numpy-1.26.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3ced40d4e9e18242f70dd02d739e44698df3dcb010d31f495ff00a31ef6014fe"}, - {file = "numpy-1.26.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b272d4cecc32c9e19911891446b72e986157e6a1809b7b56518b4f3755267523"}, - {file = "numpy-1.26.2-cp310-cp310-win32.whl", hash = "sha256:22f8fc02fdbc829e7a8c578dd8d2e15a9074b630d4da29cda483337e300e3ee9"}, - {file = "numpy-1.26.2-cp310-cp310-win_amd64.whl", hash = "sha256:26c9d33f8e8b846d5a65dd068c14e04018d05533b348d9eaeef6c1bd787f9919"}, - {file = "numpy-1.26.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b96e7b9c624ef3ae2ae0e04fa9b460f6b9f17ad8b4bec6d7756510f1f6c0c841"}, - {file = "numpy-1.26.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:aa18428111fb9a591d7a9cc1b48150097ba6a7e8299fb56bdf574df650e7d1f1"}, - {file = "numpy-1.26.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06fa1ed84aa60ea6ef9f91ba57b5ed963c3729534e6e54055fc151fad0423f0a"}, - {file = "numpy-1.26.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96ca5482c3dbdd051bcd1fce8034603d6ebfc125a7bd59f55b40d8f5d246832b"}, - {file = "numpy-1.26.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:854ab91a2906ef29dc3925a064fcd365c7b4da743f84b123002f6139bcb3f8a7"}, - {file = "numpy-1.26.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f43740ab089277d403aa07567be138fc2a89d4d9892d113b76153e0e412409f8"}, - {file = "numpy-1.26.2-cp311-cp311-win32.whl", hash = "sha256:a2bbc29fcb1771cd7b7425f98b05307776a6baf43035d3b80c4b0f29e9545186"}, - {file = "numpy-1.26.2-cp311-cp311-win_amd64.whl", hash = "sha256:2b3fca8a5b00184828d12b073af4d0fc5fdd94b1632c2477526f6bd7842d700d"}, - {file = "numpy-1.26.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a4cd6ed4a339c21f1d1b0fdf13426cb3b284555c27ac2f156dfdaaa7e16bfab0"}, - {file = "numpy-1.26.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5d5244aabd6ed7f312268b9247be47343a654ebea52a60f002dc70c769048e75"}, - {file = "numpy-1.26.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a3cdb4d9c70e6b8c0814239ead47da00934666f668426fc6e94cce869e13fd7"}, - {file = "numpy-1.26.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa317b2325f7aa0a9471663e6093c210cb2ae9c0ad824732b307d2c51983d5b6"}, - {file = "numpy-1.26.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:174a8880739c16c925799c018f3f55b8130c1f7c8e75ab0a6fa9d41cab092fd6"}, - {file = "numpy-1.26.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f79b231bf5c16b1f39c7f4875e1ded36abee1591e98742b05d8a0fb55d8a3eec"}, - {file = "numpy-1.26.2-cp312-cp312-win32.whl", hash = "sha256:4a06263321dfd3598cacb252f51e521a8cb4b6df471bb12a7ee5cbab20ea9167"}, - {file = "numpy-1.26.2-cp312-cp312-win_amd64.whl", hash = "sha256:b04f5dc6b3efdaab541f7857351aac359e6ae3c126e2edb376929bd3b7f92d7e"}, - {file = "numpy-1.26.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4eb8df4bf8d3d90d091e0146f6c28492b0be84da3e409ebef54349f71ed271ef"}, - {file = "numpy-1.26.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1a13860fdcd95de7cf58bd6f8bc5a5ef81c0b0625eb2c9a783948847abbef2c2"}, - {file = "numpy-1.26.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64308ebc366a8ed63fd0bf426b6a9468060962f1a4339ab1074c228fa6ade8e3"}, - {file = "numpy-1.26.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baf8aab04a2c0e859da118f0b38617e5ee65d75b83795055fb66c0d5e9e9b818"}, - {file = "numpy-1.26.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d73a3abcac238250091b11caef9ad12413dab01669511779bc9b29261dd50210"}, - {file = "numpy-1.26.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b361d369fc7e5e1714cf827b731ca32bff8d411212fccd29ad98ad622449cc36"}, - {file = "numpy-1.26.2-cp39-cp39-win32.whl", hash = "sha256:bd3f0091e845164a20bd5a326860c840fe2af79fa12e0469a12768a3ec578d80"}, - {file = "numpy-1.26.2-cp39-cp39-win_amd64.whl", hash = "sha256:2beef57fb031dcc0dc8fa4fe297a742027b954949cabb52a2a376c144e5e6060"}, - {file = "numpy-1.26.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1cc3d5029a30fb5f06704ad6b23b35e11309491c999838c31f124fee32107c79"}, - {file = "numpy-1.26.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94cc3c222bb9fb5a12e334d0479b97bb2df446fbe622b470928f5284ffca3f8d"}, - {file = "numpy-1.26.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fe6b44fb8fcdf7eda4ef4461b97b3f63c466b27ab151bec2366db8b197387841"}, - {file = "numpy-1.26.2.tar.gz", hash = "sha256:f65738447676ab5777f11e6bbbdb8ce11b785e105f690bc45966574816b6d3ea"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, + {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, + {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, + {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, + {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, + {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, + {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, + {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, + {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, + {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, ] [[package]] @@ -1027,36 +1027,40 @@ files = [ [[package]] name = "pandas" -version = "2.1.3" +version = "2.2.0" description = "Powerful data structures for data analysis, time series, and statistics" optional = false python-versions = ">=3.9" files = [ - {file = "pandas-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:acf08a73b5022b479c1be155d4988b72f3020f308f7a87c527702c5f8966d34f"}, - {file = "pandas-2.1.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3cc4469ff0cf9aa3a005870cb49ab8969942b7156e0a46cc3f5abd6b11051dfb"}, - {file = "pandas-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35172bff95f598cc5866c047f43c7f4df2c893acd8e10e6653a4b792ed7f19bb"}, - {file = "pandas-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59dfe0e65a2f3988e940224e2a70932edc964df79f3356e5f2997c7d63e758b4"}, - {file = "pandas-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0296a66200dee556850d99b24c54c7dfa53a3264b1ca6f440e42bad424caea03"}, - {file = "pandas-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:465571472267a2d6e00657900afadbe6097c8e1dc43746917db4dfc862e8863e"}, - {file = "pandas-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:04d4c58e1f112a74689da707be31cf689db086949c71828ef5da86727cfe3f82"}, - {file = "pandas-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7fa2ad4ff196768ae63a33f8062e6838efed3a319cf938fdf8b95e956c813042"}, - {file = "pandas-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4441ac94a2a2613e3982e502ccec3bdedefe871e8cea54b8775992485c5660ef"}, - {file = "pandas-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5ded6ff28abbf0ea7689f251754d3789e1edb0c4d0d91028f0b980598418a58"}, - {file = "pandas-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fca5680368a5139d4920ae3dc993eb5106d49f814ff24018b64d8850a52c6ed2"}, - {file = "pandas-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:de21e12bf1511190fc1e9ebc067f14ca09fccfb189a813b38d63211d54832f5f"}, - {file = "pandas-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a5d53c725832e5f1645e7674989f4c106e4b7249c1d57549023ed5462d73b140"}, - {file = "pandas-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7cf4cf26042476e39394f1f86868d25b265ff787c9b2f0d367280f11afbdee6d"}, - {file = "pandas-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:72c84ec1b1d8e5efcbff5312abe92bfb9d5b558f11e0cf077f5496c4f4a3c99e"}, - {file = "pandas-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f539e113739a3e0cc15176bf1231a553db0239bfa47a2c870283fd93ba4f683"}, - {file = "pandas-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fc77309da3b55732059e484a1efc0897f6149183c522390772d3561f9bf96c00"}, - {file = "pandas-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:08637041279b8981a062899da0ef47828df52a1838204d2b3761fbd3e9fcb549"}, - {file = "pandas-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b99c4e51ef2ed98f69099c72c75ec904dd610eb41a32847c4fcbc1a975f2d2b8"}, - {file = "pandas-2.1.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7ea8ae8004de0381a2376662c0505bb0a4f679f4c61fbfd122aa3d1b0e5f09d"}, - {file = "pandas-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcd76d67ca2d48f56e2db45833cf9d58f548f97f61eecd3fdc74268417632b8a"}, - {file = "pandas-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1329dbe93a880a3d7893149979caa82d6ba64a25e471682637f846d9dbc10dd2"}, - {file = "pandas-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:321ecdb117bf0f16c339cc6d5c9a06063854f12d4d9bc422a84bb2ed3207380a"}, - {file = "pandas-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:11a771450f36cebf2a4c9dbd3a19dfa8c46c4b905a3ea09dc8e556626060fe71"}, - {file = "pandas-2.1.3.tar.gz", hash = "sha256:22929f84bca106921917eb73c1521317ddd0a4c71b395bcf767a106e3494209f"}, + {file = "pandas-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8108ee1712bb4fa2c16981fba7e68b3f6ea330277f5ca34fa8d557e986a11670"}, + {file = "pandas-2.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:736da9ad4033aeab51d067fc3bd69a0ba36f5a60f66a527b3d72e2030e63280a"}, + {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38e0b4fc3ddceb56ec8a287313bc22abe17ab0eb184069f08fc6a9352a769b18"}, + {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20404d2adefe92aed3b38da41d0847a143a09be982a31b85bc7dd565bdba0f4e"}, + {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7ea3ee3f125032bfcade3a4cf85131ed064b4f8dd23e5ce6fa16473e48ebcaf5"}, + {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f9670b3ac00a387620489dfc1bca66db47a787f4e55911f1293063a78b108df1"}, + {file = "pandas-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:5a946f210383c7e6d16312d30b238fd508d80d927014f3b33fb5b15c2f895430"}, + {file = "pandas-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a1b438fa26b208005c997e78672f1aa8138f67002e833312e6230f3e57fa87d5"}, + {file = "pandas-2.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8ce2fbc8d9bf303ce54a476116165220a1fedf15985b09656b4b4275300e920b"}, + {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2707514a7bec41a4ab81f2ccce8b382961a29fbe9492eab1305bb075b2b1ff4f"}, + {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85793cbdc2d5bc32620dc8ffa715423f0c680dacacf55056ba13454a5be5de88"}, + {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:cfd6c2491dc821b10c716ad6776e7ab311f7df5d16038d0b7458bc0b67dc10f3"}, + {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a146b9dcacc3123aa2b399df1a284de5f46287a4ab4fbfc237eac98a92ebcb71"}, + {file = "pandas-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbc1b53c0e1fdf16388c33c3cca160f798d38aea2978004dd3f4d3dec56454c9"}, + {file = "pandas-2.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a41d06f308a024981dcaa6c41f2f2be46a6b186b902c94c2674e8cb5c42985bc"}, + {file = "pandas-2.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:159205c99d7a5ce89ecfc37cb08ed179de7783737cea403b295b5eda8e9c56d1"}, + {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1e1f3861ea9132b32f2133788f3b14911b68102d562715d71bd0013bc45440"}, + {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:761cb99b42a69005dec2b08854fb1d4888fdf7b05db23a8c5a099e4b886a2106"}, + {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a20628faaf444da122b2a64b1e5360cde100ee6283ae8effa0d8745153809a2e"}, + {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f5be5d03ea2073627e7111f61b9f1f0d9625dc3c4d8dda72cc827b0c58a1d042"}, + {file = "pandas-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:a626795722d893ed6aacb64d2401d017ddc8a2341b49e0384ab9bf7112bdec30"}, + {file = "pandas-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9f66419d4a41132eb7e9a73dcec9486cf5019f52d90dd35547af11bc58f8637d"}, + {file = "pandas-2.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:57abcaeda83fb80d447f28ab0cc7b32b13978f6f733875ebd1ed14f8fbc0f4ab"}, + {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e60f1f7dba3c2d5ca159e18c46a34e7ca7247a73b5dd1a22b6d59707ed6b899a"}, + {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb61dc8567b798b969bcc1fc964788f5a68214d333cade8319c7ab33e2b5d88a"}, + {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:52826b5f4ed658fa2b729264d63f6732b8b29949c7fd234510d57c61dbeadfcd"}, + {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bde2bc699dbd80d7bc7f9cab1e23a95c4375de615860ca089f34e7c64f4a8de7"}, + {file = "pandas-2.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:3de918a754bbf2da2381e8a3dcc45eede8cd7775b047b923f9006d5f876802ae"}, + {file = "pandas-2.2.0.tar.gz", hash = "sha256:30b83f7c3eb217fb4d1b494a57a2fda5444f17834f5df2de6b2ffff68dc3c8e2"}, ] [package.dependencies] @@ -1067,166 +1071,184 @@ numpy = [ ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" -tzdata = ">=2022.1" +tzdata = ">=2022.7" [package.extras] -all = ["PyQt5 (>=5.15.6)", "SQLAlchemy (>=1.4.36)", "beautifulsoup4 (>=4.11.1)", "bottleneck (>=1.3.4)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=0.8.1)", "fsspec (>=2022.05.0)", "gcsfs (>=2022.05.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.8.0)", "matplotlib (>=3.6.1)", "numba (>=0.55.2)", "numexpr (>=2.8.0)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.10)", "pandas-gbq (>=0.17.5)", "psycopg2 (>=2.9.3)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.5)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "pyxlsb (>=1.0.9)", "qtpy (>=2.2.0)", "s3fs (>=2022.05.0)", "scipy (>=1.8.1)", "tables (>=3.7.0)", "tabulate (>=0.8.10)", "xarray (>=2022.03.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.3)", "zstandard (>=0.17.0)"] -aws = ["s3fs (>=2022.05.0)"] -clipboard = ["PyQt5 (>=5.15.6)", "qtpy (>=2.2.0)"] -compression = ["zstandard (>=0.17.0)"] -computation = ["scipy (>=1.8.1)", "xarray (>=2022.03.0)"] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] consortium-standard = ["dataframe-api-compat (>=0.1.7)"] -excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.10)", "pyxlsb (>=1.0.9)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.3)"] -feather = ["pyarrow (>=7.0.0)"] -fss = ["fsspec (>=2022.05.0)"] -gcp = ["gcsfs (>=2022.05.0)", "pandas-gbq (>=0.17.5)"] -hdf5 = ["tables (>=3.7.0)"] -html = ["beautifulsoup4 (>=4.11.1)", "html5lib (>=1.1)", "lxml (>=4.8.0)"] -mysql = ["SQLAlchemy (>=1.4.36)", "pymysql (>=1.0.2)"] -output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.8.10)"] -parquet = ["pyarrow (>=7.0.0)"] -performance = ["bottleneck (>=1.3.4)", "numba (>=0.55.2)", "numexpr (>=2.8.0)"] -plot = ["matplotlib (>=3.6.1)"] -postgresql = ["SQLAlchemy (>=1.4.36)", "psycopg2 (>=2.9.3)"] -spss = ["pyreadstat (>=1.1.5)"] -sql-other = ["SQLAlchemy (>=1.4.36)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] -xml = ["lxml (>=4.8.0)"] +xml = ["lxml (>=4.9.2)"] [[package]] name = "pillow" -version = "10.1.0" +version = "10.2.0" description = "Python Imaging Library (Fork)" optional = false python-versions = ">=3.8" files = [ - {file = "Pillow-10.1.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1ab05f3db77e98f93964697c8efc49c7954b08dd61cff526b7f2531a22410106"}, - {file = "Pillow-10.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6932a7652464746fcb484f7fc3618e6503d2066d853f68a4bd97193a3996e273"}, - {file = "Pillow-10.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f63b5a68daedc54c7c3464508d8c12075e56dcfbd42f8c1bf40169061ae666"}, - {file = "Pillow-10.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0949b55eb607898e28eaccb525ab104b2d86542a85c74baf3a6dc24002edec2"}, - {file = "Pillow-10.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ae88931f93214777c7a3aa0a8f92a683f83ecde27f65a45f95f22d289a69e593"}, - {file = "Pillow-10.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b0eb01ca85b2361b09480784a7931fc648ed8b7836f01fb9241141b968feb1db"}, - {file = "Pillow-10.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d27b5997bdd2eb9fb199982bb7eb6164db0426904020dc38c10203187ae2ff2f"}, - {file = "Pillow-10.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7df5608bc38bd37ef585ae9c38c9cd46d7c81498f086915b0f97255ea60c2818"}, - {file = "Pillow-10.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:41f67248d92a5e0a2076d3517d8d4b1e41a97e2df10eb8f93106c89107f38b57"}, - {file = "Pillow-10.1.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1fb29c07478e6c06a46b867e43b0bcdb241b44cc52be9bc25ce5944eed4648e7"}, - {file = "Pillow-10.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2cdc65a46e74514ce742c2013cd4a2d12e8553e3a2563c64879f7c7e4d28bce7"}, - {file = "Pillow-10.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50d08cd0a2ecd2a8657bd3d82c71efd5a58edb04d9308185d66c3a5a5bed9610"}, - {file = "Pillow-10.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:062a1610e3bc258bff2328ec43f34244fcec972ee0717200cb1425214fe5b839"}, - {file = "Pillow-10.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:61f1a9d247317fa08a308daaa8ee7b3f760ab1809ca2da14ecc88ae4257d6172"}, - {file = "Pillow-10.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a646e48de237d860c36e0db37ecaecaa3619e6f3e9d5319e527ccbc8151df061"}, - {file = "Pillow-10.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:47e5bf85b80abc03be7455c95b6d6e4896a62f6541c1f2ce77a7d2bb832af262"}, - {file = "Pillow-10.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a92386125e9ee90381c3369f57a2a50fa9e6aa8b1cf1d9c4b200d41a7dd8e992"}, - {file = "Pillow-10.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:0f7c276c05a9767e877a0b4c5050c8bee6a6d960d7f0c11ebda6b99746068c2a"}, - {file = "Pillow-10.1.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:a89b8312d51715b510a4fe9fc13686283f376cfd5abca8cd1c65e4c76e21081b"}, - {file = "Pillow-10.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:00f438bb841382b15d7deb9a05cc946ee0f2c352653c7aa659e75e592f6fa17d"}, - {file = "Pillow-10.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d929a19f5469b3f4df33a3df2983db070ebb2088a1e145e18facbc28cae5b27"}, - {file = "Pillow-10.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a92109192b360634a4489c0c756364c0c3a2992906752165ecb50544c251312"}, - {file = "Pillow-10.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:0248f86b3ea061e67817c47ecbe82c23f9dd5d5226200eb9090b3873d3ca32de"}, - {file = "Pillow-10.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9882a7451c680c12f232a422730f986a1fcd808da0fd428f08b671237237d651"}, - {file = "Pillow-10.1.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1c3ac5423c8c1da5928aa12c6e258921956757d976405e9467c5f39d1d577a4b"}, - {file = "Pillow-10.1.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:806abdd8249ba3953c33742506fe414880bad78ac25cc9a9b1c6ae97bedd573f"}, - {file = "Pillow-10.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:eaed6977fa73408b7b8a24e8b14e59e1668cfc0f4c40193ea7ced8e210adf996"}, - {file = "Pillow-10.1.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:fe1e26e1ffc38be097f0ba1d0d07fcade2bcfd1d023cda5b29935ae8052bd793"}, - {file = "Pillow-10.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7a7e3daa202beb61821c06d2517428e8e7c1aab08943e92ec9e5755c2fc9ba5e"}, - {file = "Pillow-10.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24fadc71218ad2b8ffe437b54876c9382b4a29e030a05a9879f615091f42ffc2"}, - {file = "Pillow-10.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa1d323703cfdac2036af05191b969b910d8f115cf53093125e4058f62012c9a"}, - {file = "Pillow-10.1.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:912e3812a1dbbc834da2b32299b124b5ddcb664ed354916fd1ed6f193f0e2d01"}, - {file = "Pillow-10.1.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:7dbaa3c7de82ef37e7708521be41db5565004258ca76945ad74a8e998c30af8d"}, - {file = "Pillow-10.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9d7bc666bd8c5a4225e7ac71f2f9d12466ec555e89092728ea0f5c0c2422ea80"}, - {file = "Pillow-10.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:baada14941c83079bf84c037e2d8b7506ce201e92e3d2fa0d1303507a8538212"}, - {file = "Pillow-10.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:2ef6721c97894a7aa77723740a09547197533146fba8355e86d6d9a4a1056b14"}, - {file = "Pillow-10.1.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0a026c188be3b443916179f5d04548092e253beb0c3e2ee0a4e2cdad72f66099"}, - {file = "Pillow-10.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:04f6f6149f266a100374ca3cc368b67fb27c4af9f1cc8cb6306d849dcdf12616"}, - {file = "Pillow-10.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb40c011447712d2e19cc261c82655f75f32cb724788df315ed992a4d65696bb"}, - {file = "Pillow-10.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a8413794b4ad9719346cd9306118450b7b00d9a15846451549314a58ac42219"}, - {file = "Pillow-10.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c9aeea7b63edb7884b031a35305629a7593272b54f429a9869a4f63a1bf04c34"}, - {file = "Pillow-10.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b4005fee46ed9be0b8fb42be0c20e79411533d1fd58edabebc0dd24626882cfd"}, - {file = "Pillow-10.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4d0152565c6aa6ebbfb1e5d8624140a440f2b99bf7afaafbdbf6430426497f28"}, - {file = "Pillow-10.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d921bc90b1defa55c9917ca6b6b71430e4286fc9e44c55ead78ca1a9f9eba5f2"}, - {file = "Pillow-10.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:cfe96560c6ce2f4c07d6647af2d0f3c54cc33289894ebd88cfbb3bcd5391e256"}, - {file = "Pillow-10.1.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:937bdc5a7f5343d1c97dc98149a0be7eb9704e937fe3dc7140e229ae4fc572a7"}, - {file = "Pillow-10.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1c25762197144e211efb5f4e8ad656f36c8d214d390585d1d21281f46d556ba"}, - {file = "Pillow-10.1.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:afc8eef765d948543a4775f00b7b8c079b3321d6b675dde0d02afa2ee23000b4"}, - {file = "Pillow-10.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:883f216eac8712b83a63f41b76ddfb7b2afab1b74abbb413c5df6680f071a6b9"}, - {file = "Pillow-10.1.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b920e4d028f6442bea9a75b7491c063f0b9a3972520731ed26c83e254302eb1e"}, - {file = "Pillow-10.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c41d960babf951e01a49c9746f92c5a7e0d939d1652d7ba30f6b3090f27e412"}, - {file = "Pillow-10.1.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1fafabe50a6977ac70dfe829b2d5735fd54e190ab55259ec8aea4aaea412fa0b"}, - {file = "Pillow-10.1.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3b834f4b16173e5b92ab6566f0473bfb09f939ba14b23b8da1f54fa63e4b623f"}, - {file = "Pillow-10.1.0.tar.gz", hash = "sha256:e6bf8de6c36ed96c86ea3b6e1d5273c53f46ef518a062464cd7ef5dd2cf92e38"}, + {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, + {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fad5ff2f13d69b7e74ce5b4ecd12cc0ec530fcee76356cac6742785ff71c452"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da2b52b37dad6d9ec64e653637a096905b258d2fc2b984c41ae7d08b938a67e4"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:47c0995fc4e7f79b5cfcab1fc437ff2890b770440f7696a3ba065ee0fd496563"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:322bdf3c9b556e9ffb18f93462e5f749d3444ce081290352c6070d014c93feb2"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:51f1a1bffc50e2e9492e87d8e09a17c5eea8409cda8d3f277eb6edc82813c17c"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69ffdd6120a4737710a9eee73e1d2e37db89b620f702754b8f6e62594471dee0"}, + {file = "pillow-10.2.0-cp310-cp310-win32.whl", hash = "sha256:c6dafac9e0f2b3c78df97e79af707cdc5ef8e88208d686a4847bab8266870023"}, + {file = "pillow-10.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:aebb6044806f2e16ecc07b2a2637ee1ef67a11840a66752751714a0d924adf72"}, + {file = "pillow-10.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:7049e301399273a0136ff39b84c3678e314f2158f50f517bc50285fb5ec847ad"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35bb52c37f256f662abdfa49d2dfa6ce5d93281d323a9af377a120e89a9eafb5"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c23f307202661071d94b5e384e1e1dc7dfb972a28a2310e4ee16103e66ddb67"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:773efe0603db30c281521a7c0214cad7836c03b8ccff897beae9b47c0b657d61"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11fa2e5984b949b0dd6d7a94d967743d87c577ff0b83392f17cb3990d0d2fd6e"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:716d30ed977be8b37d3ef185fecb9e5a1d62d110dfbdcd1e2a122ab46fddb03f"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a086c2af425c5f62a65e12fbf385f7c9fcb8f107d0849dba5839461a129cf311"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c8de2789052ed501dd829e9cae8d3dcce7acb4777ea4a479c14521c942d395b1"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:609448742444d9290fd687940ac0b57fb35e6fd92bdb65386e08e99af60bf757"}, + {file = "pillow-10.2.0-cp311-cp311-win32.whl", hash = "sha256:823ef7a27cf86df6597fa0671066c1b596f69eba53efa3d1e1cb8b30f3533068"}, + {file = "pillow-10.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:1da3b2703afd040cf65ec97efea81cfba59cdbed9c11d8efc5ab09df9509fc56"}, + {file = "pillow-10.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:edca80cbfb2b68d7b56930b84a0e45ae1694aeba0541f798e908a49d66b837f1"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:1b5e1b74d1bd1b78bc3477528919414874748dd363e6272efd5abf7654e68bef"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0eae2073305f451d8ecacb5474997c08569fb4eb4ac231ffa4ad7d342fdc25ac"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7c2286c23cd350b80d2fc9d424fc797575fb16f854b831d16fd47ceec078f2c"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e23412b5c41e58cec602f1135c57dfcf15482013ce6e5f093a86db69646a5aa"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:52a50aa3fb3acb9cf7213573ef55d31d6eca37f5709c69e6858fe3bc04a5c2a2"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:127cee571038f252a552760076407f9cff79761c3d436a12af6000cd182a9d04"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8d12251f02d69d8310b046e82572ed486685c38f02176bd08baf216746eb947f"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:54f1852cd531aa981bc0965b7d609f5f6cc8ce8c41b1139f6ed6b3c54ab82bfb"}, + {file = "pillow-10.2.0-cp312-cp312-win32.whl", hash = "sha256:257d8788df5ca62c980314053197f4d46eefedf4e6175bc9412f14412ec4ea2f"}, + {file = "pillow-10.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:154e939c5f0053a383de4fd3d3da48d9427a7e985f58af8e94d0b3c9fcfcf4f9"}, + {file = "pillow-10.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:f379abd2f1e3dddb2b61bc67977a6b5a0a3f7485538bcc6f39ec76163891ee48"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8373c6c251f7ef8bda6675dd6d2b3a0fcc31edf1201266b5cf608b62a37407f9"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:870ea1ada0899fd0b79643990809323b389d4d1d46c192f97342eeb6ee0b8483"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b6b1e20608493548b1f32bce8cca185bf0480983890403d3b8753e44077129"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3031709084b6e7852d00479fd1d310b07d0ba82765f973b543c8af5061cf990e"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:3ff074fc97dd4e80543a3e91f69d58889baf2002b6be64347ea8cf5533188213"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cb4c38abeef13c61d6916f264d4845fab99d7b711be96c326b84df9e3e0ff62d"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b1b3020d90c2d8e1dae29cf3ce54f8094f7938460fb5ce8bc5c01450b01fbaf6"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:170aeb00224ab3dc54230c797f8404507240dd868cf52066f66a41b33169bdbe"}, + {file = "pillow-10.2.0-cp38-cp38-win32.whl", hash = "sha256:c4225f5220f46b2fde568c74fca27ae9771536c2e29d7c04f4fb62c83275ac4e"}, + {file = "pillow-10.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0689b5a8c5288bc0504d9fcee48f61a6a586b9b98514d7d29b840143d6734f39"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:b792a349405fbc0163190fde0dc7b3fef3c9268292586cf5645598b48e63dc67"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c570f24be1e468e3f0ce7ef56a89a60f0e05b30a3669a459e419c6eac2c35364"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8ecd059fdaf60c1963c58ceb8997b32e9dc1b911f5da5307aab614f1ce5c2fb"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c365fd1703040de1ec284b176d6af5abe21b427cb3a5ff68e0759e1e313a5e7e"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:70c61d4c475835a19b3a5aa42492409878bbca7438554a1f89d20d58a7c75c01"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b6f491cdf80ae540738859d9766783e3b3c8e5bd37f5dfa0b76abdecc5081f13"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d189550615b4948f45252d7f005e53c2040cea1af5b60d6f79491a6e147eef7"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:49d9ba1ed0ef3e061088cd1e7538a0759aab559e2e0a80a36f9fd9d8c0c21591"}, + {file = "pillow-10.2.0-cp39-cp39-win32.whl", hash = "sha256:babf5acfede515f176833ed6028754cbcd0d206f7f614ea3447d67c33be12516"}, + {file = "pillow-10.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:0304004f8067386b477d20a518b50f3fa658a28d44e4116970abfcd94fac34a8"}, + {file = "pillow-10.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:0fb3e7fc88a14eacd303e90481ad983fd5b69c761e9e6ef94c983f91025da869"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:322209c642aabdd6207517e9739c704dc9f9db943015535783239022002f054a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3eedd52442c0a5ff4f887fab0c1c0bb164d8635b32c894bc1faf4c618dd89df2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb28c753fd5eb3dd859b4ee95de66cc62af91bcff5db5f2571d32a520baf1f04"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:33870dc4653c5017bf4c8873e5488d8f8d5f8935e2f1fb9a2208c47cdd66efd2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3c31822339516fb3c82d03f30e22b1d038da87ef27b6a78c9549888f8ceda39a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a2b56ba36e05f973d450582fb015594aaa78834fefe8dfb8fcd79b93e64ba4c6"}, + {file = "pillow-10.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d8e6aeb9201e655354b3ad049cb77d19813ad4ece0df1249d3c793de3774f8c7"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:2247178effb34a77c11c0e8ac355c7a741ceca0a732b27bf11e747bbc950722f"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15587643b9e5eb26c48e49a7b33659790d28f190fc514a322d55da2fb5c2950e"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753cd8f2086b2b80180d9b3010dd4ed147efc167c90d3bf593fe2af21265e5a5"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7c8f97e8e7a9009bcacbe3766a36175056c12f9a44e6e6f2d5caad06dcfbf03b"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d1b35bcd6c5543b9cb547dee3150c93008f8dd0f1fef78fc0cd2b141c5baf58a"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fe4c15f6c9285dc54ce6553a3ce908ed37c8f3825b5a51a15c91442bb955b868"}, + {file = "pillow-10.2.0.tar.gz", hash = "sha256:e87f0b2c78157e12d7686b27d63c070fd65d994e8ddae6f328e0dcf4a0cd007e"}, ] [package.extras] docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] [[package]] name = "protobuf" -version = "4.25.0" +version = "4.25.2" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-4.25.0-cp310-abi3-win32.whl", hash = "sha256:5c1203ac9f50e4853b0a0bfffd32c67118ef552a33942982eeab543f5c634395"}, - {file = "protobuf-4.25.0-cp310-abi3-win_amd64.whl", hash = "sha256:c40ff8f00aa737938c5378d461637d15c442a12275a81019cc2fef06d81c9419"}, - {file = "protobuf-4.25.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:cf21faba64cd2c9a3ed92b7a67f226296b10159dbb8fbc5e854fc90657d908e4"}, - {file = "protobuf-4.25.0-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:32ac2100b0e23412413d948c03060184d34a7c50b3e5d7524ee96ac2b10acf51"}, - {file = "protobuf-4.25.0-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:683dc44c61f2620b32ce4927de2108f3ebe8ccf2fd716e1e684e5a50da154054"}, - {file = "protobuf-4.25.0-cp38-cp38-win32.whl", hash = "sha256:1a3ba712877e6d37013cdc3476040ea1e313a6c2e1580836a94f76b3c176d575"}, - {file = "protobuf-4.25.0-cp38-cp38-win_amd64.whl", hash = "sha256:b2cf8b5d381f9378afe84618288b239e75665fe58d0f3fd5db400959274296e9"}, - {file = "protobuf-4.25.0-cp39-cp39-win32.whl", hash = "sha256:63714e79b761a37048c9701a37438aa29945cd2417a97076048232c1df07b701"}, - {file = "protobuf-4.25.0-cp39-cp39-win_amd64.whl", hash = "sha256:d94a33db8b7ddbd0af7c467475fb9fde0c705fb315a8433c0e2020942b863a1f"}, - {file = "protobuf-4.25.0-py3-none-any.whl", hash = "sha256:1a53d6f64b00eecf53b65ff4a8c23dc95df1fa1e97bb06b8122e5a64f49fc90a"}, - {file = "protobuf-4.25.0.tar.gz", hash = "sha256:68f7caf0d4f012fd194a301420cf6aa258366144d814f358c5b32558228afa7c"}, + {file = "protobuf-4.25.2-cp310-abi3-win32.whl", hash = "sha256:b50c949608682b12efb0b2717f53256f03636af5f60ac0c1d900df6213910fd6"}, + {file = "protobuf-4.25.2-cp310-abi3-win_amd64.whl", hash = "sha256:8f62574857ee1de9f770baf04dde4165e30b15ad97ba03ceac65f760ff018ac9"}, + {file = "protobuf-4.25.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:2db9f8fa64fbdcdc93767d3cf81e0f2aef176284071507e3ede160811502fd3d"}, + {file = "protobuf-4.25.2-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:10894a2885b7175d3984f2be8d9850712c57d5e7587a2410720af8be56cdaf62"}, + {file = "protobuf-4.25.2-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:fc381d1dd0516343f1440019cedf08a7405f791cd49eef4ae1ea06520bc1c020"}, + {file = "protobuf-4.25.2-cp38-cp38-win32.whl", hash = "sha256:33a1aeef4b1927431d1be780e87b641e322b88d654203a9e9d93f218ee359e61"}, + {file = "protobuf-4.25.2-cp38-cp38-win_amd64.whl", hash = "sha256:47f3de503fe7c1245f6f03bea7e8d3ec11c6c4a2ea9ef910e3221c8a15516d62"}, + {file = "protobuf-4.25.2-cp39-cp39-win32.whl", hash = "sha256:5e5c933b4c30a988b52e0b7c02641760a5ba046edc5e43d3b94a74c9fc57c1b3"}, + {file = "protobuf-4.25.2-cp39-cp39-win_amd64.whl", hash = "sha256:d66a769b8d687df9024f2985d5137a337f957a0916cf5464d1513eee96a63ff0"}, + {file = "protobuf-4.25.2-py3-none-any.whl", hash = "sha256:a8b7a98d4ce823303145bf3c1a8bdb0f2f4642a414b196f04ad9853ed0c8f830"}, + {file = "protobuf-4.25.2.tar.gz", hash = "sha256:fe599e175cb347efc8ee524bcd4b902d11f7262c0e569ececcb89995c15f0a5e"}, ] [[package]] name = "pyarrow" -version = "14.0.1" +version = "15.0.0" description = "Python library for Apache Arrow" optional = false python-versions = ">=3.8" files = [ - {file = "pyarrow-14.0.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:96d64e5ba7dceb519a955e5eeb5c9adcfd63f73a56aea4722e2cc81364fc567a"}, - {file = "pyarrow-14.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a8ae88c0038d1bc362a682320112ee6774f006134cd5afc291591ee4bc06505"}, - {file = "pyarrow-14.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f6f053cb66dc24091f5511e5920e45c83107f954a21032feadc7b9e3a8e7851"}, - {file = "pyarrow-14.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:906b0dc25f2be12e95975722f1e60e162437023f490dbd80d0deb7375baf3171"}, - {file = "pyarrow-14.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:78d4a77a46a7de9388b653af1c4ce539350726cd9af62e0831e4f2bd0c95a2f4"}, - {file = "pyarrow-14.0.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:06ca79080ef89d6529bb8e5074d4b4f6086143b2520494fcb7cf8a99079cde93"}, - {file = "pyarrow-14.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:32542164d905002c42dff896efdac79b3bdd7291b1b74aa292fac8450d0e4dcd"}, - {file = "pyarrow-14.0.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:c7331b4ed3401b7ee56f22c980608cf273f0380f77d0f73dd3c185f78f5a6220"}, - {file = "pyarrow-14.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:922e8b49b88da8633d6cac0e1b5a690311b6758d6f5d7c2be71acb0f1e14cd61"}, - {file = "pyarrow-14.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58c889851ca33f992ea916b48b8540735055201b177cb0dcf0596a495a667b00"}, - {file = "pyarrow-14.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:30d8494870d9916bb53b2a4384948491444741cb9a38253c590e21f836b01222"}, - {file = "pyarrow-14.0.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:be28e1a07f20391bb0b15ea03dcac3aade29fc773c5eb4bee2838e9b2cdde0cb"}, - {file = "pyarrow-14.0.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:981670b4ce0110d8dcb3246410a4aabf5714db5d8ea63b15686bce1c914b1f83"}, - {file = "pyarrow-14.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:4756a2b373a28f6166c42711240643fb8bd6322467e9aacabd26b488fa41ec23"}, - {file = "pyarrow-14.0.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:cf87e2cec65dd5cf1aa4aba918d523ef56ef95597b545bbaad01e6433851aa10"}, - {file = "pyarrow-14.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:470ae0194fbfdfbf4a6b65b4f9e0f6e1fa0ea5b90c1ee6b65b38aecee53508c8"}, - {file = "pyarrow-14.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6263cffd0c3721c1e348062997babdf0151301f7353010c9c9a8ed47448f82ab"}, - {file = "pyarrow-14.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8089d7e77d1455d529dbd7cff08898bbb2666ee48bc4085203af1d826a33cc"}, - {file = "pyarrow-14.0.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fada8396bc739d958d0b81d291cfd201126ed5e7913cb73de6bc606befc30226"}, - {file = "pyarrow-14.0.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:2a145dab9ed7849fc1101bf03bcdc69913547f10513fdf70fc3ab6c0a50c7eee"}, - {file = "pyarrow-14.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:05fe7994745b634c5fb16ce5717e39a1ac1fac3e2b0795232841660aa76647cd"}, - {file = "pyarrow-14.0.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:a8eeef015ae69d104c4c3117a6011e7e3ecd1abec79dc87fd2fac6e442f666ee"}, - {file = "pyarrow-14.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3c76807540989fe8fcd02285dd15e4f2a3da0b09d27781abec3adc265ddbeba1"}, - {file = "pyarrow-14.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:450e4605e3c20e558485f9161a79280a61c55efe585d51513c014de9ae8d393f"}, - {file = "pyarrow-14.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:323cbe60210173ffd7db78bfd50b80bdd792c4c9daca8843ef3cd70b186649db"}, - {file = "pyarrow-14.0.1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0140c7e2b740e08c5a459439d87acd26b747fc408bde0a8806096ee0baaa0c15"}, - {file = "pyarrow-14.0.1-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:e592e482edd9f1ab32f18cd6a716c45b2c0f2403dc2af782f4e9674952e6dd27"}, - {file = "pyarrow-14.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:d264ad13605b61959f2ae7c1d25b1a5b8505b112715c961418c8396433f213ad"}, - {file = "pyarrow-14.0.1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:01e44de9749cddc486169cb632f3c99962318e9dacac7778315a110f4bf8a450"}, - {file = "pyarrow-14.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d0351fecf0e26e152542bc164c22ea2a8e8c682726fce160ce4d459ea802d69c"}, - {file = "pyarrow-14.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33c1f6110c386464fd2e5e4ea3624466055bbe681ff185fd6c9daa98f30a3f9a"}, - {file = "pyarrow-14.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11e045dfa09855b6d3e7705a37c42e2dc2c71d608fab34d3c23df2e02df9aec3"}, - {file = "pyarrow-14.0.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:097828b55321897db0e1dbfc606e3ff8101ae5725673498cbfa7754ee0da80e4"}, - {file = "pyarrow-14.0.1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:1daab52050a1c48506c029e6fa0944a7b2436334d7e44221c16f6f1b2cc9c510"}, - {file = "pyarrow-14.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:3f6d5faf4f1b0d5a7f97be987cf9e9f8cd39902611e818fe134588ee99bf0283"}, - {file = "pyarrow-14.0.1.tar.gz", hash = "sha256:b8b3f4fe8d4ec15e1ef9b599b94683c5216adaed78d5cb4c606180546d1e2ee1"}, + {file = "pyarrow-15.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:0a524532fd6dd482edaa563b686d754c70417c2f72742a8c990b322d4c03a15d"}, + {file = "pyarrow-15.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:60a6bdb314affa9c2e0d5dddf3d9cbb9ef4a8dddaa68669975287d47ece67642"}, + {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:66958fd1771a4d4b754cd385835e66a3ef6b12611e001d4e5edfcef5f30391e2"}, + {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f500956a49aadd907eaa21d4fff75f73954605eaa41f61cb94fb008cf2e00c6"}, + {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6f87d9c4f09e049c2cade559643424da84c43a35068f2a1c4653dc5b1408a929"}, + {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:85239b9f93278e130d86c0e6bb455dcb66fc3fd891398b9d45ace8799a871a1e"}, + {file = "pyarrow-15.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5b8d43e31ca16aa6e12402fcb1e14352d0d809de70edd185c7650fe80e0769e3"}, + {file = "pyarrow-15.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:fa7cd198280dbd0c988df525e50e35b5d16873e2cdae2aaaa6363cdb64e3eec5"}, + {file = "pyarrow-15.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8780b1a29d3c8b21ba6b191305a2a607de2e30dab399776ff0aa09131e266340"}, + {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe0ec198ccc680f6c92723fadcb97b74f07c45ff3fdec9dd765deb04955ccf19"}, + {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:036a7209c235588c2f07477fe75c07e6caced9b7b61bb897c8d4e52c4b5f9555"}, + {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2bd8a0e5296797faf9a3294e9fa2dc67aa7f10ae2207920dbebb785c77e9dbe5"}, + {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e8ebed6053dbe76883a822d4e8da36860f479d55a762bd9e70d8494aed87113e"}, + {file = "pyarrow-15.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:17d53a9d1b2b5bd7d5e4cd84d018e2a45bc9baaa68f7e6e3ebed45649900ba99"}, + {file = "pyarrow-15.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9950a9c9df24090d3d558b43b97753b8f5867fb8e521f29876aa021c52fda351"}, + {file = "pyarrow-15.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:003d680b5e422d0204e7287bb3fa775b332b3fce2996aa69e9adea23f5c8f970"}, + {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f75fce89dad10c95f4bf590b765e3ae98bcc5ba9f6ce75adb828a334e26a3d40"}, + {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca9cb0039923bec49b4fe23803807e4ef39576a2bec59c32b11296464623dc2"}, + {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ed5a78ed29d171d0acc26a305a4b7f83c122d54ff5270810ac23c75813585e4"}, + {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6eda9e117f0402dfcd3cd6ec9bfee89ac5071c48fc83a84f3075b60efa96747f"}, + {file = "pyarrow-15.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:9a3a6180c0e8f2727e6f1b1c87c72d3254cac909e609f35f22532e4115461177"}, + {file = "pyarrow-15.0.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:19a8918045993349b207de72d4576af0191beef03ea655d8bdb13762f0cd6eac"}, + {file = "pyarrow-15.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d0ec076b32bacb6666e8813a22e6e5a7ef1314c8069d4ff345efa6246bc38593"}, + {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5db1769e5d0a77eb92344c7382d6543bea1164cca3704f84aa44e26c67e320fb"}, + {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2617e3bf9df2a00020dd1c1c6dce5cc343d979efe10bc401c0632b0eef6ef5b"}, + {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:d31c1d45060180131caf10f0f698e3a782db333a422038bf7fe01dace18b3a31"}, + {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:c8c287d1d479de8269398b34282e206844abb3208224dbdd7166d580804674b7"}, + {file = "pyarrow-15.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:07eb7f07dc9ecbb8dace0f58f009d3a29ee58682fcdc91337dfeb51ea618a75b"}, + {file = "pyarrow-15.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:47af7036f64fce990bb8a5948c04722e4e3ea3e13b1007ef52dfe0aa8f23cf7f"}, + {file = "pyarrow-15.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93768ccfff85cf044c418bfeeafce9a8bb0cee091bd8fd19011aff91e58de540"}, + {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6ee87fd6892700960d90abb7b17a72a5abb3b64ee0fe8db6c782bcc2d0dc0b4"}, + {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:001fca027738c5f6be0b7a3159cc7ba16a5c52486db18160909a0831b063c4e4"}, + {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:d1c48648f64aec09accf44140dccb92f4f94394b8d79976c426a5b79b11d4fa7"}, + {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:972a0141be402bb18e3201448c8ae62958c9c7923dfaa3b3d4530c835ac81aed"}, + {file = "pyarrow-15.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:f01fc5cf49081426429127aa2d427d9d98e1cb94a32cb961d583a70b7c4504e6"}, + {file = "pyarrow-15.0.0.tar.gz", hash = "sha256:876858f549d540898f927eba4ef77cd549ad8d24baa3207cf1b72e5788b50e83"}, ] [package.dependencies] -numpy = ">=1.16.6" +numpy = ">=1.16.6,<2" [[package]] name = "pydeck" @@ -1249,31 +1271,32 @@ jupyter = ["ipykernel (>=5.1.2)", "ipython (>=5.8.0)", "ipywidgets (>=7,<8)", "t [[package]] name = "pygments" -version = "2.16.1" +version = "2.17.2" description = "Pygments is a syntax highlighting package written in Python." optional = false python-versions = ">=3.7" files = [ - {file = "Pygments-2.16.1-py3-none-any.whl", hash = "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692"}, - {file = "Pygments-2.16.1.tar.gz", hash = "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29"}, + {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, + {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, ] [package.extras] plugins = ["importlib-metadata"] +windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pymdown-extensions" -version = "10.4" +version = "10.7" description = "Extension pack for Python Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "pymdown_extensions-10.4-py3-none-any.whl", hash = "sha256:cfc28d6a09d19448bcbf8eee3ce098c7d17ff99f7bd3069db4819af181212037"}, - {file = "pymdown_extensions-10.4.tar.gz", hash = "sha256:bc46f11749ecd4d6b71cf62396104b4a200bad3498cb0f5dad1b8502fe461a35"}, + {file = "pymdown_extensions-10.7-py3-none-any.whl", hash = "sha256:6ca215bc57bc12bf32b414887a68b810637d039124ed9b2e5bd3325cbb2c050c"}, + {file = "pymdown_extensions-10.7.tar.gz", hash = "sha256:c0d64d5cf62566f59e6b2b690a4095c931107c250a8c8e1351c1de5f6b036deb"}, ] [package.dependencies] -markdown = ">=3.2" +markdown = ">=3.5" pyyaml = "*" [package.extras] @@ -1320,13 +1343,13 @@ files = [ [[package]] name = "pytz" -version = "2023.3.post1" +version = "2024.1" description = "World timezone definitions, modern and historical" optional = false python-versions = "*" files = [ - {file = "pytz-2023.3.post1-py2.py3-none-any.whl", hash = "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7"}, - {file = "pytz-2023.3.post1.tar.gz", hash = "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b"}, + {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, + {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, ] [[package]] @@ -1380,13 +1403,13 @@ files = [ [[package]] name = "referencing" -version = "0.30.2" +version = "0.33.0" description = "JSON Referencing + Python" optional = false python-versions = ">=3.8" files = [ - {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, - {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, + {file = "referencing-0.33.0-py3-none-any.whl", hash = "sha256:39240f2ecc770258f28b642dd47fd74bc8b02484de54e1882b74b35ebd779bd5"}, + {file = "referencing-0.33.0.tar.gz", hash = "sha256:c775fedf74bc0f9189c2a3be1c12fd03e8c23f4d371dce795df44e06c5b412f7"}, ] [package.dependencies] @@ -1416,13 +1439,13 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "rich" -version = "13.6.0" +version = "13.7.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" optional = false python-versions = ">=3.7.0" files = [ - {file = "rich-13.6.0-py3-none-any.whl", hash = "sha256:2b38e2fe9ca72c9a00170a1a2d20c63c790d0e10ef1fe35eba76e1e7b1d7d245"}, - {file = "rich-13.6.0.tar.gz", hash = "sha256:5c14d22737e6d5084ef4771b62d5d4363165b403455a30a1c8ca39dc7b644bef"}, + {file = "rich-13.7.0-py3-none-any.whl", hash = "sha256:6da14c108c4866ee9520bbffa71f6fe3962e193b7da68720583850cd4548e235"}, + {file = "rich-13.7.0.tar.gz", hash = "sha256:5cb5123b5cf9ee70584244246816e9114227e0b98ad9176eede6ad54bf5403fa"}, ] [package.dependencies] @@ -1434,110 +1457,110 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"] [[package]] name = "rpds-py" -version = "0.12.0" +version = "0.17.1" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.12.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:c694bee70ece3b232df4678448fdda245fd3b1bb4ba481fb6cd20e13bb784c46"}, - {file = "rpds_py-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:30e5ce9f501fb1f970e4a59098028cf20676dee64fc496d55c33e04bbbee097d"}, - {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d72a4315514e5a0b9837a086cb433b004eea630afb0cc129de76d77654a9606f"}, - {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eebaf8c76c39604d52852366249ab807fe6f7a3ffb0dd5484b9944917244cdbe"}, - {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a239303acb0315091d54c7ff36712dba24554993b9a93941cf301391d8a997ee"}, - {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ced40cdbb6dd47a032725a038896cceae9ce267d340f59508b23537f05455431"}, - {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c8c0226c71bd0ce9892eaf6afa77ae8f43a3d9313124a03df0b389c01f832de"}, - {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8e11715178f3608874508f08e990d3771e0b8c66c73eb4e183038d600a9b274"}, - {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5210a0018c7e09c75fa788648617ebba861ae242944111d3079034e14498223f"}, - {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:171d9a159f1b2f42a42a64a985e4ba46fc7268c78299272ceba970743a67ee50"}, - {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:57ec6baec231bb19bb5fd5fc7bae21231860a1605174b11585660236627e390e"}, - {file = "rpds_py-0.12.0-cp310-none-win32.whl", hash = "sha256:7188ddc1a8887194f984fa4110d5a3d5b9b5cd35f6bafdff1b649049cbc0ce29"}, - {file = "rpds_py-0.12.0-cp310-none-win_amd64.whl", hash = "sha256:1e04581c6117ad9479b6cfae313e212fe0dfa226ac727755f0d539cd54792963"}, - {file = "rpds_py-0.12.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:0a38612d07a36138507d69646c470aedbfe2b75b43a4643f7bd8e51e52779624"}, - {file = "rpds_py-0.12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f12d69d568f5647ec503b64932874dade5a20255736c89936bf690951a5e79f5"}, - {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f8a1d990dc198a6c68ec3d9a637ba1ce489b38cbfb65440a27901afbc5df575"}, - {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8c567c664fc2f44130a20edac73e0a867f8e012bf7370276f15c6adc3586c37c"}, - {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0e9e976e0dbed4f51c56db10831c9623d0fd67aac02853fe5476262e5a22acb7"}, - {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:efddca2d02254a52078c35cadad34762adbae3ff01c6b0c7787b59d038b63e0d"}, - {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9e7f29c00577aff6b318681e730a519b235af292732a149337f6aaa4d1c5e31"}, - {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:389c0e38358fdc4e38e9995e7291269a3aead7acfcf8942010ee7bc5baee091c"}, - {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33ab498f9ac30598b6406e2be1b45fd231195b83d948ebd4bd77f337cb6a2bff"}, - {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d56b1cd606ba4cedd64bb43479d56580e147c6ef3f5d1c5e64203a1adab784a2"}, - {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1fa73ed22c40a1bec98d7c93b5659cd35abcfa5a0a95ce876b91adbda170537c"}, - {file = "rpds_py-0.12.0-cp311-none-win32.whl", hash = "sha256:dbc25baa6abb205766fb8606f8263b02c3503a55957fcb4576a6bb0a59d37d10"}, - {file = "rpds_py-0.12.0-cp311-none-win_amd64.whl", hash = "sha256:c6b52b7028b547866c2413f614ee306c2d4eafdd444b1ff656bf3295bf1484aa"}, - {file = "rpds_py-0.12.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:9620650c364c01ed5b497dcae7c3d4b948daeae6e1883ae185fef1c927b6b534"}, - {file = "rpds_py-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2124f9e645a94ab7c853bc0a3644e0ca8ffbe5bb2d72db49aef8f9ec1c285733"}, - {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281c8b219d4f4b3581b918b816764098d04964915b2f272d1476654143801aa2"}, - {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:27ccc93c7457ef890b0dd31564d2a05e1aca330623c942b7e818e9e7c2669ee4"}, - {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1c562a9bb72244fa767d1c1ab55ca1d92dd5f7c4d77878fee5483a22ffac808"}, - {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e57919c32ee295a2fca458bb73e4b20b05c115627f96f95a10f9f5acbd61172d"}, - {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa35ad36440aaf1ac8332b4a4a433d4acd28f1613f0d480995f5cfd3580e90b7"}, - {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e6aea5c0eb5b0faf52c7b5c4a47c8bb64437173be97227c819ffa31801fa4e34"}, - {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:81cf9d306c04df1b45971c13167dc3bad625808aa01281d55f3cf852dde0e206"}, - {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:08e6e7ff286254016b945e1ab632ee843e43d45e40683b66dd12b73791366dd1"}, - {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4d0a675a7acbbc16179188d8c6d0afb8628604fc1241faf41007255957335a0b"}, - {file = "rpds_py-0.12.0-cp312-none-win32.whl", hash = "sha256:b2287c09482949e0ca0c0eb68b2aca6cf57f8af8c6dfd29dcd3bc45f17b57978"}, - {file = "rpds_py-0.12.0-cp312-none-win_amd64.whl", hash = "sha256:8015835494b21aa7abd3b43fdea0614ee35ef6b03db7ecba9beb58eadf01c24f"}, - {file = "rpds_py-0.12.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6174d6ad6b58a6bcf67afbbf1723420a53d06c4b89f4c50763d6fa0a6ac9afd2"}, - {file = "rpds_py-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a689e1ded7137552bea36305a7a16ad2b40be511740b80748d3140614993db98"}, - {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45321224144c25a62052035ce96cbcf264667bcb0d81823b1bbc22c4addd194"}, - {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aa32205358a76bf578854bf31698a86dc8b2cb591fd1d79a833283f4a403f04b"}, - {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91bd2b7cf0f4d252eec8b7046fa6a43cee17e8acdfc00eaa8b3dbf2f9a59d061"}, - {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3acadbab8b59f63b87b518e09c4c64b142e7286b9ca7a208107d6f9f4c393c5c"}, - {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:429349a510da82c85431f0f3e66212d83efe9fd2850f50f339341b6532c62fe4"}, - {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05942656cb2cb4989cd50ced52df16be94d344eae5097e8583966a1d27da73a5"}, - {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0c5441b7626c29dbd54a3f6f3713ec8e956b009f419ffdaaa3c80eaf98ddb523"}, - {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:b6b0e17d39d21698185097652c611f9cf30f7c56ccec189789920e3e7f1cee56"}, - {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3b7a64d43e2a1fa2dd46b678e00cabd9a49ebb123b339ce799204c44a593ae1c"}, - {file = "rpds_py-0.12.0-cp38-none-win32.whl", hash = "sha256:e5bbe011a2cea9060fef1bb3d668a2fd8432b8888e6d92e74c9c794d3c101595"}, - {file = "rpds_py-0.12.0-cp38-none-win_amd64.whl", hash = "sha256:bec29b801b4adbf388314c0d050e851d53762ab424af22657021ce4b6eb41543"}, - {file = "rpds_py-0.12.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:1096ca0bf2d3426cbe79d4ccc91dc5aaa73629b08ea2d8467375fad8447ce11a"}, - {file = "rpds_py-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48aa98987d54a46e13e6954880056c204700c65616af4395d1f0639eba11764b"}, - {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7979d90ee2190d000129598c2b0c82f13053dba432b94e45e68253b09bb1f0f6"}, - {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:88857060b690a57d2ea8569bca58758143c8faa4639fb17d745ce60ff84c867e"}, - {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4eb74d44776b0fb0782560ea84d986dffec8ddd94947f383eba2284b0f32e35e"}, - {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f62581d7e884dd01ee1707b7c21148f61f2febb7de092ae2f108743fcbef5985"}, - {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f5dcb658d597410bb7c967c1d24eaf9377b0d621358cbe9d2ff804e5dd12e81"}, - {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9bf9acce44e967a5103fcd820fc7580c7b0ab8583eec4e2051aec560f7b31a63"}, - {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:240687b5be0f91fbde4936a329c9b7589d9259742766f74de575e1b2046575e4"}, - {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25740fb56e8bd37692ed380e15ec734be44d7c71974d8993f452b4527814601e"}, - {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a54917b7e9cd3a67e429a630e237a90b096e0ba18897bfb99ee8bd1068a5fea0"}, - {file = "rpds_py-0.12.0-cp39-none-win32.whl", hash = "sha256:b92aafcfab3d41580d54aca35a8057341f1cfc7c9af9e8bdfc652f83a20ced31"}, - {file = "rpds_py-0.12.0-cp39-none-win_amd64.whl", hash = "sha256:cd316dbcc74c76266ba94eb021b0cc090b97cca122f50bd7a845f587ff4bf03f"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0853da3d5e9bc6a07b2486054a410b7b03f34046c123c6561b535bb48cc509e1"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:cb41ad20064e18a900dd427d7cf41cfaec83bcd1184001f3d91a1f76b3fcea4e"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bf7e7ae61957d5c4026b486be593ed3ec3dca3e5be15e0f6d8cf5d0a4990"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a952ae3eb460c6712388ac2ec706d24b0e651b9396d90c9a9e0a69eb27737fdc"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bedd91ae1dd142a4dc15970ed2c729ff6c73f33a40fa84ed0cdbf55de87c777"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:761531076df51309075133a6bc1db02d98ec7f66e22b064b1d513bc909f29743"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2baa6be130e8a00b6cbb9f18a33611ec150b4537f8563bddadb54c1b74b8193"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f05450fa1cd7c525c0b9d1a7916e595d3041ac0afbed2ff6926e5afb6a781b7f"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:81c4d1a3a564775c44732b94135d06e33417e829ff25226c164664f4a1046213"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e888be685fa42d8b8a3d3911d5604d14db87538aa7d0b29b1a7ea80d354c732d"}, - {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6f8d7fe73d1816eeb5378409adc658f9525ecbfaf9e1ede1e2d67a338b0c7348"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0831d3ecdea22e4559cc1793f22e77067c9d8c451d55ae6a75bf1d116a8e7f42"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:513ccbf7420c30e283c25c82d5a8f439d625a838d3ba69e79a110c260c46813f"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:301bd744a1adaa2f6a5e06c98f1ac2b6f8dc31a5c23b838f862d65e32fca0d4b"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f8832a4f83d4782a8f5a7b831c47e8ffe164e43c2c148c8160ed9a6d630bc02a"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b2416ed743ec5debcf61e1242e012652a4348de14ecc7df3512da072b074440"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35585a8cb5917161f42c2104567bb83a1d96194095fc54a543113ed5df9fa436"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d389ff1e95b6e46ebedccf7fd1fadd10559add595ac6a7c2ea730268325f832c"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9b007c2444705a2dc4a525964fd4dd28c3320b19b3410da6517cab28716f27d3"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:188912b22b6c8225f4c4ffa020a2baa6ad8fabb3c141a12dbe6edbb34e7f1425"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b4cf9ab9a0ae0cb122685209806d3f1dcb63b9fccdf1424fb42a129dc8c2faa"}, - {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2d34a5450a402b00d20aeb7632489ffa2556ca7b26f4a63c35f6fccae1977427"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:466030a42724780794dea71eb32db83cc51214d66ab3fb3156edd88b9c8f0d78"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:68172622a5a57deb079a2c78511c40f91193548e8ab342c31e8cb0764d362459"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54cdfcda59251b9c2f87a05d038c2ae02121219a04d4a1e6fc345794295bdc07"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b75b912a0baa033350367a8a07a8b2d44fd5b90c890bfbd063a8a5f945f644b"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47aeceb4363851d17f63069318ba5721ae695d9da55d599b4d6fb31508595278"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0525847f83f506aa1e28eb2057b696fe38217e12931c8b1b02198cfe6975e142"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efbe0b5e0fd078ed7b005faa0170da4f72666360f66f0bb2d7f73526ecfd99f9"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0fadfdda275c838cba5102c7f90a20f2abd7727bf8f4a2b654a5b617529c5c18"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:56dd500411d03c5e9927a1eb55621e906837a83b02350a9dc401247d0353717c"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:6915fc9fa6b3ec3569566832e1bb03bd801c12cea030200e68663b9a87974e76"}, - {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5f1519b080d8ce0a814f17ad9fb49fb3a1d4d7ce5891f5c85fc38631ca3a8dc4"}, - {file = "rpds_py-0.12.0.tar.gz", hash = "sha256:7036316cc26b93e401cedd781a579be606dad174829e6ad9e9c5a0da6e036f80"}, + {file = "rpds_py-0.17.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:4128980a14ed805e1b91a7ed551250282a8ddf8201a4e9f8f5b7e6225f54170d"}, + {file = "rpds_py-0.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ff1dcb8e8bc2261a088821b2595ef031c91d499a0c1b031c152d43fe0a6ecec8"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d65e6b4f1443048eb7e833c2accb4fa7ee67cc7d54f31b4f0555b474758bee55"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a71169d505af63bb4d20d23a8fbd4c6ce272e7bce6cc31f617152aa784436f29"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:436474f17733c7dca0fbf096d36ae65277e8645039df12a0fa52445ca494729d"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10162fe3f5f47c37ebf6d8ff5a2368508fe22007e3077bf25b9c7d803454d921"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:720215373a280f78a1814becb1312d4e4d1077b1202a56d2b0815e95ccb99ce9"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:70fcc6c2906cfa5c6a552ba7ae2ce64b6c32f437d8f3f8eea49925b278a61453"}, + {file = "rpds_py-0.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:91e5a8200e65aaac342a791272c564dffcf1281abd635d304d6c4e6b495f29dc"}, + {file = "rpds_py-0.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:99f567dae93e10be2daaa896e07513dd4bf9c2ecf0576e0533ac36ba3b1d5394"}, + {file = "rpds_py-0.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:24e4900a6643f87058a27320f81336d527ccfe503984528edde4bb660c8c8d59"}, + {file = "rpds_py-0.17.1-cp310-none-win32.whl", hash = "sha256:0bfb09bf41fe7c51413f563373e5f537eaa653d7adc4830399d4e9bdc199959d"}, + {file = "rpds_py-0.17.1-cp310-none-win_amd64.whl", hash = "sha256:20de7b7179e2031a04042e85dc463a93a82bc177eeba5ddd13ff746325558aa6"}, + {file = "rpds_py-0.17.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:65dcf105c1943cba45d19207ef51b8bc46d232a381e94dd38719d52d3980015b"}, + {file = "rpds_py-0.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:01f58a7306b64e0a4fe042047dd2b7d411ee82e54240284bab63e325762c1147"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:071bc28c589b86bc6351a339114fb7a029f5cddbaca34103aa573eba7b482382"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae35e8e6801c5ab071b992cb2da958eee76340e6926ec693b5ff7d6381441745"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149c5cd24f729e3567b56e1795f74577aa3126c14c11e457bec1b1c90d212e38"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e796051f2070f47230c745d0a77a91088fbee2cc0502e9b796b9c6471983718c"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e820ee1004327609b28db8307acc27f5f2e9a0b185b2064c5f23e815f248f8"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1957a2ab607f9added64478a6982742eb29f109d89d065fa44e01691a20fc20a"}, + {file = "rpds_py-0.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8587fd64c2a91c33cdc39d0cebdaf30e79491cc029a37fcd458ba863f8815383"}, + {file = "rpds_py-0.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4dc889a9d8a34758d0fcc9ac86adb97bab3fb7f0c4d29794357eb147536483fd"}, + {file = "rpds_py-0.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2953937f83820376b5979318840f3ee47477d94c17b940fe31d9458d79ae7eea"}, + {file = "rpds_py-0.17.1-cp311-none-win32.whl", hash = "sha256:1bfcad3109c1e5ba3cbe2f421614e70439f72897515a96c462ea657261b96518"}, + {file = "rpds_py-0.17.1-cp311-none-win_amd64.whl", hash = "sha256:99da0a4686ada4ed0f778120a0ea8d066de1a0a92ab0d13ae68492a437db78bf"}, + {file = "rpds_py-0.17.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:1dc29db3900cb1bb40353772417800f29c3d078dbc8024fd64655a04ee3c4bdf"}, + {file = "rpds_py-0.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:82ada4a8ed9e82e443fcef87e22a3eed3654dd3adf6e3b3a0deb70f03e86142a"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d36b2b59e8cc6e576f8f7b671e32f2ff43153f0ad6d0201250a7c07f25d570e"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3677fcca7fb728c86a78660c7fb1b07b69b281964673f486ae72860e13f512ad"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:516fb8c77805159e97a689e2f1c80655c7658f5af601c34ffdb916605598cda2"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df3b6f45ba4515632c5064e35ca7f31d51d13d1479673185ba8f9fefbbed58b9"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a967dd6afda7715d911c25a6ba1517975acd8d1092b2f326718725461a3d33f9"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dbbb95e6fc91ea3102505d111b327004d1c4ce98d56a4a02e82cd451f9f57140"}, + {file = "rpds_py-0.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02866e060219514940342a1f84303a1ef7a1dad0ac311792fbbe19b521b489d2"}, + {file = "rpds_py-0.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:2528ff96d09f12e638695f3a2e0c609c7b84c6df7c5ae9bfeb9252b6fa686253"}, + {file = "rpds_py-0.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bd345a13ce06e94c753dab52f8e71e5252aec1e4f8022d24d56decd31e1b9b23"}, + {file = "rpds_py-0.17.1-cp312-none-win32.whl", hash = "sha256:2a792b2e1d3038daa83fa474d559acfd6dc1e3650ee93b2662ddc17dbff20ad1"}, + {file = "rpds_py-0.17.1-cp312-none-win_amd64.whl", hash = "sha256:292f7344a3301802e7c25c53792fae7d1593cb0e50964e7bcdcc5cf533d634e3"}, + {file = "rpds_py-0.17.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:8ffe53e1d8ef2520ebcf0c9fec15bb721da59e8ef283b6ff3079613b1e30513d"}, + {file = "rpds_py-0.17.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4341bd7579611cf50e7b20bb8c2e23512a3dc79de987a1f411cb458ab670eb90"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f4eb548daf4836e3b2c662033bfbfc551db58d30fd8fe660314f86bf8510b93"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b686f25377f9c006acbac63f61614416a6317133ab7fafe5de5f7dc8a06d42eb"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4e21b76075c01d65d0f0f34302b5a7457d95721d5e0667aea65e5bb3ab415c25"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b86b21b348f7e5485fae740d845c65a880f5d1eda1e063bc59bef92d1f7d0c55"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f175e95a197f6a4059b50757a3dca33b32b61691bdbd22c29e8a8d21d3914cae"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1701fc54460ae2e5efc1dd6350eafd7a760f516df8dbe51d4a1c79d69472fbd4"}, + {file = "rpds_py-0.17.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:9051e3d2af8f55b42061603e29e744724cb5f65b128a491446cc029b3e2ea896"}, + {file = "rpds_py-0.17.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:7450dbd659fed6dd41d1a7d47ed767e893ba402af8ae664c157c255ec6067fde"}, + {file = "rpds_py-0.17.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5a024fa96d541fd7edaa0e9d904601c6445e95a729a2900c5aec6555fe921ed6"}, + {file = "rpds_py-0.17.1-cp38-none-win32.whl", hash = "sha256:da1ead63368c04a9bded7904757dfcae01eba0e0f9bc41d3d7f57ebf1c04015a"}, + {file = "rpds_py-0.17.1-cp38-none-win_amd64.whl", hash = "sha256:841320e1841bb53fada91c9725e766bb25009cfd4144e92298db296fb6c894fb"}, + {file = "rpds_py-0.17.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:f6c43b6f97209e370124baf2bf40bb1e8edc25311a158867eb1c3a5d449ebc7a"}, + {file = "rpds_py-0.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e7d63ec01fe7c76c2dbb7e972fece45acbb8836e72682bde138e7e039906e2c"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81038ff87a4e04c22e1d81f947c6ac46f122e0c80460b9006e6517c4d842a6ec"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:810685321f4a304b2b55577c915bece4c4a06dfe38f6e62d9cc1d6ca8ee86b99"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:25f071737dae674ca8937a73d0f43f5a52e92c2d178330b4c0bb6ab05586ffa6"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa5bfb13f1e89151ade0eb812f7b0d7a4d643406caaad65ce1cbabe0a66d695f"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfe07308b311a8293a0d5ef4e61411c5c20f682db6b5e73de6c7c8824272c256"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a000133a90eea274a6f28adc3084643263b1e7c1a5a66eb0a0a7a36aa757ed74"}, + {file = "rpds_py-0.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d0e8a6434a3fbf77d11448c9c25b2f25244226cfbec1a5159947cac5b8c5fa4"}, + {file = "rpds_py-0.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:efa767c220d94aa4ac3a6dd3aeb986e9f229eaf5bce92d8b1b3018d06bed3772"}, + {file = "rpds_py-0.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:dbc56680ecf585a384fbd93cd42bc82668b77cb525343170a2d86dafaed2a84b"}, + {file = "rpds_py-0.17.1-cp39-none-win32.whl", hash = "sha256:270987bc22e7e5a962b1094953ae901395e8c1e1e83ad016c5cfcfff75a15a3f"}, + {file = "rpds_py-0.17.1-cp39-none-win_amd64.whl", hash = "sha256:2a7b2f2f56a16a6d62e55354dd329d929560442bd92e87397b7a9586a32e3e76"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a3264e3e858de4fc601741498215835ff324ff2482fd4e4af61b46512dd7fc83"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:f2f3b28b40fddcb6c1f1f6c88c6f3769cd933fa493ceb79da45968a21dccc920"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9584f8f52010295a4a417221861df9bea4c72d9632562b6e59b3c7b87a1522b7"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c64602e8be701c6cfe42064b71c84ce62ce66ddc6422c15463fd8127db3d8066"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:060f412230d5f19fc8c8b75f315931b408d8ebf56aec33ef4168d1b9e54200b1"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b9412abdf0ba70faa6e2ee6c0cc62a8defb772e78860cef419865917d86c7342"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9737bdaa0ad33d34c0efc718741abaafce62fadae72c8b251df9b0c823c63b22"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9f0e4dc0f17dcea4ab9d13ac5c666b6b5337042b4d8f27e01b70fae41dd65c57"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1db228102ab9d1ff4c64148c96320d0be7044fa28bd865a9ce628ce98da5973d"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:d8bbd8e56f3ba25a7d0cf980fc42b34028848a53a0e36c9918550e0280b9d0b6"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:be22ae34d68544df293152b7e50895ba70d2a833ad9566932d750d3625918b82"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bf046179d011e6114daf12a534d874958b039342b347348a78b7cdf0dd9d6041"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:1a746a6d49665058a5896000e8d9d2f1a6acba8a03b389c1e4c06e11e0b7f40d"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0b8bf5b8db49d8fd40f54772a1dcf262e8be0ad2ab0206b5a2ec109c176c0a4"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f7f4cb1f173385e8a39c29510dd11a78bf44e360fb75610594973f5ea141028b"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7fbd70cb8b54fe745301921b0816c08b6d917593429dfc437fd024b5ba713c58"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bdf1303df671179eaf2cb41e8515a07fc78d9d00f111eadbe3e14262f59c3d0"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fad059a4bd14c45776600d223ec194e77db6c20255578bb5bcdd7c18fd169361"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3664d126d3388a887db44c2e293f87d500c4184ec43d5d14d2d2babdb4c64cad"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:698ea95a60c8b16b58be9d854c9f993c639f5c214cf9ba782eca53a8789d6b19"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:c3d2010656999b63e628a3c694f23020322b4178c450dc478558a2b6ef3cb9bb"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:938eab7323a736533f015e6069a7d53ef2dcc841e4e533b782c2bfb9fb12d84b"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1e626b365293a2142a62b9a614e1f8e331b28f3ca57b9f05ebbf4cf2a0f0bdc5"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:380e0df2e9d5d5d339803cfc6d183a5442ad7ab3c63c2a0982e8c824566c5ccc"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b760a56e080a826c2e5af09002c1a037382ed21d03134eb6294812dda268c811"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5576ee2f3a309d2bb403ec292d5958ce03953b0e57a11d224c1f134feaf8c40f"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f3c3461ebb4c4f1bbc70b15d20b565759f97a5aaf13af811fcefc892e9197ba"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:637b802f3f069a64436d432117a7e58fab414b4e27a7e81049817ae94de45d8d"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffee088ea9b593cc6160518ba9bd319b5475e5f3e578e4552d63818773c6f56a"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3ac732390d529d8469b831949c78085b034bff67f584559340008d0f6041a049"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:93432e747fb07fa567ad9cc7aaadd6e29710e515aabf939dfbed8046041346c6"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:7b7d9ca34542099b4e185b3c2a2b2eda2e318a7dbde0b0d83357a6d4421b5296"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:0387ce69ba06e43df54e43968090f3626e231e4bc9150e4c3246947567695f68"}, + {file = "rpds_py-0.17.1.tar.gz", hash = "sha256:0210b2668f24c078307260bf88bdac9d6f1093635df5123789bfee4d8d7fc8e7"}, ] [[package]] @@ -1589,13 +1612,13 @@ htbuilder = "*" [[package]] name = "streamlit" -version = "1.28.1" +version = "1.31.0" description = "A faster way to build and share data apps" optional = false python-versions = ">=3.8, !=3.9.7" files = [ - {file = "streamlit-1.28.1-py2.py3-none-any.whl", hash = "sha256:f41c4e590299279a910c6a874aabc1428eda074c5f9d944403d2e192fce2ebb0"}, - {file = "streamlit-1.28.1.tar.gz", hash = "sha256:cca04f6d95b14b7bc37f0cabaf27504b86af6b4e1af98d73acc80ecdcfbcc492"}, + {file = "streamlit-1.31.0-py2.py3-none-any.whl", hash = "sha256:4d95c4f5d6881f7adebaec14997fa7024bb38853412d1bba9588074d585563f9"}, + {file = "streamlit-1.31.0.tar.gz", hash = "sha256:40d71944e30394612481f80a8bc09e7de40d33b7a472989807467a5299e342ca"}, ] [package.dependencies] @@ -1604,13 +1627,13 @@ blinker = ">=1.0.0,<2" cachetools = ">=4.0,<6" click = ">=7.0,<9" gitpython = ">=3.0.7,<3.1.19 || >3.1.19,<4" -importlib-metadata = ">=1.4,<7" +importlib-metadata = ">=1.4,<8" numpy = ">=1.19.3,<2" packaging = ">=16.8,<24" pandas = ">=1.3.0,<3" pillow = ">=7.1.0,<11" protobuf = ">=3.20,<5" -pyarrow = ">=6.0" +pyarrow = ">=7.0" pydeck = ">=0.8.0b4,<1" python-dateutil = ">=2.7.3,<3" requests = ">=2.27,<3" @@ -1673,13 +1696,13 @@ streamlit = ">=1.2" [[package]] name = "streamlit-card" -version = "0.0.61" +version = "1.0.0" description = "A streamlit component, to make UI cards" optional = false python-versions = ">=3.8" files = [ - {file = "streamlit-card-0.0.61.tar.gz", hash = "sha256:1a5414d2d7f7aa0cdd3f6d5780b6c9a172ac784bad7260707638c9f054f1240d"}, - {file = "streamlit_card-0.0.61-py3-none-any.whl", hash = "sha256:055f59440d3cce6d16f761bd9a861383b0c9bbe56dd73b82a3d62dab24e054e5"}, + {file = "streamlit-card-1.0.0.tar.gz", hash = "sha256:be8b784d8145a4efe3c97c191db7727c96dea97912385957279ec42a7f547674"}, + {file = "streamlit_card-1.0.0-py3-none-any.whl", hash = "sha256:625ab3cd1e5368c7d9c5aeeb52a67786183e0dba940d668c556fbae01149fb3f"}, ] [package.dependencies] @@ -1701,13 +1724,13 @@ streamlit = ">=0.63" [[package]] name = "streamlit-extras" -version = "0.3.5" +version = "0.3.6" description = "A library to discover, try, install and share Streamlit extras" optional = false python-versions = ">=3.8, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*" files = [ - {file = "streamlit_extras-0.3.5-py3-none-any.whl", hash = "sha256:75fa649d16c7724d6f97362f4784083b73d315bdb963a7b2f7a056bd6951af1b"}, - {file = "streamlit_extras-0.3.5.tar.gz", hash = "sha256:1986a5a93e3db46c5305dc1c058b0811c7cab365852acd71d32ace77ff50c8f3"}, + {file = "streamlit_extras-0.3.6-py3-none-any.whl", hash = "sha256:1fd02777528bf12016b6674fcec16baa4c11c2dc60ff9970619aa4f1b0a64dc2"}, + {file = "streamlit_extras-0.3.6.tar.gz", hash = "sha256:01fe8247f7b1d6623574476d0c422840c67d936a79969f34ed09243788cda0c5"}, ] [package.dependencies] @@ -1777,13 +1800,13 @@ streamlit = ">=1.2" [[package]] name = "streamlit-keyup" -version = "0.2.0" +version = "0.2.2" description = "Text input that renders on keyup" optional = false python-versions = ">=3.7" files = [ - {file = "streamlit-keyup-0.2.0.tar.gz", hash = "sha256:5a38037af547163566eff9fec0ee17a7e3556e4bf99b68d44327c726b8ea85b3"}, - {file = "streamlit_keyup-0.2.0-py3-none-any.whl", hash = "sha256:7a187a40c3a95e3fea71be08e96e24c92c7054914e35c5bec3071be46f8a498e"}, + {file = "streamlit-keyup-0.2.2.tar.gz", hash = "sha256:0dbe9548ed1763c7cd151feeec465136d7f9c9566d1df6e820db9c3967f95cc0"}, + {file = "streamlit_keyup-0.2.2-py3-none-any.whl", hash = "sha256:490ccb7e8aeddfc7320ea5aded1eb9e17d59a4538280a9ea92681317c942ff42"}, ] [package.dependencies] @@ -1806,17 +1829,17 @@ streamlit = ">=0.63" [[package]] name = "streamlit-vertical-slider" -version = "1.0.2" +version = "2.5.5" description = "Creates a customizable vertical slider" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "streamlit_vertical_slider-1.0.2-py3-none-any.whl", hash = "sha256:ab727cd5c1799c1d9a19c6201ff2a9bcda08222c849c5670ad7a0d994c9fdcdc"}, - {file = "streamlit_vertical_slider-1.0.2.tar.gz", hash = "sha256:6eaee79a397341eee6ec7862b77d27d548d2bdd126812fd811f831bd4d561f48"}, + {file = "streamlit_vertical_slider-2.5.5-py3-none-any.whl", hash = "sha256:8182e861444fcd69e05c05e7109a636d459560c249f1addf78b58e525a719cb6"}, + {file = "streamlit_vertical_slider-2.5.5.tar.gz", hash = "sha256:d6854cf81a606f5c021df2037d2c49036df2d03ce5082a5227a2acca8322ca74"}, ] [package.dependencies] -streamlit = ">=0.63" +streamlit = ">=1.22.0" [[package]] name = "tabulate" @@ -1859,55 +1882,55 @@ files = [ [[package]] name = "toolz" -version = "0.12.0" +version = "0.12.1" description = "List processing tools and functional utilities" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" files = [ - {file = "toolz-0.12.0-py3-none-any.whl", hash = "sha256:2059bd4148deb1884bb0eb770a3cde70e7f954cfbbdc2285f1f2de01fd21eb6f"}, - {file = "toolz-0.12.0.tar.gz", hash = "sha256:88c570861c440ee3f2f6037c4654613228ff40c93a6c25e0eba70d17282c6194"}, + {file = "toolz-0.12.1-py3-none-any.whl", hash = "sha256:d22731364c07d72eea0a0ad45bafb2c2937ab6fd38a3507bf55eae8744aa7d85"}, + {file = "toolz-0.12.1.tar.gz", hash = "sha256:ecca342664893f177a13dac0e6b41cbd8ac25a358e5f215316d43e2100224f4d"}, ] [[package]] name = "tornado" -version = "6.3.3" +version = "6.4" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." optional = false python-versions = ">= 3.8" files = [ - {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:502fba735c84450974fec147340016ad928d29f1e91f49be168c0a4c18181e1d"}, - {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:805d507b1f588320c26f7f097108eb4023bbaa984d63176d1652e184ba24270a"}, - {file = "tornado-6.3.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bd19ca6c16882e4d37368e0152f99c099bad93e0950ce55e71daed74045908f"}, - {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ac51f42808cca9b3613f51ffe2a965c8525cb1b00b7b2d56828b8045354f76a"}, - {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71a8db65160a3c55d61839b7302a9a400074c9c753040455494e2af74e2501f2"}, - {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:ceb917a50cd35882b57600709dd5421a418c29ddc852da8bcdab1f0db33406b0"}, - {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:7d01abc57ea0dbb51ddfed477dfe22719d376119844e33c661d873bf9c0e4a16"}, - {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:9dc4444c0defcd3929d5c1eb5706cbe1b116e762ff3e0deca8b715d14bf6ec17"}, - {file = "tornado-6.3.3-cp38-abi3-win32.whl", hash = "sha256:65ceca9500383fbdf33a98c0087cb975b2ef3bfb874cb35b8de8740cf7f41bd3"}, - {file = "tornado-6.3.3-cp38-abi3-win_amd64.whl", hash = "sha256:22d3c2fa10b5793da13c807e6fc38ff49a4f6e1e3868b0a6f4164768bb8e20f5"}, - {file = "tornado-6.3.3.tar.gz", hash = "sha256:e7d8db41c0181c80d76c982aacc442c0783a2c54d6400fe028954201a2e032fe"}, + {file = "tornado-6.4-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0"}, + {file = "tornado-6.4-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7894c581ecdcf91666a0912f18ce5e757213999e183ebfc2c3fdbf4d5bd764e"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e43bc2e5370a6a8e413e1e1cd0c91bedc5bd62a74a532371042a18ef19e10579"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0251554cdd50b4b44362f73ad5ba7126fc5b2c2895cc62b14a1c2d7ea32f212"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fd03192e287fbd0899dd8f81c6fb9cbbc69194d2074b38f384cb6fa72b80e9c2"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:88b84956273fbd73420e6d4b8d5ccbe913c65d31351b4c004ae362eba06e1f78"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:71ddfc23a0e03ef2df1c1397d859868d158c8276a0603b96cf86892bff58149f"}, + {file = "tornado-6.4-cp38-abi3-win32.whl", hash = "sha256:6f8a6c77900f5ae93d8b4ae1196472d0ccc2775cc1dfdc9e7727889145c45052"}, + {file = "tornado-6.4-cp38-abi3-win_amd64.whl", hash = "sha256:10aeaa8006333433da48dec9fe417877f8bcc21f48dda8d661ae79da357b2a63"}, + {file = "tornado-6.4.tar.gz", hash = "sha256:72291fa6e6bc84e626589f1c29d90a5a6d593ef5ae68052ee2ef000dfd273dee"}, ] [[package]] name = "typing-extensions" -version = "4.8.0" +version = "4.9.0" description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, - {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, + {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, + {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, ] [[package]] name = "tzdata" -version = "2023.3" +version = "2023.4" description = "Provider of IANA time zone data" optional = false python-versions = ">=2" files = [ - {file = "tzdata-2023.3-py2.py3-none-any.whl", hash = "sha256:7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda"}, - {file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"}, + {file = "tzdata-2023.4-py2.py3-none-any.whl", hash = "sha256:aa3ace4329eeacda5b7beb7ea08ece826c28d761cda36e747cfbf97996d39bf3"}, + {file = "tzdata-2023.4.tar.gz", hash = "sha256:dd54c94f294765522c77399649b4fefd95522479a664a0cec87f41bebc6148c9"}, ] [[package]] @@ -1929,17 +1952,18 @@ devenv = ["check-manifest", "pytest (>=4.3)", "pytest-cov", "pytest-mock (>=3.3) [[package]] name = "urllib3" -version = "2.1.0" +version = "2.2.0" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.1.0-py3-none-any.whl", hash = "sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3"}, - {file = "urllib3-2.1.0.tar.gz", hash = "sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54"}, + {file = "urllib3-2.2.0-py3-none-any.whl", hash = "sha256:ce3711610ddce217e6d113a2732fafad960a03fd0318c91faa79481e35c11224"}, + {file = "urllib3-2.2.0.tar.gz", hash = "sha256:051d961ad0c62a94e50ecf1af379c3aba230c66c710493493560c0c223c49f20"}, ] [package.extras] brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +h2 = ["h2 (>=4,<5)"] socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] zstd = ["zstandard (>=0.18.0)"] @@ -1967,38 +1991,40 @@ tooling-extras = ["pyaml (>=23.7.0)", "pypandoc-binary (>=1.11)", "pytest (>=7.4 [[package]] name = "watchdog" -version = "3.0.0" +version = "4.0.0" description = "Filesystem events monitoring" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "watchdog-3.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:336adfc6f5cc4e037d52db31194f7581ff744b67382eb6021c868322e32eef41"}, - {file = "watchdog-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a70a8dcde91be523c35b2bf96196edc5730edb347e374c7de7cd20c43ed95397"}, - {file = "watchdog-3.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:adfdeab2da79ea2f76f87eb42a3ab1966a5313e5a69a0213a3cc06ef692b0e96"}, - {file = "watchdog-3.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2b57a1e730af3156d13b7fdddfc23dea6487fceca29fc75c5a868beed29177ae"}, - {file = "watchdog-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7ade88d0d778b1b222adebcc0927428f883db07017618a5e684fd03b83342bd9"}, - {file = "watchdog-3.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7e447d172af52ad204d19982739aa2346245cc5ba6f579d16dac4bfec226d2e7"}, - {file = "watchdog-3.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:9fac43a7466eb73e64a9940ac9ed6369baa39b3bf221ae23493a9ec4d0022674"}, - {file = "watchdog-3.0.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8ae9cda41fa114e28faf86cb137d751a17ffd0316d1c34ccf2235e8a84365c7f"}, - {file = "watchdog-3.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:25f70b4aa53bd743729c7475d7ec41093a580528b100e9a8c5b5efe8899592fc"}, - {file = "watchdog-3.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4f94069eb16657d2c6faada4624c39464f65c05606af50bb7902e036e3219be3"}, - {file = "watchdog-3.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7c5f84b5194c24dd573fa6472685b2a27cc5a17fe5f7b6fd40345378ca6812e3"}, - {file = "watchdog-3.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3aa7f6a12e831ddfe78cdd4f8996af9cf334fd6346531b16cec61c3b3c0d8da0"}, - {file = "watchdog-3.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:233b5817932685d39a7896b1090353fc8efc1ef99c9c054e46c8002561252fb8"}, - {file = "watchdog-3.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:13bbbb462ee42ec3c5723e1205be8ced776f05b100e4737518c67c8325cf6100"}, - {file = "watchdog-3.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:8f3ceecd20d71067c7fd4c9e832d4e22584318983cabc013dbf3f70ea95de346"}, - {file = "watchdog-3.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c9d8c8ec7efb887333cf71e328e39cffbf771d8f8f95d308ea4125bf5f90ba64"}, - {file = "watchdog-3.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:0e06ab8858a76e1219e68c7573dfeba9dd1c0219476c5a44d5333b01d7e1743a"}, - {file = "watchdog-3.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:d00e6be486affb5781468457b21a6cbe848c33ef43f9ea4a73b4882e5f188a44"}, - {file = "watchdog-3.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:c07253088265c363d1ddf4b3cdb808d59a0468ecd017770ed716991620b8f77a"}, - {file = "watchdog-3.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:5113334cf8cf0ac8cd45e1f8309a603291b614191c9add34d33075727a967709"}, - {file = "watchdog-3.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:51f90f73b4697bac9c9a78394c3acbbd331ccd3655c11be1a15ae6fe289a8c83"}, - {file = "watchdog-3.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:ba07e92756c97e3aca0912b5cbc4e5ad802f4557212788e72a72a47ff376950d"}, - {file = "watchdog-3.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:d429c2430c93b7903914e4db9a966c7f2b068dd2ebdd2fa9b9ce094c7d459f33"}, - {file = "watchdog-3.0.0-py3-none-win32.whl", hash = "sha256:3ed7c71a9dccfe838c2f0b6314ed0d9b22e77d268c67e015450a29036a81f60f"}, - {file = "watchdog-3.0.0-py3-none-win_amd64.whl", hash = "sha256:4c9956d27be0bb08fc5f30d9d0179a855436e655f046d288e2bcc11adfae893c"}, - {file = "watchdog-3.0.0-py3-none-win_ia64.whl", hash = "sha256:5d9f3a10e02d7371cd929b5d8f11e87d4bad890212ed3901f9b4d68767bee759"}, - {file = "watchdog-3.0.0.tar.gz", hash = "sha256:4d98a320595da7a7c5a18fc48cb633c2e73cda78f93cac2ef42d42bf609a33f9"}, + {file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:39cb34b1f1afbf23e9562501673e7146777efe95da24fab5707b88f7fb11649b"}, + {file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c522392acc5e962bcac3b22b9592493ffd06d1fc5d755954e6be9f4990de932b"}, + {file = "watchdog-4.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6c47bdd680009b11c9ac382163e05ca43baf4127954c5f6d0250e7d772d2b80c"}, + {file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8350d4055505412a426b6ad8c521bc7d367d1637a762c70fdd93a3a0d595990b"}, + {file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c17d98799f32e3f55f181f19dd2021d762eb38fdd381b4a748b9f5a36738e935"}, + {file = "watchdog-4.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4986db5e8880b0e6b7cd52ba36255d4793bf5cdc95bd6264806c233173b1ec0b"}, + {file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:11e12fafb13372e18ca1bbf12d50f593e7280646687463dd47730fd4f4d5d257"}, + {file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5369136a6474678e02426bd984466343924d1df8e2fd94a9b443cb7e3aa20d19"}, + {file = "watchdog-4.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76ad8484379695f3fe46228962017a7e1337e9acadafed67eb20aabb175df98b"}, + {file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:45cc09cc4c3b43fb10b59ef4d07318d9a3ecdbff03abd2e36e77b6dd9f9a5c85"}, + {file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eed82cdf79cd7f0232e2fdc1ad05b06a5e102a43e331f7d041e5f0e0a34a51c4"}, + {file = "watchdog-4.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ba30a896166f0fee83183cec913298151b73164160d965af2e93a20bbd2ab605"}, + {file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d18d7f18a47de6863cd480734613502904611730f8def45fc52a5d97503e5101"}, + {file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2895bf0518361a9728773083908801a376743bcc37dfa252b801af8fd281b1ca"}, + {file = "watchdog-4.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87e9df830022488e235dd601478c15ad73a0389628588ba0b028cb74eb72fed8"}, + {file = "watchdog-4.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6e949a8a94186bced05b6508faa61b7adacc911115664ccb1923b9ad1f1ccf7b"}, + {file = "watchdog-4.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6a4db54edea37d1058b08947c789a2354ee02972ed5d1e0dca9b0b820f4c7f92"}, + {file = "watchdog-4.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d31481ccf4694a8416b681544c23bd271f5a123162ab603c7d7d2dd7dd901a07"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:8fec441f5adcf81dd240a5fe78e3d83767999771630b5ddfc5867827a34fa3d3"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:6a9c71a0b02985b4b0b6d14b875a6c86ddea2fdbebd0c9a720a806a8bbffc69f"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:557ba04c816d23ce98a06e70af6abaa0485f6d94994ec78a42b05d1c03dcbd50"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:d0f9bd1fd919134d459d8abf954f63886745f4660ef66480b9d753a7c9d40927"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f9b2fdca47dc855516b2d66eef3c39f2672cbf7e7a42e7e67ad2cbfcd6ba107d"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:73c7a935e62033bd5e8f0da33a4dcb763da2361921a69a5a95aaf6c93aa03a87"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6a80d5cae8c265842c7419c560b9961561556c4361b297b4c431903f8c33b269"}, + {file = "watchdog-4.0.0-py3-none-win32.whl", hash = "sha256:8f9a542c979df62098ae9c58b19e03ad3df1c9d8c6895d96c0d51da17b243b1c"}, + {file = "watchdog-4.0.0-py3-none-win_amd64.whl", hash = "sha256:f970663fa4f7e80401a7b0cbeec00fa801bf0287d93d48368fc3e6fa32716245"}, + {file = "watchdog-4.0.0-py3-none-win_ia64.whl", hash = "sha256:9a03e16e55465177d416699331b0f3564138f1807ecc5f2de9d55d8f188d08c7"}, + {file = "watchdog-4.0.0.tar.gz", hash = "sha256:e3e7065cbdabe6183ab82199d7a4f6b3ba0a438c5a512a68559846ccb76a78ec"}, ] [package.extras] diff --git a/pyproject.toml b/pyproject.toml index 59ce351..400dadd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,3 +22,13 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" +[tool.flake8] +max-line-length = 80 +exclude = [".git", "__pycache__", "dist"] +max-complexity = 10 + +[tool.isort] +atomic = true +profile = "black" +line_length = 80 +skip_gitignore = true \ No newline at end of file From 33dab6d617efda269731edb369a2eacd5f9d6a95 Mon Sep 17 00:00:00 2001 From: d116626 Date: Thu, 8 Feb 2024 00:39:53 -0300 Subject: [PATCH 54/64] fix: better layout --- app/Home.py | 11 ++--- app/utils/utils.py | 106 ++++++++++++++++++++++----------------------- 2 files changed, 59 insertions(+), 58 deletions(-) diff --git a/app/Home.py b/app/Home.py index 5360e35..605687e 100644 --- a/app/Home.py +++ b/app/Home.py @@ -5,25 +5,25 @@ from streamlit_folium import st_folium # noqa from utils.utils import ( create_map, + display_agrid_table, display_camera_details, - get_agrid_table, get_cameras, get_filted_cameras_objects, - treat_data, get_icon_color, + treat_data, ) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) DEFAULT_OBJECT = "water_level" -st.markdown("# Identificações | Vision AI") +st.markdown("## Identificações | Vision AI") # get cameras cameras = get_cameras( page_size=3000, only_active=False, - use_mock_data=False, + use_mock_data=True, update_mock_data=False, ) cameras_attr, cameras_identifications = treat_data(cameras) @@ -95,7 +95,8 @@ ) aggrid_table = aggrid_table[selected_cols] # aggrid_table = aggrid_table[selected_cols] - selected_row = get_agrid_table(aggrid_table) # noqa + st.markdown("### 📈 Identificações") + selected_row = display_agrid_table(aggrid_table) # noqa with col2: if selected_row: diff --git a/app/utils/utils.py b/app/utils/utils.py index c614b56..40d1cec 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -220,56 +220,6 @@ def get_filted_cameras_objects( ) -def display_camera_details(row, cameras_identifications): - camera_id = row.name - image_url = row["snapshot_url"] - camera_name = row["name"] - 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}") - st.markdown(f"Data Snapshot: {snapshot_timestamp}") - - # get cameras_attr url from selected row by id - if image_url is None: - st.markdown("Falha ao capturar o snapshot da câmera.") - else: - st.markdown( - f""" """, # noqa - unsafe_allow_html=True, - ) - st.markdown("



", unsafe_allow_html=True) - - st.markdown("### 📃 Detalhes") - - camera_identifications = cameras_identifications.loc[camera_id] # noqa - camera_identifications = camera_identifications.reset_index(drop=True) - - camera_identifications[""] = camera_identifications["label"].apply( - lambda x: get_icon_color(x, type="emoji") - ) - camera_identifications.index = camera_identifications[""] - - camera_identifications["timestamp"] = camera_identifications[ - "timestamp" - ].apply( # noqa - lambda x: x.strftime("%d/%m/%Y %H:%M") - ) - rename_columns = { - "timestamp": "Data Identificação", - "object": "Identificador", - "label": "Label", - "label_explanation": "Descrição", - } - camera_identifications = camera_identifications[list(rename_columns.keys())] # noqa - - camera_identifications = camera_identifications.rename( - columns=rename_columns - ) # noqa - - st.dataframe(camera_identifications) - - def get_icon_color(label: Union[bool, None], type=None): if label in [ "major", @@ -339,7 +289,57 @@ def create_map(chart_data, location=None): return m -def get_agrid_table(table): +def display_camera_details(row, cameras_identifications): + camera_id = row.name + image_url = row["snapshot_url"] + camera_name = row["name"] + 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}") + # st.markdown(f"Data Snapshot: {snapshot_timestamp}") + + # get cameras_attr url from selected row by id + if image_url is None: + st.markdown("Falha ao capturar o snapshot da câmera.") + else: + st.markdown( + f""" """, # noqa + unsafe_allow_html=True, + ) + st.markdown("
", unsafe_allow_html=True) + + st.markdown("### 📃 Detalhes") + + camera_identifications = cameras_identifications.loc[camera_id] # noqa + camera_identifications = camera_identifications.reset_index(drop=True) + + camera_identifications[""] = camera_identifications["label"].apply( + lambda x: get_icon_color(x, type="emoji") + ) + camera_identifications.index = camera_identifications[""] + + camera_identifications["timestamp"] = camera_identifications[ + "timestamp" + ].apply( # noqa + lambda x: x.strftime("%d/%m/%Y %H:%M") + ) + rename_columns = { + "timestamp": "Data Identificação", + "object": "Identificador", + "label": "Label", + "label_explanation": "Descrição", + } + camera_identifications = camera_identifications[list(rename_columns.keys())] # noqa + + camera_identifications = camera_identifications.rename( + columns=rename_columns + ) # noqa + + st.dataframe(camera_identifications) + + +def display_agrid_table(table): gb = GridOptionsBuilder.from_dataframe(table, index=True) # noqa gb.configure_column("index", header_name="", pinned="left") @@ -363,7 +363,7 @@ def get_agrid_table(table): wrapText=True, hide=True, ) - + gb.configure_side_bar() gb.configure_selection("single", use_checkbox=False) gb.configure_grid_options(enableCellTextSelection=True) # gb.configure_pagination(paginationAutoPageSize=False, paginationPageSize=20) # noqa @@ -375,7 +375,7 @@ def get_agrid_table(table): update_mode=GridUpdateMode.MODEL_CHANGED | GridUpdateMode.COLUMN_RESIZED, # noqa # fit_columns_on_grid_load=True, - height=600, + height=413, custom_css={ "#gridToolBar": { "padding-bottom": "0px !important", From 8599a18fa3bca1cb16bd1c87d9d087b021326c84 Mon Sep 17 00:00:00 2001 From: d116626 Date: Thu, 8 Feb 2024 02:34:19 -0300 Subject: [PATCH 55/64] fix: set use_mock_data to false --- app/Home.py | 2 +- app/utils/utils.py | 2 +- data/temp/mock_api_data.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Home.py b/app/Home.py index 605687e..4740ff3 100644 --- a/app/Home.py +++ b/app/Home.py @@ -23,7 +23,7 @@ cameras = get_cameras( page_size=3000, only_active=False, - use_mock_data=True, + use_mock_data=False, update_mock_data=False, ) cameras_attr, cameras_identifications = treat_data(cameras) diff --git a/app/utils/utils.py b/app/utils/utils.py index 40d1cec..4a5ecef 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -59,7 +59,7 @@ def callback_data(): # ) -@st.cache_data(ttl=60 * 5, persist=False) +@st.cache_data(ttl=60 * 2, persist=False) def get_cameras( only_active=True, use_mock_data=False, diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index eda672d..eaf1bc3 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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-07T03:19:00.956238+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:55.193077+00:00", "label": "null", "label_explanation": "The image is of a busy street in Rio de Janeiro at night. There is a bridge on the right side of the image and a large tree in the middle of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:54.526787+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:54.023256+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:54.725116+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:54.309830+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:53.297201+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:00.717037+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is unclear how deep the water is, but it is likely that it would be difficult for vehicles to pass through."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:00.477467+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:01.143204+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:01.437606+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a large tree. There is a large amount of water on the road and it is unclear how deep the water is. The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:10.346811+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."}]}, {"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-07T03:19:04.217059+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:57.309687+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane. The tree is large and appears to have been there for some time, as there are no visible signs of recent activity."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:58.212675+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are two cars on the road, one parked on the side of the road and the other driving in the right lane. There is a tree on the side of the road and a building in the background."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:57.508858+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the left lane. There are no visible signs of flooding or other hazards."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:57.739891+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a hazard to drivers."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:58.008794+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions."}]}, {"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-07T03:18:50.601494+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:55.541236+00:00", "label": "low_indifferent", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:50.592005+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there are no cars visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:55.791860+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.989561+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:56.199201+00:00", "label": "null", "label_explanation": "The image shows a road with a large tree fallen across it. There are no cars visible in the image and the road is completely blocked."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:58.394466+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:56.251283+00:00", "label": "null", "label_explanation": "A night-time image of a street corner in Rio de Janeiro. There are no cars on the road, just two motorbikes. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.020574+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:52.993581+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:48.029626+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:55.729425+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}]}, {"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": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "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}]}, {"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-07T03:18:58.513792+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:19:50.027624+00:00", "label": "poor", "label_explanation": "The image is slightly blurred, but it is still possible to see the details of the scene."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:49.442295+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:49.243357+00:00", "label": "partially_blocked", "label_explanation": "The road is not completely blocked, but there is a large puddle of water that could cause traffic to slow down."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:50.224527+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are cars driving on the road and people walking on the sidewalks. The street is lined with trees and buildings."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:49.774890+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:03.876143+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:49.955285+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:50.174541+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:52.997201+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:55.752864+00:00", "label": "null", "label_explanation": "A yellow taxi drives on a city street at night. There is a tall building on the left and a row of parked cars on the right. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:49.743298+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:02.714318+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:46.043816+00:00", "label": "partially_blocked", "label_explanation": "There is a metal fence blocking part of the sidewalk and a parked car partially blocking the right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:46.391753+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:46.639594+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:55.540593+00:00", "label": "null", "label_explanation": "A photo of a nearly empty street with a fence on the left and a row of parked cars on the right. In the background, there is a tall building with red and blue lights shining on its facade. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:48.026094+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:53.177073+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:31.562000+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a police car parked on the side of the road with its lights on. There are two orange cones in the right lane partially blocking it. There is a tree and some foliage on the left side of the image. The road is made of asphalt and is in good condition. There are street lights along the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:30.734504+00:00", "label": "partially_blocked", "label_explanation": "There are two orange cones partially blocking the right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:30.929632+00:00", "label": "false", "label_explanation": "There is a small puddle of water on the road, but it is not significant and does not impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:31.139868+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:31.343355+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a risk 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-07T03:19:55.534192+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:36.975938+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:37.272358+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire road and is making it difficult for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:38.078060+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There is a large tree that has fallen across the road and is blocking both lanes of traffic. There is also a large amount of water on the road. The water is covering the entire road and is making it difficult for vehicles to pass. There is a green traffic light in the foreground and a yellow traffic light in the background. There are buildings on both sides of the street. The buildings are tall and made of concrete. There are no people in the image."}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:37.790811+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-07T03:19:45.734791+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:32.488823+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:33.200537+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:33.489049+00:00", "label": "null", "label_explanation": "The image is of a road at night. There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road. There is a bus and a car on the road. The bus is on the left side of the road and the car is on the right side of the road. The bus is stopped and the car is moving."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:32.699804+00:00", "label": "puddle", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:32.979177+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:56.278783+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:40.800548+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions or blockades."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:41.019114+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:41.816295+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with trees on either side. There is a sidewalk on one side of the road and a bike lane on the other. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:41.311258+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:41.517053+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-07T03:19:52.871725+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:05:54.327012+00:00", "label": "partially_blocked", "label_explanation": "There is a yellow taxi partially blocking the road, but it is still possible for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:05:54.516092+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "image_description", "timestamp": "2024-02-07T03:05:55.204468+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a yellow taxi partially blocking the road, but it is still possible for vehicles to pass. There are some puddles on the road, but they are not significant and do not hinder traffic. The image is clear with no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:05:54.733745+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:05:54.934330+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-07T03:19:59.016832+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "image_condition", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:41.352006+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:41.163291+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:42.141087+00:00", "label": "null", "label_explanation": "The image shows a nighttime view of a street in Rio de Janeiro. The street is well-lit and there are no people or cars visible. The road is in good condition and there are no visible signs of damage."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:41.860073+00:00", "label": "clean", "label_explanation": "The image is clear with no visible blurring or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:41.578464+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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-07T03:19:50.829456+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:36.829826+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire right lane and part of the left lane. There are no visible signs of flooding."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:37.433498+00:00", "label": "null", "label_explanation": "The image shows a road at night. There is a large tree that has fallen across the road and is blocking both lanes of traffic. There is a large amount of water on the road and it is covering the entire right lane and part of the left lane. There are no visible signs of flooding. The image is clear and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:36.617367+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:18.627935+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry with no water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:37.226589+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions."}]}, {"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-07T03:19:50.532793+00:00", "objects": ["image_description", "water_in_road", "image_condition", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:43.734809+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 the buildings are dark. There are no cars on the street."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:44.245332+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:43.948888+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:44.444867+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:43.547789+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no visible water."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": 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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:58.247542+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:49.820964+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a fallen tree blocking the road and a large puddle of water on the road. There is a street sign on the right side of the image."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:48.840033+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:49.214577+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:49.608119+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:49.436360+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:06.329643+00:00", "objects": ["road_blockade", "water_level", "image_condition", "water_in_road", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:53.180287+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:53.753222+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:54.008817+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:53.482122+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:54.246280+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection in Rio de Janeiro. The street is well-lit and there is moderate traffic. There are a few trees and buildings in the background."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T02:53:03.959551+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T02:53:27.819798+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road. It is not completely blocking the road, but it is large enough to cause traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-07T02:53:28.589254+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There are a few trees on either side of the street. The street is lit by streetlights. There is a green traffic light on the left side of the intersection and a red traffic light on the right side. There is a large puddle of water in the middle of the intersection."}, {"object": "water_in_road", "timestamp": "2024-02-07T02:53:28.243418+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. It is not completely blocking the road, but it is large enough to cause traffic disruptions."}, {"object": "image_condition", "timestamp": "2024-02-07T02:53:28.029170+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:18:49.289170+00:00", "objects": ["road_blockade", "water_level", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:55.234471+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:01.036372+00:00", "label": "low_indifferent", "label_explanation": "The road is dry with no water."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:55.863011+00:00", "label": "null", "label_explanation": "The image is a night view of a road. The road is lit by a street lamp. There are trees on either side of the road. The road is empty except for a single car that is driving in the right lane."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:55.645376+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.459346+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:04.169349+00:00", "objects": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:53.729617+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:54.205425+00:00", "label": "null", "label_explanation": "A fallen tree blocks a road. The road is surrounded by trees and shrubs."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:53.229220+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the entire road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:53.475160+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:53.942124+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-07T03:18:50.477123+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:40.983723+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:41.382114+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire road and is up to the wheel of a passenger vehicle. There are no visible signs of flooding."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:41.825779+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-07T03:08:19.412136+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:44.439246+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. There is also a large amount of water on the road. The water is covering the entire road and is up to the wheel of a passenger vehicle. There are no visible signs of flooding."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:19:01.223384+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:56.199377+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with a concrete wall on one side and trees on the other. There are no cars on the road and the street lights are on. The road is dry and there are no visible signs of water."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:50.113308+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:52.993283+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.937076+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or blurriness."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:55.734949+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["road_blockade", "image_description", "image_condition", "water_in_road", "water_level"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:46.808790+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:37.662548+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:37.937732+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:38.146962+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:38.358922+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:38.637642+00:00", "label": "null", "label_explanation": "A motorcycle is driving down a narrow street with yellow lines marking the center. There are buildings and graffiti on either side of the street. A tree is visible in the background."}]}, {"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-07T03:19:44.041165+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:39.032514+00:00", "label": "partially_blocked", "label_explanation": "There is a bus partially blocking the road, but vehicles can still pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:39.233132+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:39.442937+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": "image_condition", "timestamp": "2024-02-07T03:20:39.627252+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:39.844563+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There is a bus partially blocking the road, but vehicles can still pass. There are some puddles on the road, but they are not significant. The traffic lights are on and there are cars and people crossing the street."}]}, {"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-07T03:19:44.707887+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:02.814895+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:03.022532+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:03.802749+00:00", "label": "null", "label_explanation": "A night view of a long, straight road with trees on either side. There is a fence to the left of the road and buildings to the right. The road is empty with no cars or people."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:03.329465+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:03.545956+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or obstructions."}]}, {"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-07T03:19:43.804621+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:34.930108+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:35.143077+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:35.623366+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:35.388578+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:35.849817+00:00", "label": "null", "label_explanation": "The image shows a night scene of a road intersection. There is a fallen tree blocking the road, and there are large puddles of water on the road. The street lights are on, and there are cars and motorbikes 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-07T03:19:47.016988+00:00", "objects": ["image_condition", "water_level", "road_blockade", "water_in_road", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:11:38.554805+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:11:38.302617+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:11:37.781104+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the entire road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:11:38.056161+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:11:38.777106+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road. There is a large puddle of water on the road. The image is clear with no interference."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:48.703318+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:16:44.956129+00:00", "label": "null", "label_explanation": "The image shows a fallen tree blocking the road. There is a large puddle of water on the road. The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.918507+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:16:44.010915+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:57.394313+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:16:44.316371+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:09.078841+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:52.699301+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 large tree that has fallen across the road, blocking traffic. There is also a large puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:51.177275+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:51.561522+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:52.469224+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:52.247797+00:00", "label": "puddle", "label_explanation": "The water on the road is at a level that is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:18:53.172694+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:53.138584+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a flooded area."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:53.873178+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:53.682931+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:56.022875+00:00", "label": "null", "label_explanation": "A dark, poorly lit image of a flooded underpass. The water is murky and covers the entire road. There is a metal fence on the left side of the image and a concrete wall on the right side. There is a street lamp in the background."}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:18:53.038020+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:37.929653+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:37.696101+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:38.742353+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is also a significant amount of water on the road, but it is not deep enough to be considered flooding. The image is clear and not blurry."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:38.169475+00:00", "label": "puddle", "label_explanation": "The water on the road is at the level of the tires of a parked car."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:38.516749+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:06.927667+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:57.019467+00:00", "label": "null", "label_explanation": "A night view of a street with cars parked on either side. There are trees on both sides of the street and a few street lights. There is a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.049664+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.245258+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:56.750550+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.516607+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}]}, {"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-07T03:18:55.800310+00:00", "objects": ["road_blockade", "water_level", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:55.571894+00:00", "label": "free", "label_explanation": "No obstructions blocking the road. Traffic can flow freely."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:56.455107+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:55.790377+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:56.709005+00:00", "label": "null", "label_explanation": "A night view of a wide, empty road with no cars. There is a traffic light in the center of the image and a street sign on the right. The road is lined with trees and buildings."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.162193+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:24.716592+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:17:12.513052+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. There is also a large amount of water on the road. The water is more than half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:17:11.441291+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:12.177681+00:00", "label": "true", "label_explanation": "The image shows a large amount of water on the road. The water is more than half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:11.940917+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:14:09.863188+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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-07T03:19:38.033561+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:20.746947+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:21.593046+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:20.954016+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:21.860994+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 the buildings are dark. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is also a large puddle of water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:21.223821+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:30.055126+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:54.940223+00:00", "label": "false", "label_explanation": "There is no presence of water puddles on the road surface, the road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:54.702338+00:00", "label": "free", "label_explanation": "There is no presence of road blockades, the road is completely clear with no signs of obstructions or water puddles."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:55.193446+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry, with no signs of water accumulation."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:56.027611+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There are a few cars parked on the side of the road, and the street lights are on. The road is empty, with no people or other vehicles visible."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.393687+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible obstructions or distortions. The lighting is adequate, and the colors are accurate."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:19:27.309237+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:58.553248+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:58.754250+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:59.251619+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:59.485964+00:00", "label": "null", "label_explanation": "The image is of a street with a tree in the center median. There are street lights on either side of the street and buildings and houses can be seen in the background. There is a red truck in the distance."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:59.033847+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}]}, {"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-07T03:19:20.278657+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.301140+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.583618+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:57.027807+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:57.247428+00:00", "label": "null", "label_explanation": "A tree has fallen across a road at night. There is a gas station on the right side of the road. There is a green traffic sign on the left side of the road. There are trees and bushes on both sides of the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:56.845159+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:31.425473+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:06.025310+00:00", "label": "partially_blocked", "label_explanation": "There is a bus partially blocking the road, but it is still possible for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:06.299465+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:06.819331+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:06.530810+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a risk to drivers."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:07.006480+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a bus driving on the road and there are some cars parked on the side of the road. There are also some trees and buildings in the background."}]}, {"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-07T03:19:32.724874+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:19:57.842726+00:00", "label": "null", "label_explanation": "A night-time image of a nearly empty road with a bus and a few cars parked on the side. There are trees and buildings on either side of the road, and the street lights are on. There is a bus stop on the right side of the image."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.954640+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:57.141201+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:57.636909+00:00", "label": "clean", "label_explanation": "The image is clear and has no blurring or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:57.350349+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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-06T17:07:37.505013+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "image_condition", "water_level"], "identifications": [{"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}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:19:28.586663+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:03.210110+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:03.497112+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.013410+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:04.278119+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a fallen tree blocking the road and a large puddle of water on the road. There are no cars on the road. There are people sitting at tables outside a restaurant."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:03.706110+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:19.114153+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:07.538570+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:08.240183+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:08.576948+00:00", "label": "null", "label_explanation": "A night-time image of a street with a dog walking in the middle. There are no cars on the street and the street lights are on. The street is lined with buildings and there is a yellow traffic sign on the right side of the image."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:08.037458+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:07.808467+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:24.281712+00:00", "objects": ["water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:58.154453+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is relatively low, with some puddles but no significant accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:57.892340+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road, but it is not deep and does not cover more than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:58.416843+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible blurring or obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:58.609018+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are cars parked on the side of the road and a few people walking around. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:57.688956+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}]}, {"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-07T03:19:16.387320+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:59.892028+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:00.137112+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:00.391325+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:00.609965+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:00.848733+00:00", "label": "null", "label_explanation": "The image shows a road with a large pothole. There is a large puddle of water on the road. The road is completely blocked by the pothole. There are several traffic cones placed around the pothole."}]}, {"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-07T03:19:13.825541+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:16:58.429036+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:05.054382+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.837901+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:04.083459+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:05.255138+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. The road is also flooded and the water is above the level of the wheels of a passenger vehicle."}]}, {"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-07T03:19:27.036233+00:00", "objects": ["water_in_road", "image_condition", "water_level", "road_blockade", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:04.079407+00:00", "label": "true", "label_explanation": "There are small puddles of water on the road, but they are not significant and do not impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.572030+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:04.354116+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.160208+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:04.852233+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are two cars on the road, one white and one yellow. The white car is on the left side of the image, and the yellow car is on the right side. The yellow car is stopped at a red light. There are trees and buildings on either side of the road. The street is lit by streetlights."}]}, {"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-07T03:19:19.014138+00:00", "objects": ["water_in_road", "image_description", "image_condition", "road_blockade", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:57.916507+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:58.690558+00:00", "label": "null", "label_explanation": "At night, a wide avenue with a roundabout is mostly empty. There is a concrete barrier blocking one of the exits of the roundabout. Street lights illuminate the scene."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:58.246419+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:57.686935+00:00", "label": "totally_blocked", "label_explanation": "There is a concrete barrier blocking the road completely."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:58.478580+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:18.929167+00:00", "objects": ["water_level", "road_blockade", "image_condition", "water_in_road", "image_description"], "identifications": [{"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:04.560624+00:00", "label": "partially_blocked", "label_explanation": "Although there is no complete blockage of the road, a large puddle of water covers more than half of the right lane, compromising the safe transit of vehicles."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.834477+00:00", "label": "poor", "label_explanation": "The image is blurry and unclear due to raindrops on the camera lens."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:05.278090+00:00", "label": "true", "label_explanation": "There is a large puddle of water that covers more than half of the right lane."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:05.868168+00:00", "label": "null", "label_explanation": "The image is dark and blurry, with a street scene at night. There are street lights and the headlights of cars visible. The road is wet and there is a large puddle of water on the right lane."}]}, {"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-07T03:19:21.565529+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:32.115296+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 large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road. There is a car approaching the puddle from the left lane."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:31.830452+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:31.120139+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:31.329069+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:25.754952+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is dry and clear."}]}, {"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-07T03:19:30.030385+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:02.642208+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:02.429682+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:03.238465+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:03.507584+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection. There is a fallen tree blocking the road, and there are large puddles of water on the road. The traffic light is green, and there is a motorcycle and a van stopped at the intersection. There are also several cars parked on the side of the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:02.982706+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-07T03:19:16.082361+00:00", "objects": ["water_level", "road_blockade", "image_condition", "water_in_road", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:20:03.831780+00:00", "label": "low_indifferent", "label_explanation": "No flooding is visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:04.880124+00:00", "label": "free", "label_explanation": "No visual elements blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.301006+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:04.534667+00:00", "label": "false", "label_explanation": "No puddles are visible on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:04.069822+00:00", "label": "null", "label_explanation": "The image is clear and shows a road with no visible obstructions or water."}]}, {"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-07T03:19:27.298843+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:58.030590+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:58.275622+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:58.757472+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:59.017949+00:00", "label": "null", "label_explanation": "The image is of a street corner at night. There is a large tree that has fallen across the road, blocking traffic. There is also a large puddle of water on the road. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:24.744634+00:00", "label": "puddle", "label_explanation": "The water is at the level of the bottom of the wheel of a passenger vehicle."}]}, {"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-07T03:19:35.311219+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:08.195512+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:08.749846+00:00", "label": "clean", "label_explanation": "The image is clear with no blurring or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:07.976803+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:08.410588+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:08.982254+00:00", "label": "null", "label_explanation": "A night-time image of a wide, empty road with a crosswalk and a few trees on either side. There is a black car driving on the right side of the road, and two women are standing on the left 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-07T03:19:21.851780+00:00", "objects": ["image_condition", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:06.964758+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:07.358894+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:07.166319+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no visible water."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:07.638167+00:00", "label": "null", "label_explanation": "A night view of a city intersection. There is a white car driving on the road in the foreground, and a park with a statue in the background. The road is lit by streetlights, and the sky is dark."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:06.743777+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}]}, {"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-07T03:19:22.894543+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.423621+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the right side of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.900286+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.189016+00:00", "label": "partially_blocked", "label_explanation": "There is a large tree branch blocking the left lane of the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:57.160846+00:00", "label": "null", "label_explanation": "The image shows a road with a tree branch blocking the left lane. There is a large puddle of water on the right side of the road. The water is at the level of the sidewalk. The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:20.031276+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:55.948747+00:00", "objects": ["road_blockade", "water_level", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:36.292958+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:36.773341+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:37.014832+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:37.221315+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is well-lit and there is moderate traffic. There are a few cars parked on the side of the road and some people are walking around."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:36.488085+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"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-07T03:19:53.127373+00:00", "objects": ["road_blockade", "water_level", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:35.965589+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road, but it does not completely block the road. Vehicles can still pass, but with caution."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:36.242958+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": "image_description", "timestamp": "2024-02-07T03:20:36.862216+00:00", "label": "null", "label_explanation": "A car is driving on a road at night. There is a large puddle of water on the road, but it does not completely block the road. Vehicles can still pass, but with caution. There are trees and buildings on either side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:36.441460+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:36.663137+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-07T03:20:01.566253+00:00", "objects": ["image_condition", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:40.126566+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:39.621368+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:39.886601+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:40.388323+00:00", "label": "null", "label_explanation": "The image is of a street scene at night. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is a street light on the right side of the image and a building on the left. The road is empty, with no cars or pedestrians visible."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:39.408113+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}]}, {"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-07T02:54:10.746959+00:00", "objects": ["water_level", "image_condition", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": "2024-02-07T02:54:29.314225+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-07T02:54:29.008883+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T02:54:29.589737+00:00", "label": "null", "label_explanation": "A night-time image of a street with a fallen tree blocking the road. There is a garbage truck on the right side of the image and a motorcycle driving in the opposite direction on the left side of the image. There are trees and buildings on either side of the street."}, {"object": "road_blockade", "timestamp": "2024-02-07T02:54:28.826891+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}]}, {"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-07T03:19:53.716689+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:20:40.130917+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:39.926100+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:40.336607+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:39.729636+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:40.796016+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection in Rio de Janeiro. The street is lit by streetlights and there are a few cars parked on the side of the road. There is a large pothole in the middle of the intersection."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:20:03.952280+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:40.955481+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a concrete block partially blocking one of the lanes, but vehicles can still pass. There are small puddles of water on the road, but they are not significant. The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:40.249846+00:00", "label": "false", "label_explanation": "There are small puddles of water on the road, but they are not significant."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:40.047448+00:00", "label": "partially_blocked", "label_explanation": "There is a concrete block partially blocking the road, but vehicles can still pass."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:40.463176+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:40.745057+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-07T03:19:52.895068+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_condition", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:32.344464+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:32.115796+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:32.549573+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:32.841607+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:33.055710+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is well-lit and there are a few cars on the road. There are trees on either side of the street and buildings in the background."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:18:50.093396+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "image_condition", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:19:54.052382+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:54.313047+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a fallen tree. There is a car stopped in front of the tree. The road is wet and there is water on the ground."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:53.296242+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:53.809553+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:53.590583+00:00", "label": "puddle", "label_explanation": "The water level on the road is high, but it is not flooding. The water is about halfway up the wheels of the cars."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:18:55.658093+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:55.065985+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:55.751310+00:00", "label": "clean", "label_explanation": "The image is clear and there is no interference."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:55.339767+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is unclear how deep the water is, but it is likely that it would be difficult for vehicles to pass through."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:55.995510+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a large tree. There is a large amount of water on the road and it is unclear how deep the water is. The image is clear and there is no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:14:13.339402+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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-07T03:18:55.956567+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:07.757224+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:08.090919+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:07.545963+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:08.399277+00:00", "label": "null", "label_explanation": "A night view of a road with cars driving on it. There are street lights on either side of the road and a building in the background."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:07.956640+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:09.637297+00:00", "objects": ["road_blockade", "water_level", "water_in_road", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:19:59.071318+00:00", "label": "partially_blocked", "label_explanation": "There is a large tree branch and debris blocking part of the road, but vehicles can still pass."}, {"object": "water_level", "timestamp": "2024-02-07T03:19:59.869390+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not exceed one-fourth of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:59.289287+00:00", "label": "false", "label_explanation": "There are some small puddles of water on the road, but they are not significant."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:59.638306+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:00.085781+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 road is partially blocked by a large tree branch and debris, but vehicles can still pass. There are some small puddles of water on the road, but they are not significant."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-07T03:19:11.803028+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:06.713050+00:00", "label": "null", "label_explanation": "A night view of a road with a white van driving on the right lane and a truck on the left lane. There are street lights on either side of the road and a few trees."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:05.706831+00:00", "label": "free", "label_explanation": "There is a white van driving on the right lane and a truck on the left lane."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:06.527922+00:00", "label": "false", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:06.082468+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:06.314609+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}]}, {"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-07T03:20:20.192265+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:52.329477+00:00", "label": "null", "label_explanation": "The image shows a road with fallen tree blocking the road. The road is surrounded by trees and there is a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:51.436108+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:52.057327+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:51.650539+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:51.842045+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no water present."}]}, {"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": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-07T03:19:48.001420+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:38.677820+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:39.083134+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:39.379144+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:39.586135+00:00", "label": "null", "label_explanation": "The image is of a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. The road is also completely submerged in water. The water is above the wheel of a passenger vehicle. The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-07T03:00:09.559106+00:00", "label": "puddle", "label_explanation": "The water level on the road is high, but it is not flooding. The water is about halfway up the wheel of a passenger vehicle."}]}, {"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-07T03:19:44.245406+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:17:20.955612+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road, making it impossible for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:21.653141+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road, forming large puddles."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:21.862375+00:00", "label": "null", "label_explanation": "The image shows a fallen tree blocking a road. There is also a large amount of water on the road, completely submerging it. The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-07T03:11:31.110216+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:21.394427+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:42.836215+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:11:39.497102+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:11:39.677606+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-07T03:11:40.250701+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-07T03:11:39.962160+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:11:40.454418+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with trees on either side. There are no cars on the road and the street lights are on. The road is in good condition and there are no visible hazards."}]}, {"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-07T03:19:45.492089+00:00", "objects": ["image_condition", "water_in_road", "image_description", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:09.570153+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:09.071678+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:09.871457+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 the buildings are dark. There are no people or cars on the street."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:09.370357+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:08.886314+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-07T03:19:40.778535+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:20:07.179139+00:00", "label": "false", "label_explanation": "There are no visible puddles or signs of water accumulation on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:07.719113+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:06.962312+00:00", "label": "free", "label_explanation": "There is a yellow taxi driving on the road. There are no visible obstructions or blockades on the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:07.400603+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:07.978360+00:00", "label": "null", "label_explanation": "A yellow taxi is driving through an intersection at night. There are no other cars on the road. There is a building on the right side of the road with a sign that says 'restaurante'. There are trees on the left side of the road."}]}, {"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-07T03:19:40.944214+00:00", "objects": ["image_condition", "road_blockade", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:05.607251+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions or distortions."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:05.886308+00:00", "label": "free", "label_explanation": "There are no features that are blocking the road. There are some small puddles of water on the road, but they are not large enough to cause any traffic disruptions."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:12.796532+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:06.127994+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 driving on the road. There are also some trees and buildings on the street."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:05.221813+00:00", "label": "true", "label_explanation": "There are several large puddles of water on the road that are between one-fourth and one-half the height of a passenger vehicle's wheel. The puddles are scattered throughout the road, but they do not completely block any lanes."}]}, {"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-07T03:19:40.900207+00:00", "objects": ["water_in_road", "image_description", "water_level", "road_blockade", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-07T03:17:24.835515+00:00", "label": "true", "label_explanation": "There is a small puddle of water on the road."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:25.538082+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection. There is a white car partially blocking the road, and a small puddle of water on the road. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:25.041091+00:00", "label": "low_indifferent", "label_explanation": "The water level is low and does not cover the tires of the white car."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:17:24.610293+00:00", "label": "partially_blocked", "label_explanation": "There is a white car partially blocking the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:25.266328+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:48.204072+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T03:20:34.634927+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:34.434792+00:00", "label": "puddle", "label_explanation": "The water is at the level of the bottom of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:34.942124+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that has fallen across the road. There is a car parked on the side of the road. There is a street light in the background."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:34.174020+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There are no other puddles on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:33.911572+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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-07T03:19:42.545295+00:00", "objects": ["water_level", "water_in_road", "image_description", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:17:17.673661+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:17.398225+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:18.267384+00:00", "label": "null", "label_explanation": "A night view of a road in Rio de Janeiro. The road is bordered by trees and shrubs, with a clear sky and no visible people or cars on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:17:17.178931+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:18.004292+00:00", "label": "clean", "label_explanation": "The image is clear with no visible blurring or distortions."}]}, {"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-07T03:19:33.483892+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:17:25.452364+00:00", "label": "partially_blocked", "label_explanation": "There is a road closure due to a large tree branch that has fallen and is blocking the entire right lane."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:26.465460+00:00", "label": "null", "label_explanation": "The image shows a night view of a four-way road intersection. There are cars on the road, a green traffic light, and a yellow crosswalk. There are buildings and trees on either side of the road. The road is wet from rain."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:25.743438+00:00", "label": "true", "label_explanation": "There are several large puddles of water on the road, but they are not deep and do not cover more than one-fourth of the wheel of a passenger vehicle."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:25.967161+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is relatively low, with some puddles present but not covering more than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:26.249574+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility, with no major obstructions or blurring."}]}, {"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-07T03:19:36.525229+00:00", "objects": ["road_blockade", "image_description", "water_level", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:17:25.851952+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "image_description", "timestamp": "2024-02-07T03:17:26.750985+00:00", "label": "null", "label_explanation": "A car is driving on a road at night. There is a gas station on the left side of the road and a tree on the right side. There is a building in the background."}, {"object": "water_level", "timestamp": "2024-02-07T03:17:26.262122+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-07T03:17:26.464490+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:17:26.047327+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"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-07T03:19:35.123704+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:56.528920+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.079989+00:00", "label": "partially_blocked", "label_explanation": "There is a yellow taxi partially blocking the road, but it is still possible for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.313351+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "image_description", "timestamp": "2024-02-07T03:19:57.012154+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There are a few cars on the road, and the traffic lights are on. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:56.753158+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-07T03:19:34.831728+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:20:06.601915+00:00", "label": "puddle", "label_explanation": "The water is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:06.115823+00:00", "label": "partially_blocked", "label_explanation": "There is a tree branch and debris blocking part of the road."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:06.323080+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:06.821338+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:07.048603+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a traffic light on the left side of the image and a street sign on the right side. There is a tree in the middle of the intersection with branches and debris blocking part of the road. There is a large puddle of water on the road."}]}, {"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-07T03:19:38.372127+00:00", "objects": ["image_description", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-07T03:20:09.667110+00:00", "label": "null", "label_explanation": "The image is of a street scene at night. There are cars on the road, trees on either side of the road, and a bus stop on the right side of the road. There is a bike rack with several bikes parked next to the bus stop. There is a large digital billboard on the right side of the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:20:09.147524+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:20:08.583652+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:09.370706+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:08.940794+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"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-07T03:19:39.589995+00:00", "objects": ["road_blockade", "water_level", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-07T03:20:03.636127+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "water_level", "timestamp": "2024-02-07T03:08:45.059999+00:00", "label": "puddle", "label_explanation": "The water on the road is at the level of the hubcap of a car."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:20:03.848774+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a passenger vehicle's wheel."}, {"object": "image_description", "timestamp": "2024-02-07T03:20:04.820424+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 there are a few trees on either side of the road. There is a large puddle of water on the road and a fallen tree blocking the road. There is a bicycle parked on the side of the road."}, {"object": "image_condition", "timestamp": "2024-02-07T03:20:04.537181+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-07T03:19:34.983133+00:00", "objects": ["water_level", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T03:19:56.959256+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": "image_description", "timestamp": "2024-02-07T03:19:57.438350+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree blocking the road, and there are large puddles of water on the road. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-07T03:19:56.751125+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-07T03:19:56.557706+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road, making it impassable."}, {"object": "image_condition", "timestamp": "2024-02-07T03:19:57.156590+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-06T17:09:31.714316+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file +[{"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": [], "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, "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": null, "snapshot_timestamp": null, "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, "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": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "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, "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": [], "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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-08T05:32:48.492090+00:00", "objects": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:30:11.664441+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:30:11.906289+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:30:11.380053+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:30:11.105374+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-08T05:30:12.180594+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There is a street sign on the left side of the image. There are trees and a park on the right side of the image. The street is empty with no cars or people."}]}, {"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": [], "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, "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-08T05:32:52.635746+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:09.060489+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:08.859539+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:09.355731+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a large tree in the foreground and several cars parked on the side of the road. The street lights are on and the traffic lights are green."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:08.657564+00:00", "label": "true", "label_explanation": "There are several large puddles of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:08.458850+00:00", "label": "partially_blocked", "label_explanation": "There is a large tree branch blocking the left lane of the road."}]}, {"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": [], "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, "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-08T05:32:43.327869+00:00", "objects": ["image_condition", "water_level", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:07.730461+00:00", "label": "clean", "label_explanation": "The image is clear and there is no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:07.532444+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low. There are some puddles, but they are not very deep."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:07.308471+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car driving through the puddle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:08.024256+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that has fallen across the road. There is a car driving through the puddle. There are buildings and street lights in the background."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:07.032600+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:31:58.376157+00:00", "objects": ["image_condition", "water_level", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:19.660154+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:19.379672+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.162802+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:19.872855+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a traffic light in the foreground and several cars parked on the side of the road. There is a large pothole in the middle of the intersection."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:18.911225+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}]}, {"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-08T05:32:12.375367+00:00", "objects": ["image_condition", "water_level", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:37.083223+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:36.807903+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:36.340223+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:37.317322+00:00", "label": "null", "label_explanation": "The image is of a street corner at night. There is a street light on the left side of the image and a yellow traffic sign on the right. There is a large pothole in the middle of the road and a large puddle of water to the left of the pothole. There are two people walking in the street."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:36.531975+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}]}, {"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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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-08T05:31:40.384536+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:21:44.221613+00:00", "label": "low_indifferent", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:21.280253+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. There is a lot of water on the road and it is completely covering the road. The image is clear and not blurry."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:20.977489+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:20.477580+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is at least half the height of a car tire and completely covers the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:20.275480+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:31:59.668321+00:00", "objects": ["water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:14.220772+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:14.710456+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 large tree that has fallen across the road, blocking traffic. There is also a large amount of water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:13.926171+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.430328+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:13.706807+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}]}, {"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-08T05:32:15.179344+00:00", "objects": ["water_level", "image_description", "image_condition", "road_blockade", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:47.371577+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:47.850018+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection. There is a fallen tree blocking the road, and there are large puddles of water on the road. There are cars parked on the side of the road, and a few people are walking around."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:47.638362+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:45.671926+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:45.934011+00:00", "label": "true", "label_explanation": "There are large puddles of 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-08T05:32:40.593066+00:00", "objects": ["image_condition", "water_level", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:53.219772+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:29:56.510802+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low. There is no flooding and the road is passable."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:55.154485+00:00", "label": "null", "label_explanation": "The image shows a night view of a crossroad with yellow markings on the asphalt. There are 2 people crossing the road, a tree on the left side of the image, and some parked cars on the right side. In the background, there are some buildings and a street light."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:52.692175+00:00", "label": "free", "label_explanation": "There is no presence of road blockades, the road is completely clear with no blockages or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:52.952899+00:00", "label": "false", "label_explanation": "There is no presence of water on the road surface, the road is completely dry."}]}, {"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-08T05:32:08.284483+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:52.683810+00:00", "label": "null", "label_explanation": "A night view of a flooded road with cars driving through it. The water is murky and brown. The street lights are on, and there is a building with a red sign on the right side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:48.648147+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:42.490474+00:00", "label": "totally_blocked", "label_explanation": "The road is completely covered by water, making it impassable."}, {"object": "water_level", "timestamp": "2024-02-08T05:26:50.086545+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:43.747719+00:00", "label": "poor", "label_explanation": "The image is blurry and difficult to see."}]}, {"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-08T05:32:46.884831+00:00", "objects": ["image_condition", "water_level", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:06.371803+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility with no blurring or obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:06.122246+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.610565+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.615168+00:00", "label": "null", "label_explanation": "A night view of a road in Rio de Janeiro. The road is bordered by trees and there are street lights along the side. There is a clear view of the road and surrounding area."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.863029+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}]}, {"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-08T05:31:50.226376+00:00", "objects": ["image_description", "water_level", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:00.073997+00:00", "label": "null", "label_explanation": "A night view of a city street with trees and buildings. The street is lit by streetlights. There is a slight bend in the road to the right."}, {"object": "water_level", "timestamp": "2024-02-08T05:31:59.849783+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:31:59.356958+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:31:59.138258+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions or blockades."}, {"object": "image_condition", "timestamp": "2024-02-08T05:31:59.649853+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-08T05:31:39.965156+00:00", "objects": ["image_description", "water_level", "image_condition", "road_blockade", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:31:51.624488+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. There is a large amount of water on the road and it appears to be at least several inches deep. There are no cars visible on the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:21:48.932054+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:31:51.432159+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:31:50.696876+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there are no cars visible on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:31:50.947578+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is unclear how deep the water is, but it appears to be at least several inches deep. There are no cars visible on the road."}]}, {"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-08T05:32:43.600879+00:00", "objects": ["image_description", "image_condition", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:55.871197+00:00", "label": "null", "label_explanation": "The CCTV image is displaying a four-way road intersection in Rio de Janeiro at night. There are no cars or pedestrians visible in the image. The street lights are on and the traffic lights are red. There is a building on the left side of the intersection and trees on the right side."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:54.930537+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:30:05.428289+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:54.659523+00:00", "label": "false", "label_explanation": "There is no presence of water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:54.454048+00:00", "label": "free", "label_explanation": "There is no presence of road blockades or obstacles that could impede traffic flow."}]}, {"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-08T05:32:19.991512+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:32:37.139860+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:38.135268+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There is a large tree in the foreground that has fallen across the road, completely blocking it. There is no water on the road. The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:37.863450+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:37.359264+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:37.658284+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-08T05:31:45.945447+00:00", "objects": ["image_condition", "image_description", "water_in_road", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:18.275893+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:18.779567+00:00", "label": "null", "label_explanation": "A night view of a city street with cars parked on the side and a few people walking. There is a street light in the foreground and a building in the background."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:17.997451+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:18.523636+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:17.785618+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:45.857390+00:00", "objects": ["image_condition", "image_description", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:04.593173+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:05.060003+00:00", "label": "null", "label_explanation": "The image is of a night scene of a street intersection in Rio de Janeiro. The street is lit by streetlights and there are a few cars parked on the side of the road. There is a tree in the foreground and a building in the background."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:04.835398+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.132109+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.346514+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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-08T05:31:42.698825+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:14.813793+00:00", "label": "null", "label_explanation": "A tree has fallen on the road, blocking traffic. There is a large puddle of water on the road. The image is clear with no interference."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.480369+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:13.988685+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:13.677137+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the entire road."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:14.256747+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-08T05:32:36.408511+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:33:06.942680+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:07.441029+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:06.746482+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:07.172171+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:07.669427+00:00", "label": "null", "label_explanation": "A night view of a street in Rio de Janeiro. The street is lit by streetlights and the headlights of cars. There are trees on either side of the street and a bike rack on the right side. There is a yellow taxi driving on the left side of the street."}]}, {"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-08T05:32:31.322621+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:12.746604+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:13.482179+00:00", "label": "false", "label_explanation": "There are no puddles or significant water accumulation on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:13.279810+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:13.763470+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible blockades or obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:12.979485+00:00", "label": "null", "label_explanation": "The image is clear and well-lit. The road is bordered by trees and buildings. There is a bus driving on the road. The image is taken from a high angle."}]}, {"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-08T05:31:45.645213+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:21:56.320286+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:31:54.639218+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire road and is making it difficult for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-08T05:31:55.158938+00:00", "label": "clean", "label_explanation": "The image is clear and there is no blur or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:31:54.454586+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-08T05:31:55.435750+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a large tree. There is a lot of water on the road and it is unclear if there are any vehicles stranded."}]}, {"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-08T05:32:09.863038+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:59.120876+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. There is also a significant amount of water on the road. The water is covering large areas of the road and is likely to cause traffic disruptions."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:58.613327+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:53.706822+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:58.849650+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering large areas of the road and is likely to cause traffic disruptions."}, {"object": "water_level", "timestamp": "2024-02-08T05:27:07.528035+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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-08T05:32:09.880559+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:49.990935+00:00", "label": "null", "label_explanation": "A fallen tree is blocking the road. There is a large puddle of water on the road. The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:42.683780+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:43.763139+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:48.530005+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:45.556112+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-08T05:32:42.771477+00:00", "objects": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T04:59:27.112379+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:00.328528+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. There is also a large amount of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:59.440757+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:00.049248+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:59.858246+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}]}, {"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-08T05:32:02.356471+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:15.354760+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is about one-fourth of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:15.073710+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is about one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:15.636179+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:14.855973+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:15.844413+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 the buildings are lit by their interior lights. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is also a large puddle of water on the road."}]}, {"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-08T05:32:33.969774+00:00", "objects": ["water_level", "image_condition", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:29:45.081863+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not flooding."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:08.838301+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:08.114619+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:09.109293+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a large tree in the foreground that is blocking the road. There is a car stopped in the puddle. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:08.329887+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car stopped in the puddle."}]}, {"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": null, "snapshot_timestamp": null, "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, "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": [], "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, "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": null, "snapshot_timestamp": null, "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, "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": [], "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, "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": [], "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, "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-08T05:31:53.149974+00:00", "objects": ["water_level", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:14.606519+00:00", "label": "low_indifferent", "label_explanation": "The road is dry with no visible water."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:15.201697+00:00", "label": "null", "label_explanation": "A night view of a city street with a large crane blocking the road. There is a row of parked cars on the left side of the street and a building on the right side. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:14.808681+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:14.119955+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large crane."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.372025+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-08T05:32:12.615114+00:00", "objects": ["image_description", "image_condition", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:50.410105+00:00", "label": "null", "label_explanation": "A night-time image of a road with a gas station on the right and a large concrete barrier on the left. There are street lights along the road and a few cars parked on the side of the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:50.203253+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:49.993527+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:48.692538+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:47.401084+00:00", "label": "free", "label_explanation": "No blockades are visible on the road."}]}, {"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-08T05:32:25.678337+00:00", "objects": ["water_level", "road_blockade", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:52.726202+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:45.661058+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the left side of the road, blocking the entire left lane. The right lane is still open for traffic."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:55.912590+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:56.123891+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a fallen tree on the left side of the road, blocking the entire left lane. The right lane is still open for traffic. There are some puddles on the road, but they are not significant and do not hinder traffic. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:47.405803+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not hinder traffic."}]}, {"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-08T05:32:26.040347+00:00", "objects": ["water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:28:04.581888+00:00", "label": "puddle", "label_explanation": "The water level on the road is high, but it is not flooding. The water is about halfway up the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:55.258564+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a large tree. There is a large amount of water on the road and it is making it difficult for vehicles to pass. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:53.927405+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire road and is making it difficult for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:54.581240+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:49.475735+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:31:57.013496+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:32:15.172951+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:14.465657+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-08T05:16:19.296687+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:15.458492+00:00", "label": "null", "label_explanation": "A large tree has fallen across a road, blocking both lanes of traffic. The road is completely flooded and impassable. There is a car stopped in front of the tree and a few people are standing outside of their cars, looking at the tree."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.955397+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}]}, {"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-08T05:32:20.365322+00:00", "objects": ["water_level", "image_condition", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:29:32.998772+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:45.673600+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:46.169564+00:00", "label": "null", "label_explanation": "The image is of a road at night. There is a fallen tree blocking the road. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:45.877743+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:44.464815+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road, making it impassable for vehicles."}]}, {"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-08T05:31:51.452085+00:00", "objects": ["water_level", "image_condition", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:18.606482+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:18.841286+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:19.100753+00:00", "label": "null", "label_explanation": "The image is of a road at night. There is a concrete wall to the right of the road with graffiti on it. There are street lights along the road and a few trees on either side. The road is empty with no cars on it."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:18.420319+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:18.092807+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:45.551151+00:00", "objects": ["image_condition", "water_level", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:02.308662+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or blurriness."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:02.591031+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:01.898355+00:00", "label": "free", "label_explanation": "No obstructions are visible on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:02.790644+00:00", "label": "null", "label_explanation": "A night-time image of a road with graffiti on the wall to the left and trees to the right. There are cars driving on the road and the street lights are on."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:02.094618+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road."}]}, {"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-08T05:31:50.723027+00:00", "objects": ["image_description", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:19.109040+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with a few trees on either side. There is a traffic light in the distance and some graffiti on the walls. The road is well-lit and there are no visible obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:18.827407+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:19.818834+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:19.316347+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.616411+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road."}]}, {"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-08T05:31:48.751144+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:18.135167+00:00", "label": "null", "label_explanation": "A night-time image of a street with a single street lamp illuminating the road. Trees line the side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:17.122694+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions or blockades."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:17.928093+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:17.340704+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:17.630725+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}]}, {"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-08T05:32:53.795725+00:00", "objects": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:29:50.020831+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:06.490007+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:06.291958+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.957527+00:00", "label": "free", "label_explanation": "No obstacles are blocking the road, but there are overgrown branches on the left side of the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.750451+00:00", "label": "null", "label_explanation": "This is a night-time image of a street with no cars. The street is lit by streetlights, and the trees on either side of the street are full of leaves. There is a slight bend in the road to the right."}]}, {"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-08T05:32:28.293331+00:00", "objects": ["image_description", "water_level", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:52.724538+00:00", "label": "null", "label_explanation": "The image is of a street corner at night. There is a large tree in the foreground that is blocking the road. There are buildings on either side of the street and a street light in the background."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:50.434202+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:47.409770+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:50.208615+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:46.326163+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:32:52.733346+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:05.584108+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry with good lighting and no obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:05.302254+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:05.813953+00:00", "label": "null", "label_explanation": "A night-time image of a nearly empty road with trees on either side and a car driving in the center."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.079642+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.779223+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles visible."}]}, {"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-08T05:32:39.153951+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.357229+00:00", "label": "true", "label_explanation": "There are some puddles of water on the road, but they are not significant and do not impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:05.879457+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:05.583664+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.291497+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a gas station on the left side of the image and a building on the right side. There are trees and other vegetation on either side of the road. The road is partially blocked by a tree branch and debris."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.153548+00:00", "label": "partially_blocked", "label_explanation": "There is a tree branch and debris blocking part of the road, but vehicles can still pass."}]}, {"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": null, "snapshot_timestamp": null, "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, "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": ["image_condition", "water_level", "water_in_road", "image_description", "road_blockade"], "identifications": [{"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": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"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-08T05:32:58.331602+00:00", "objects": ["water_in_road", "image_condition", "image_description", "water_level", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:33:13.731821+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:13.503361+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:13.244621+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is empty, with no cars or people. There are a few trees on either side of the street. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:13.018826+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no visible water."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:13.922103+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:53.699654+00:00", "objects": ["image_condition", "road_blockade", "water_level", "water_in_road", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:05.110969+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible blurring or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.496041+00:00", "label": "free", "label_explanation": "The road is completely dry, with no visible signs of water accumulation or blockages."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.910931+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry, with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:04.693869+00:00", "label": "false", "label_explanation": "There are no puddles or signs of water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:05.391638+00:00", "label": "null", "label_explanation": "The image shows a night view of a relatively wide, urban road with buildings on the left and the right. There is a traffic light in the foreground and a pedestrian crossing sign on the right. The road is empty, with no cars or people visible. There is a blue sign with white text on the bottom right corner of the image."}]}, {"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-07T13:10:12.224469+00:00", "objects": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T13:11:29.025964+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": "image_description", "timestamp": "2024-02-07T13:11:30.299812+00:00", "label": "null", "label_explanation": "The image shows a busy street with cars, a motorcycle, and people crossing the road. There are trees and buildings on either side of the street."}, {"object": "road_blockade", "timestamp": "2024-02-07T13:11:28.329407+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}, {"object": "water_in_road", "timestamp": "2024-02-07T13:11:28.536239+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T13:11:29.978701+00:00", "label": "poor", "label_explanation": "The image is slightly blurred but still clear enough to identify objects."}]}, {"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-07T13:11:13.072734+00:00", "objects": ["image_condition", "image_description", "water_in_road", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T13:12:00.029260+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T13:12:00.320621+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are two men and a woman crossing the street in the foreground. There are cars parked on the side of the road and a few trees in the background."}, {"object": "water_in_road", "timestamp": "2024-02-07T13:11:59.622523+00:00", "label": "true", "label_explanation": "There are small puddles of water on the road, but they are not significant and do not impede traffic."}, {"object": "water_level", "timestamp": "2024-02-07T13:11:59.851781+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T13:11:59.427730+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}]}, {"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-08T05:32:41.181514+00:00", "objects": ["image_description", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:58.619560+00:00", "label": "null", "label_explanation": "A night image of a four-way road intersection. There is a bus crossing the intersection, a motorcycle on the right side of the image, and a few cars parked on the left side. There is a traffic sign partially blocking the road on the right side of the image. The road is dry and there is no water visible."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:55.863795+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:54.969246+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:56.111578+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:54.554432+00:00", "label": "free", "label_explanation": "There is a bus crossing the intersection, but it is not blocking the road."}]}, {"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-08T05:32:50.518361+00:00", "objects": ["water_level", "image_condition", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:01.650547+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:01.873213+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:02.148298+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with a tree on the left side. There is a fence on the right side of the road and buildings in the background. The road is well-lit and there are no visible signs of damage or flooding."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:01.177639+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:01.448359+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"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-08T05:31:47.633890+00:00", "objects": ["image_condition", "water_level", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:00.679241+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:00.408362+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low. There are some small puddles, but they are not causing any problems for traffic."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:00.894471+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a large tree in the foreground that has fallen across the road. There is a car driving through the puddle. The street is lined with trees and buildings."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:31:59.974204+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:00.197661+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car driving through the puddle."}]}, {"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-08T05:32:41.471961+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:00.140151+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is also a significant amount of water on the road, but it is not deep enough to be considered flooding. The image is clear and there is no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:59.413733+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:59.183104+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:59.616005+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:59.832469+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-08T05:32:40.602985+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:08.507078+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There is a red traffic light in the foreground, and a street sign in the background. The street is wet from rain, and there are some puddles on the road. There is a large tree branch and debris blocking part of the road, but vehicles can still pass."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:08.290457+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:07.711976+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:07.499312+00:00", "label": "partially_blocked", "label_explanation": "There is a large tree branch and debris blocking part of the road, but vehicles can still pass."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:08.005858+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is relatively low, less than one-fourth of the wheel of a passenger vehicle."}]}, {"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-08T05:31:54.037698+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:19.175978+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no water present."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:19.395221+00:00", "label": "null", "label_explanation": "A concrete barrier blocking a road at night. There is a street lamp on the right side of the image and some plants growing on the left side. The road is dry and there is no water present."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:18.908425+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:18.703253+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:18.495147+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large concrete barrier. The barrier is blocking the entire width of the road, making it impossible for vehicles to pass."}]}, {"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": ["image_condition", "water_in_road", "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": "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", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"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": "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-08T05:31:48.140724+00:00", "objects": ["image_description", "image_condition", "water_in_road", "water_level", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:16.915839+00:00", "label": "null", "label_explanation": "The image is a night view of an intersection in Rio de Janeiro. There is a gas station on the corner. The gas station is well-lit. There are cars parked on the side of the road. There are no people in the image."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:16.704110+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:16.215956+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:16.485242+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:16.005798+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:57.992515+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:10.571138+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 is a large tree in the foreground of the image and a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:09.482073+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:10.289865+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:09.770257+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car stopped in the puddle."}, {"object": "water_level", "timestamp": "2024-02-08T05:30:13.123429+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a risk to drivers."}]}, {"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-08T05:32:44.108330+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:33:03.258288+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles visible."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:03.567050+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:04.377023+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 trees and buildings on either side of the street."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.063741+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:03.783547+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-08T05:32:37.792957+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:10.042344+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:09.439175+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:09.656713+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car stopped in the left lane, but it appears to be able to pass through the puddle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:10.336564+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that is blocking the road. There is a car stopped in the left lane, but it appears to be able to pass through the puddle. There is a building on the right side of the street and a street sign on the left."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:09.844565+00:00", "label": "puddle", "label_explanation": "The water level on the road is between 1/4 and 1/2 of the wheel of a passenger vehicle."}]}, {"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": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"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": ["image_condition", "water_in_road", "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": "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-08T05:32:49.940769+00:00", "objects": ["image_description", "image_condition", "water_level", "road_blockade", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:05.039030+00:00", "label": "null", "label_explanation": "A night view of a road with cars driving on it. There are trees on either side of the road and buildings in the background. The road is well-lit and there are no visible hazards."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:04.765798+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.550779+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.153011+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:04.340666+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-08T05:32:01.067033+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:19.584553+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not flooding."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.353148+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is still passable."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:19.146042+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:19.861911+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:25.151951+00:00", "label": "null", "label_explanation": "The image shows a road with a bridge in the background. There is a car driving on the road and a tree has fallen across the road, blocking it. There is a large amount of water on the road, but it is still passable."}]}, {"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": ["water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"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-08T05:32:06.293499+00:00", "objects": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:19.958413+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:25.149629+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.662286+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:19.448079+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:25.440532+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 the headlights of cars. There are trees on either side of the street and buildings in the background. The road is wet from the rain."}]}, {"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-08T05:32:49.465162+00:00", "objects": ["image_description", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:05.401539+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a fallen tree on the road, blocking the entire right lane. There are some puddles on the road, but they are small and do not cover a significant portion of the road. The image is clear and there are no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.906629+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.408982+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:05.122546+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:04.639636+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and do not cover a significant portion of the road."}]}, {"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-08T05:32:51.171567+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:10.229328+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:11.588309+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a yellow taxi driving through the intersection, and a white car is stopped at the intersection, waiting to turn left. There is a tree on the right side of the road, and some buildings on the left side. The road is wet from the rain, but there are no large puddles."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:10.532065+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:10.002787+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and shallow."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:09.803262+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}]}, {"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-08T05:31:55.787628+00:00", "objects": ["road_blockade", "image_description", "water_level", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:32:14.183812+00:00", "label": "partially_blocked", "label_explanation": "There is a white car partially blocking the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:15.132157+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tall building on the left side of the image and a row of trees on the right side. There are cars parked on the side of the road and a bus and a white car are driving on the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:14.659998+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.897191+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:14.392390+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant."}]}, {"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-08T05:32:51.141768+00:00", "objects": ["water_in_road", "image_description", "water_level", "road_blockade", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.746552+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.563881+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There is a white car driving on the right side of the road. There are street lights and buildings on either side of the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:06.302436+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.529994+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:05.951823+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}]}, {"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-08T05:32:30.932853+00:00", "objects": ["image_description", "water_level", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:58.624583+00:00", "label": "null", "label_explanation": "The image shows a road at night. There is a large tree that has fallen across the road and is blocking both lanes of traffic. There is a large amount of water on the road and it is unclear if the road is passable. There are no vehicles on the road and the street lights are on."}, {"object": "water_level", "timestamp": "2024-02-08T05:29:39.496966+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not flooding."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:47.416184+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire width of the road and is about 6 inches deep. There are no vehicles on the road and it is unclear if the road is passable."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:52.726827+00:00", "label": "clean", "label_explanation": "The image is clear and there is no interference. The image is well-lit and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:45.708230+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:32:55.111224+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.968128+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions or blockades."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.804391+00:00", "label": "null", "label_explanation": "The image is a night view of a street with no cars or people. The street is lit by streetlights and there are trees on either side of the street. There is a building with a sign that says 'Escola' (school) on the right side of the street."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:06.377301+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:06.173609+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:06.580557+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or 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-08T05:32:25.070904+00:00", "objects": ["image_condition", "image_description", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:37.035440+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:37.515519+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There is a large pothole in the middle of the road, completely blocking traffic. There is no water on the road and the image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:36.819782+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:37.261227+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:36.619184+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}]}, {"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-08T05:32:23.116667+00:00", "objects": ["image_description", "road_blockade", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:50.231133+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree on the road, blocking the left lane. The right lane is still passable. There are some puddles on the road, but they are small and do not interfere with traffic. The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:45.759925+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the left lane. The right lane is still passable."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:46.390393+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:46.166828+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:47.410007+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-08T05:32:17.765304+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:32:42.836985+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:52.729405+00:00", "label": "null", "label_explanation": "A night-time image of a wide, tree-lined road with a clear night sky. There are no people or cars on the road. The road is in good condition with no visible signs of damage."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:50.543580+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:45.680866+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:47.413773+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-08T05:32:15.018799+00:00", "objects": ["image_description", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:43.878165+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a crosswalk. There are trees on either side of the street and a few cars parked on the side of the road. There is a street light in the foreground and a building in the background."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:38.445517+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:41.232891+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:37.281767+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:36.651176+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}]}, {"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-08T05:32:40.730986+00:00", "objects": ["image_description", "image_condition", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:58.847746+00:00", "label": "null", "label_explanation": "A dark, poorly lit road with a fallen tree blocking the road. There is a green wall on the left and a building with yellow walls on the right. There is a street light on the right side of the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:58.584509+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:58.032095+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:55.867452+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:55.114378+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}]}, {"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-08T05:31:45.554553+00:00", "objects": ["water_level", "image_condition", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:20.661748+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is relatively low, with some puddles but no significant accumulation."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:20.864185+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility, with no blurring or obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:21.150781+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 road, and a street sign indicating 'Maracana', 'Tijuca', and 'Mangueira'. There is a fallen tree on the right lane, blocking part of the road. There is also a large puddle of water on the road, but it is not very deep."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:20.240302+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:20.456759+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road, but it is not deep and does not cover more than one-fourth of the wheel of a passenger vehicle."}]}, {"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-08T05:32:36.476864+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:05.652440+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.153218+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with a single tree in the center median. There are street lights along the road and buildings and foliage on either side. A red car is driving in the right lane."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:05.943288+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or blurriness."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.376621+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.153257+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles visible."}]}, {"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-08T05:31:56.564550+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:29:32.960436+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not completely blocking the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:18.824362+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.027014+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car stopped in the puddle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:19.731902+00:00", "label": "null", "label_explanation": "The image is a night view of a street corner. There is a large tree in the foreground that is blocking the road. There is a car stopped in the puddle. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:19.505598+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}]}, {"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-08T05:32:55.533115+00:00", "objects": ["image_condition", "water_level", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:09.754680+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:30:13.199476+00:00", "label": "puddle", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:09.284359+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, covering more than half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:09.084203+00:00", "label": "totally_blocked", "label_explanation": "There is a large concrete block placed in the middle of the road, completely blocking traffic."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:09.979467+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. The street is empty, with no cars or pedestrians visible. There is a large concrete block placed in the middle of the road, completely blocking traffic. There is also a large amount of water on the road, covering more than half of the wheel of a passenger vehicle. The image is clear with no visible obstructions or distortions."}]}, {"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-08T05:32:48.612807+00:00", "objects": ["image_description", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:13.183605+00:00", "label": "null", "label_explanation": "The image is a night view of a street corner in Rio de Janeiro. The street is well-lit and there is no traffic. There are a few trees and buildings in the background."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:12.953274+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible signs of water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:13.465411+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions. The quality is good and the image is well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:13.678796+00:00", "label": "false", "label_explanation": "There is no presence of water in the road. The road surface is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:13.872144+00:00", "label": "free", "label_explanation": "There is no presence of road blockades, the road is completely clear with no blockages or obstacles."}]}, {"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": ["water_level", "water_in_road", "road_blockade", "image_description", "image_condition"], "identifications": [{"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": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"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-08T05:32:45.490683+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:02.881957+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:02.595673+00:00", "label": "low_indifferent", "label_explanation": "The road is dry, with no visible water accumulation."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:03.080056+00:00", "label": "null", "label_explanation": "A night view of a road intersection. There is a red car driving on the right side of the road. The road is dry and there are no visible obstructions. There is a street sign indicating a detour, but the road is clear with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:02.384243+00:00", "label": "false", "label_explanation": "There are small puddles of water on the road, but they are not significant and do not impede traffic."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:02.183834+00:00", "label": "free", "label_explanation": "There is a road sign indicating a detour, but the road is clear with no visible obstructions."}]}, {"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-08T05:32:22.518676+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:37.499288+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not flooding."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:38.075269+00:00", "label": "null", "label_explanation": "The image shows a road at night. There is a gas station on the right side of the road and a tree on the left side. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:37.779191+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:37.292951+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is still passable."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:37.004879+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it."}]}, {"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-08T05:31:43.203333+00:00", "objects": ["image_condition", "water_level", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:16.999085+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or blurring."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:17.201083+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:16.828719+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:16.544097+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:17.549868+00:00", "label": "null", "label_explanation": "The image is of a street corner at night. There are no cars on the road and the street is lit by streetlights. There are trees on either side of the road and a building in the background."}]}, {"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-08T05:32:16.204773+00:00", "objects": ["water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:36.406540+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:36.991721+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 the headlights of a parked car. There are a few trees on the side of the road and some graffiti on the walls of the buildings."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:36.191803+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:36.728371+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:35.978794+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}]}, {"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-08T05:32:17.389267+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_description", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:27:09.607266+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a risk to drivers."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:36.654719+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is unclear how deep the water is, but it appears to be at least several inches deep. There are no vehicles on the road and it is unclear if the road is passable."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:36.381021+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:37.479922+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. There is a large amount of water on the road and it is unclear if the road is passable. There are no vehicles on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:37.202359+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}]}, {"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-08T05:32:47.246213+00:00", "objects": ["water_level", "image_condition", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:07.855496+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:07.346567+00:00", "label": "poor", "label_explanation": "The image is very blurry and it is difficult to see any details. The image is also very dark and it is difficult to see any colors."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:07.074030+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire road. The tree is blocking all lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:08.073856+00:00", "label": "null", "label_explanation": "The image is very blurry and it is difficult to see any details. The image is also very dark and it is difficult to see any colors. There is a large tree that has fallen across the road and is blocking all lanes of traffic. There is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:07.592840+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-08T05:23:53.526168+00:00", "objects": ["water_level", "image_condition", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:21:48.729103+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:24:14.584190+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:24:12.177770+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. It is blocking the entire right lane."}, {"object": "image_description", "timestamp": "2024-02-08T05:24:17.295606+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There is a large puddle of water on the road that is more than half the height of a wheel. It is blocking the entire right lane. There are cars parked on either side of the street. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:24:08.869738+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. It is blocking the entire right lane."}]}, {"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-08T05:21:51.543290+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:16:57.516141+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-08T05:16:58.201585+00:00", "label": "null", "label_explanation": "This is a night-time image of a wide, tree-lined road with a brick sidewalk on the left and a bike lane on the right. There is a white car driving in the right lane and a silver car parked on the left side of the road. The street lights are on and there are no people visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:16:57.707479+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:16:57.924188+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:14:19.694349+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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-08T05:32:55.450549+00:00", "objects": ["image_condition", "water_in_road", "image_description", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:09.403726+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry with good visibility."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:08.928885+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:09.615666+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with a concrete barrier on the left and buildings and foliage on the right. There is a street lamp on the left side of the road, and the road is lit by the street lights. There is a tree on the right side of the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:09.192299+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:08.730707+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}]}, {"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-08T05:32:49.986455+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:06.918434+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:06.710759+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:07.209124+00:00", "label": "null", "label_explanation": "The image is a night view of a crosswalk and intersection. The road is dry and there are no cars or pedestrians present. There is a green traffic light visible."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:06.428025+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:06.297738+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible blockades or obstructions."}]}, {"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-08T05:32:41.524806+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:33:02.942302+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:03.855835+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 the buildings are dark. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is no water on the road. The image is clear and there is no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:03.619734+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:03.142682+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:03.365888+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-08T05:32:42.615909+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:59.445442+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:59.176427+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:59.642287+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with trees on either side. There is a building to the left of the road and a fence to the right. The road is empty, with no cars or people visible."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:58.855355+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:58.611989+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:03.774516+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:16.051829+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:16.541401+00:00", "label": "null", "label_explanation": "A photo of a nearly empty street with a fence blocking the sidewalk and a few trees on the side. There is a street lamp on the right side of the image."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:16.254462+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:15.779225+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:15.558060+00:00", "label": "totally_blocked", "label_explanation": "There is a metal fence completely blocking the sidewalk."}]}, {"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-08T05:32:40.901654+00:00", "objects": ["image_description", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:59.114003+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with trees on either side. There are no cars or people on the road. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:58.590781+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:55.982993+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:58.836844+00:00", "label": "clean", "label_explanation": "The image is clear and has no blurring or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:58.141502+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}]}, {"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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 From 092904b2a8692fe6e904d7cd1e76f93cca4c362e Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 9 Feb 2024 02:43:24 -0300 Subject: [PATCH 56/64] feat: fix none timestamp --- app/utils/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index 4a5ecef..3547442 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -318,7 +318,9 @@ def display_camera_details(row, cameras_identifications): lambda x: get_icon_color(x, type="emoji") ) camera_identifications.index = camera_identifications[""] - + camera_identifications = camera_identifications[ + camera_identifications["timestamp"].notnull() + ] camera_identifications["timestamp"] = camera_identifications[ "timestamp" ].apply( # noqa From 2e8dcdbf3047a68bcf007414e19c17c6fefef9b4 Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 9 Feb 2024 03:11:20 -0300 Subject: [PATCH 57/64] feat: add update data buttom --- app/Home.py | 38 +++++++++++++++++++++++++++------- app/pages/Visualizar Prompt.py | 36 ++++++++++++++++++++++++++++---- app/utils/utils.py | 30 ++++++++++++++++++++++++--- data/temp/mock_api_data.json | 2 +- 4 files changed, 90 insertions(+), 16 deletions(-) diff --git a/app/Home.py b/app/Home.py index 4740ff3..fb2b924 100644 --- a/app/Home.py +++ b/app/Home.py @@ -8,6 +8,7 @@ display_agrid_table, display_camera_details, get_cameras, + get_cameras_cash, get_filted_cameras_objects, get_icon_color, treat_data, @@ -19,15 +20,36 @@ DEFAULT_OBJECT = "water_level" st.markdown("## Identificações | Vision AI") -# get cameras -cameras = get_cameras( - page_size=3000, - only_active=False, - use_mock_data=False, - update_mock_data=False, -) -cameras_attr, cameras_identifications = treat_data(cameras) +# Function to fetch and update data +def fetch_and_update_data(bypass_cash=False): + page_size = 3000 + only_active = False + use_mock_data = False + update_mock_data = True + + if bypass_cash: + return get_cameras( + page_size=page_size, + only_active=only_active, + use_mock_data=use_mock_data, + update_mock_data=update_mock_data, + ) + return get_cameras_cash( + page_size=page_size, + only_active=only_active, + use_mock_data=use_mock_data, + update_mock_data=update_mock_data, + ) + + +cameras = fetch_and_update_data() +# Add a button for updating data +if st.button("Update Data"): + 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: diff --git a/app/pages/Visualizar Prompt.py b/app/pages/Visualizar Prompt.py index 5900d35..4f36b0a 100644 --- a/app/pages/Visualizar Prompt.py +++ b/app/pages/Visualizar Prompt.py @@ -3,18 +3,46 @@ import pandas as pd import streamlit as st -from utils.utils import get_objects, get_objetcs_labels_df, get_prompts +from utils.utils import ( + get_objects, + get_objects_cash, + get_objetcs_labels_df, + get_prompts, + get_prompts_cash, +) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) st.markdown("# Visualizar Prompt | Vision AI") -data = get_prompts() -objects = pd.DataFrame(get_objects()) + +# Function to fetch and update data +def fetch_and_update_prompts(bypass_cash=False): + if bypass_cash: + return get_prompts() + return get_prompts_cash() + + +def fetch_and_update_objects(bypass_cash=False): + if bypass_cash: + return get_objects() + return get_objects_cash() + + +prompt_data = fetch_and_update_prompts() +objects_data = fetch_and_update_objects() + +# Add a button for updating data +if st.button("Update Data"): + prompt_data = fetch_and_update_prompts(bypass_cash=True) + objects_data = fetch_and_update_objects(bypass_cash=True) + st.success("Data updated successfully!") + +objects = pd.DataFrame(objects_data) labels = get_objetcs_labels_df(objects, keep_null=True) -prompt_parameters = data[0] +prompt_parameters = prompt_data[0] prompt_text = prompt_parameters.get("prompt_text") prompt_objects = prompt_parameters.get("objects") diff --git a/app/utils/utils.py b/app/utils/utils.py index 3547442..e91f039 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -59,7 +59,6 @@ def callback_data(): # ) -@st.cache_data(ttl=60 * 2, persist=False) def get_cameras( only_active=True, use_mock_data=False, @@ -91,7 +90,6 @@ def get_cameras( return data -@st.cache_data(ttl=60 * 2, persist=False) def get_objects( page_size=100, timeout=120, @@ -102,7 +100,6 @@ def get_objects( return data -@st.cache_data(ttl=60 * 60, persist=False) def get_prompts( page_size=100, timeout=120, @@ -113,6 +110,33 @@ def get_prompts( return data +@st.cache_data(ttl=60 * 2, persist=False) +def get_cameras_cash( + only_active=True, + use_mock_data=False, + update_mock_data=False, + page_size=3000, + timeout=120, +): + return get_cameras( + only_active=only_active, + use_mock_data=use_mock_data, + update_mock_data=update_mock_data, + page_size=page_size, + timeout=timeout, + ) + + +@st.cache_data(ttl=60 * 2, persist=False) +def get_objects_cash(page_size=100, timeout=120): + return get_objects(page_size=page_size, timeout=timeout) + + +@st.cache_data(ttl=60 * 2, persist=False) +def get_prompts_cash(page_size=100, timeout=120): + return get_prompts(page_size=page_size, timeout=timeout) + + 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( diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index eaf1bc3..95aa512 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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": [], "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, "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": null, "snapshot_timestamp": null, "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, "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": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "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, "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": [], "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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-08T05:32:48.492090+00:00", "objects": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:30:11.664441+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:30:11.906289+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:30:11.380053+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:30:11.105374+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-08T05:30:12.180594+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There is a street sign on the left side of the image. There are trees and a park on the right side of the image. The street is empty with no cars or people."}]}, {"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": [], "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, "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-08T05:32:52.635746+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:09.060489+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:08.859539+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:09.355731+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a large tree in the foreground and several cars parked on the side of the road. The street lights are on and the traffic lights are green."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:08.657564+00:00", "label": "true", "label_explanation": "There are several large puddles of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:08.458850+00:00", "label": "partially_blocked", "label_explanation": "There is a large tree branch blocking the left lane of the road."}]}, {"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": [], "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, "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-08T05:32:43.327869+00:00", "objects": ["image_condition", "water_level", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:07.730461+00:00", "label": "clean", "label_explanation": "The image is clear and there is no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:07.532444+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low. There are some puddles, but they are not very deep."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:07.308471+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car driving through the puddle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:08.024256+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that has fallen across the road. There is a car driving through the puddle. There are buildings and street lights in the background."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:07.032600+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:31:58.376157+00:00", "objects": ["image_condition", "water_level", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:19.660154+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:19.379672+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.162802+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:19.872855+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a traffic light in the foreground and several cars parked on the side of the road. There is a large pothole in the middle of the intersection."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:18.911225+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}]}, {"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-08T05:32:12.375367+00:00", "objects": ["image_condition", "water_level", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:37.083223+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:36.807903+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:36.340223+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:37.317322+00:00", "label": "null", "label_explanation": "The image is of a street corner at night. There is a street light on the left side of the image and a yellow traffic sign on the right. There is a large pothole in the middle of the road and a large puddle of water to the left of the pothole. There are two people walking in the street."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:36.531975+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}]}, {"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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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-08T05:31:40.384536+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:21:44.221613+00:00", "label": "low_indifferent", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:21.280253+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. There is a lot of water on the road and it is completely covering the road. The image is clear and not blurry."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:20.977489+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:20.477580+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is at least half the height of a car tire and completely covers the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:20.275480+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:31:59.668321+00:00", "objects": ["water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:14.220772+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:14.710456+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 large tree that has fallen across the road, blocking traffic. There is also a large amount of water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:13.926171+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.430328+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:13.706807+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}]}, {"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-08T05:32:15.179344+00:00", "objects": ["water_level", "image_description", "image_condition", "road_blockade", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:47.371577+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:47.850018+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection. There is a fallen tree blocking the road, and there are large puddles of water on the road. There are cars parked on the side of the road, and a few people are walking around."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:47.638362+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:45.671926+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:45.934011+00:00", "label": "true", "label_explanation": "There are large puddles of 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-08T05:32:40.593066+00:00", "objects": ["image_condition", "water_level", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:53.219772+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:29:56.510802+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low. There is no flooding and the road is passable."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:55.154485+00:00", "label": "null", "label_explanation": "The image shows a night view of a crossroad with yellow markings on the asphalt. There are 2 people crossing the road, a tree on the left side of the image, and some parked cars on the right side. In the background, there are some buildings and a street light."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:52.692175+00:00", "label": "free", "label_explanation": "There is no presence of road blockades, the road is completely clear with no blockages or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:52.952899+00:00", "label": "false", "label_explanation": "There is no presence of water on the road surface, the road is completely dry."}]}, {"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-08T05:32:08.284483+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:52.683810+00:00", "label": "null", "label_explanation": "A night view of a flooded road with cars driving through it. The water is murky and brown. The street lights are on, and there is a building with a red sign on the right side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:48.648147+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:42.490474+00:00", "label": "totally_blocked", "label_explanation": "The road is completely covered by water, making it impassable."}, {"object": "water_level", "timestamp": "2024-02-08T05:26:50.086545+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:43.747719+00:00", "label": "poor", "label_explanation": "The image is blurry and difficult to see."}]}, {"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-08T05:32:46.884831+00:00", "objects": ["image_condition", "water_level", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:06.371803+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility with no blurring or obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:06.122246+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.610565+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.615168+00:00", "label": "null", "label_explanation": "A night view of a road in Rio de Janeiro. The road is bordered by trees and there are street lights along the side. There is a clear view of the road and surrounding area."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.863029+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}]}, {"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-08T05:31:50.226376+00:00", "objects": ["image_description", "water_level", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:00.073997+00:00", "label": "null", "label_explanation": "A night view of a city street with trees and buildings. The street is lit by streetlights. There is a slight bend in the road to the right."}, {"object": "water_level", "timestamp": "2024-02-08T05:31:59.849783+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:31:59.356958+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:31:59.138258+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions or blockades."}, {"object": "image_condition", "timestamp": "2024-02-08T05:31:59.649853+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-08T05:31:39.965156+00:00", "objects": ["image_description", "water_level", "image_condition", "road_blockade", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:31:51.624488+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. There is a large amount of water on the road and it appears to be at least several inches deep. There are no cars visible on the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:21:48.932054+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:31:51.432159+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:31:50.696876+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there are no cars visible on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:31:50.947578+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is unclear how deep the water is, but it appears to be at least several inches deep. There are no cars visible on the road."}]}, {"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-08T05:32:43.600879+00:00", "objects": ["image_description", "image_condition", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:55.871197+00:00", "label": "null", "label_explanation": "The CCTV image is displaying a four-way road intersection in Rio de Janeiro at night. There are no cars or pedestrians visible in the image. The street lights are on and the traffic lights are red. There is a building on the left side of the intersection and trees on the right side."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:54.930537+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:30:05.428289+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:54.659523+00:00", "label": "false", "label_explanation": "There is no presence of water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:54.454048+00:00", "label": "free", "label_explanation": "There is no presence of road blockades or obstacles that could impede traffic flow."}]}, {"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-08T05:32:19.991512+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:32:37.139860+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:38.135268+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There is a large tree in the foreground that has fallen across the road, completely blocking it. There is no water on the road. The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:37.863450+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:37.359264+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:37.658284+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-08T05:31:45.945447+00:00", "objects": ["image_condition", "image_description", "water_in_road", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:18.275893+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:18.779567+00:00", "label": "null", "label_explanation": "A night view of a city street with cars parked on the side and a few people walking. There is a street light in the foreground and a building in the background."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:17.997451+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:18.523636+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:17.785618+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:45.857390+00:00", "objects": ["image_condition", "image_description", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:04.593173+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:05.060003+00:00", "label": "null", "label_explanation": "The image is of a night scene of a street intersection in Rio de Janeiro. The street is lit by streetlights and there are a few cars parked on the side of the road. There is a tree in the foreground and a building in the background."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:04.835398+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.132109+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.346514+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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-08T05:31:42.698825+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:14.813793+00:00", "label": "null", "label_explanation": "A tree has fallen on the road, blocking traffic. There is a large puddle of water on the road. The image is clear with no interference."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.480369+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:13.988685+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:13.677137+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree blocking the entire road."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:14.256747+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-08T05:32:36.408511+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:33:06.942680+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:07.441029+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:06.746482+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:07.172171+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:07.669427+00:00", "label": "null", "label_explanation": "A night view of a street in Rio de Janeiro. The street is lit by streetlights and the headlights of cars. There are trees on either side of the street and a bike rack on the right side. There is a yellow taxi driving on the left side of the street."}]}, {"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-08T05:32:31.322621+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:12.746604+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:13.482179+00:00", "label": "false", "label_explanation": "There are no puddles or significant water accumulation on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:13.279810+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:13.763470+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible blockades or obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:12.979485+00:00", "label": "null", "label_explanation": "The image is clear and well-lit. The road is bordered by trees and buildings. There is a bus driving on the road. The image is taken from a high angle."}]}, {"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-08T05:31:45.645213+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:21:56.320286+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water accumulation."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:31:54.639218+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire road and is making it difficult for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-08T05:31:55.158938+00:00", "label": "clean", "label_explanation": "The image is clear and there is no blur or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:31:54.454586+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-08T05:31:55.435750+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a large tree. There is a lot of water on the road and it is unclear if there are any vehicles stranded."}]}, {"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-08T05:32:09.863038+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:59.120876+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. There is also a significant amount of water on the road. The water is covering large areas of the road and is likely to cause traffic disruptions."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:58.613327+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:53.706822+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:58.849650+00:00", "label": "true", "label_explanation": "There is a significant amount of water on the road. The water is covering large areas of the road and is likely to cause traffic disruptions."}, {"object": "water_level", "timestamp": "2024-02-08T05:27:07.528035+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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-08T05:32:09.880559+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:49.990935+00:00", "label": "null", "label_explanation": "A fallen tree is blocking the road. There is a large puddle of water on the road. The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:42.683780+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:43.763139+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:48.530005+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:45.556112+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}]}, {"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-08T05:32:42.771477+00:00", "objects": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T04:59:27.112379+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:00.328528+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. The tree is blocking both lanes of traffic and there is no way for vehicles to pass. There is also a large amount of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:59.440757+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:00.049248+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:59.858246+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}]}, {"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-08T05:32:02.356471+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:15.354760+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is about one-fourth of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:15.073710+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is about one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:15.636179+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:14.855973+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:15.844413+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 the buildings are lit by their interior lights. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is also a large puddle of water on the road."}]}, {"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-08T05:32:33.969774+00:00", "objects": ["water_level", "image_condition", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:29:45.081863+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not flooding."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:08.838301+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:08.114619+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:09.109293+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a large tree in the foreground that is blocking the road. There is a car stopped in the puddle. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:08.329887+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car stopped in the puddle."}]}, {"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": null, "snapshot_timestamp": null, "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, "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": [], "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, "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": null, "snapshot_timestamp": null, "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, "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": [], "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, "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": [], "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, "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-08T05:31:53.149974+00:00", "objects": ["water_level", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:14.606519+00:00", "label": "low_indifferent", "label_explanation": "The road is dry with no visible water."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:15.201697+00:00", "label": "null", "label_explanation": "A night view of a city street with a large crane blocking the road. There is a row of parked cars on the left side of the street and a building on the right side. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:14.808681+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:14.119955+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large crane."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.372025+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-08T05:32:12.615114+00:00", "objects": ["image_description", "image_condition", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:50.410105+00:00", "label": "null", "label_explanation": "A night-time image of a road with a gas station on the right and a large concrete barrier on the left. There are street lights along the road and a few cars parked on the side of the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:50.203253+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:49.993527+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:48.692538+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:47.401084+00:00", "label": "free", "label_explanation": "No blockades are visible on the road."}]}, {"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-08T05:32:25.678337+00:00", "objects": ["water_level", "road_blockade", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:52.726202+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:45.661058+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the left side of the road, blocking the entire left lane. The right lane is still open for traffic."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:55.912590+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:56.123891+00:00", "label": "null", "label_explanation": "The image shows a road scene at night. There is a fallen tree on the left side of the road, blocking the entire left lane. The right lane is still open for traffic. There are some puddles on the road, but they are not significant and do not hinder traffic. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:47.405803+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not hinder traffic."}]}, {"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-08T05:32:26.040347+00:00", "objects": ["water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:28:04.581888+00:00", "label": "puddle", "label_explanation": "The water level on the road is high, but it is not flooding. The water is about halfway up the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:55.258564+00:00", "label": "null", "label_explanation": "The image shows a road that is blocked by a large tree. There is a large amount of water on the road and it is making it difficult for vehicles to pass. The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:53.927405+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire road and is making it difficult for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:54.581240+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:49.475735+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:31:57.013496+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:32:15.172951+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:14.465657+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-08T05:16:19.296687+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:15.458492+00:00", "label": "null", "label_explanation": "A large tree has fallen across a road, blocking both lanes of traffic. The road is completely flooded and impassable. There is a car stopped in front of the tree and a few people are standing outside of their cars, looking at the tree."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.955397+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}]}, {"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-08T05:32:20.365322+00:00", "objects": ["water_level", "image_condition", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:29:32.998772+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:45.673600+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:46.169564+00:00", "label": "null", "label_explanation": "The image is of a road at night. There is a fallen tree blocking the road. The image is clear and well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:45.877743+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:44.464815+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road, making it impassable for vehicles."}]}, {"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-08T05:31:51.452085+00:00", "objects": ["water_level", "image_condition", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:18.606482+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:18.841286+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:19.100753+00:00", "label": "null", "label_explanation": "The image is of a road at night. There is a concrete wall to the right of the road with graffiti on it. There are street lights along the road and a few trees on either side. The road is empty with no cars on it."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:18.420319+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:18.092807+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:45.551151+00:00", "objects": ["image_condition", "water_level", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:02.308662+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or blurriness."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:02.591031+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:01.898355+00:00", "label": "free", "label_explanation": "No obstructions are visible on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:02.790644+00:00", "label": "null", "label_explanation": "A night-time image of a road with graffiti on the wall to the left and trees to the right. There are cars driving on the road and the street lights are on."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:02.094618+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road."}]}, {"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-08T05:31:50.723027+00:00", "objects": ["image_description", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:19.109040+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with a few trees on either side. There is a traffic light in the distance and some graffiti on the walls. The road is well-lit and there are no visible obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:18.827407+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:19.818834+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstructions."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:19.316347+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.616411+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road."}]}, {"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-08T05:31:48.751144+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:18.135167+00:00", "label": "null", "label_explanation": "A night-time image of a street with a single street lamp illuminating the road. Trees line the side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:17.122694+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions or blockades."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:17.928093+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:17.340704+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:17.630725+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}]}, {"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-08T05:32:53.795725+00:00", "objects": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:29:50.020831+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:06.490007+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:06.291958+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.957527+00:00", "label": "free", "label_explanation": "No obstacles are blocking the road, but there are overgrown branches on the left side of the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.750451+00:00", "label": "null", "label_explanation": "This is a night-time image of a street with no cars. The street is lit by streetlights, and the trees on either side of the street are full of leaves. There is a slight bend in the road to the right."}]}, {"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-08T05:32:28.293331+00:00", "objects": ["image_description", "water_level", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:52.724538+00:00", "label": "null", "label_explanation": "The image is of a street corner at night. There is a large tree in the foreground that is blocking the road. There are buildings on either side of the street and a street light in the background."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:50.434202+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:47.409770+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:50.208615+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:46.326163+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:32:52.733346+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:05.584108+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry with good lighting and no obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:05.302254+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:05.813953+00:00", "label": "null", "label_explanation": "A night-time image of a nearly empty road with trees on either side and a car driving in the center."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.079642+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.779223+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles visible."}]}, {"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-08T05:32:39.153951+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.357229+00:00", "label": "true", "label_explanation": "There are some puddles of water on the road, but they are not significant and do not impede traffic."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:05.879457+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:05.583664+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.291497+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a gas station on the left side of the image and a building on the right side. There are trees and other vegetation on either side of the road. The road is partially blocked by a tree branch and debris."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.153548+00:00", "label": "partially_blocked", "label_explanation": "There is a tree branch and debris blocking part of the road, but vehicles can still pass."}]}, {"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": null, "snapshot_timestamp": null, "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, "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": ["image_condition", "water_level", "water_in_road", "image_description", "road_blockade"], "identifications": [{"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": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"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-08T05:32:58.331602+00:00", "objects": ["water_in_road", "image_condition", "image_description", "water_level", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:33:13.731821+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:13.503361+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:13.244621+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is empty, with no cars or people. There are a few trees on either side of the street. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:13.018826+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no visible water."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:13.922103+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:53.699654+00:00", "objects": ["image_condition", "road_blockade", "water_level", "water_in_road", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:05.110969+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible blurring or obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.496041+00:00", "label": "free", "label_explanation": "The road is completely dry, with no visible signs of water accumulation or blockages."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.910931+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry, with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:04.693869+00:00", "label": "false", "label_explanation": "There are no puddles or signs of water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:05.391638+00:00", "label": "null", "label_explanation": "The image shows a night view of a relatively wide, urban road with buildings on the left and the right. There is a traffic light in the foreground and a pedestrian crossing sign on the right. The road is empty, with no cars or people visible. There is a blue sign with white text on the bottom right corner of the image."}]}, {"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-07T13:10:12.224469+00:00", "objects": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-07T13:11:29.025964+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": "image_description", "timestamp": "2024-02-07T13:11:30.299812+00:00", "label": "null", "label_explanation": "The image shows a busy street with cars, a motorcycle, and people crossing the road. There are trees and buildings on either side of the street."}, {"object": "road_blockade", "timestamp": "2024-02-07T13:11:28.329407+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}, {"object": "water_in_road", "timestamp": "2024-02-07T13:11:28.536239+00:00", "label": "true", "label_explanation": "There are large puddles of water on the road."}, {"object": "image_condition", "timestamp": "2024-02-07T13:11:29.978701+00:00", "label": "poor", "label_explanation": "The image is slightly blurred but still clear enough to identify objects."}]}, {"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-07T13:11:13.072734+00:00", "objects": ["image_condition", "image_description", "water_in_road", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-07T13:12:00.029260+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or obstructions."}, {"object": "image_description", "timestamp": "2024-02-07T13:12:00.320621+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There are two men and a woman crossing the street in the foreground. There are cars parked on the side of the road and a few trees in the background."}, {"object": "water_in_road", "timestamp": "2024-02-07T13:11:59.622523+00:00", "label": "true", "label_explanation": "There are small puddles of water on the road, but they are not significant and do not impede traffic."}, {"object": "water_level", "timestamp": "2024-02-07T13:11:59.851781+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-07T13:11:59.427730+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}]}, {"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-08T05:32:41.181514+00:00", "objects": ["image_description", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:58.619560+00:00", "label": "null", "label_explanation": "A night image of a four-way road intersection. There is a bus crossing the intersection, a motorcycle on the right side of the image, and a few cars parked on the left side. There is a traffic sign partially blocking the road on the right side of the image. The road is dry and there is no water visible."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:55.863795+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:54.969246+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:56.111578+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:54.554432+00:00", "label": "free", "label_explanation": "There is a bus crossing the intersection, but it is not blocking the road."}]}, {"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-08T05:32:50.518361+00:00", "objects": ["water_level", "image_condition", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:01.650547+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:01.873213+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:02.148298+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with a tree on the left side. There is a fence on the right side of the road and buildings in the background. The road is well-lit and there are no visible signs of damage or flooding."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:01.177639+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:01.448359+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"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-08T05:31:47.633890+00:00", "objects": ["image_condition", "water_level", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:00.679241+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:00.408362+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low. There are some small puddles, but they are not causing any problems for traffic."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:00.894471+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a large tree in the foreground that has fallen across the road. There is a car driving through the puddle. The street is lined with trees and buildings."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:31:59.974204+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:00.197661+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car driving through the puddle."}]}, {"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-08T05:32:41.471961+00:00", "objects": ["image_description", "water_in_road", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:00.140151+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is also a significant amount of water on the road, but it is not deep enough to be considered flooding. The image is clear and there is no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:59.413733+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:59.183104+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:59.616005+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:59.832469+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-08T05:32:40.602985+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:08.507078+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. There is a red traffic light in the foreground, and a street sign in the background. The street is wet from rain, and there are some puddles on the road. There is a large tree branch and debris blocking part of the road, but vehicles can still pass."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:08.290457+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:07.711976+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant and do not hinder traffic."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:07.499312+00:00", "label": "partially_blocked", "label_explanation": "There is a large tree branch and debris blocking part of the road, but vehicles can still pass."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:08.005858+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is relatively low, less than one-fourth of the wheel of a passenger vehicle."}]}, {"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-08T05:31:54.037698+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:19.175978+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry with no water present."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:19.395221+00:00", "label": "null", "label_explanation": "A concrete barrier blocking a road at night. There is a street lamp on the right side of the image and some plants growing on the left side. The road is dry and there is no water present."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:18.908425+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:18.703253+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:18.495147+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large concrete barrier. The barrier is blocking the entire width of the road, making it impossible for vehicles to pass."}]}, {"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": ["image_condition", "water_in_road", "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": "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", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"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": "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-08T05:31:48.140724+00:00", "objects": ["image_description", "image_condition", "water_in_road", "water_level", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:16.915839+00:00", "label": "null", "label_explanation": "The image is a night view of an intersection in Rio de Janeiro. There is a gas station on the corner. The gas station is well-lit. There are cars parked on the side of the road. There are no people in the image."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:16.704110+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:16.215956+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:16.485242+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:16.005798+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:57.992515+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:10.571138+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 is a large tree in the foreground of the image and a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:09.482073+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:10.289865+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:09.770257+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car stopped in the puddle."}, {"object": "water_level", "timestamp": "2024-02-08T05:30:13.123429+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a risk to drivers."}]}, {"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-08T05:32:44.108330+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:33:03.258288+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles visible."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:03.567050+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:04.377023+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 trees and buildings on either side of the street."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.063741+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:03.783547+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}]}, {"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-08T05:32:37.792957+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:10.042344+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:09.439175+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:09.656713+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car stopped in the left lane, but it appears to be able to pass through the puddle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:10.336564+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a large tree in the foreground that is blocking the road. There is a car stopped in the left lane, but it appears to be able to pass through the puddle. There is a building on the right side of the street and a street sign on the left."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:09.844565+00:00", "label": "puddle", "label_explanation": "The water level on the road is between 1/4 and 1/2 of the wheel of a passenger vehicle."}]}, {"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": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"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": ["image_condition", "water_in_road", "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": "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-08T05:32:49.940769+00:00", "objects": ["image_description", "image_condition", "water_level", "road_blockade", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:05.039030+00:00", "label": "null", "label_explanation": "A night view of a road with cars driving on it. There are trees on either side of the road and buildings in the background. The road is well-lit and there are no visible hazards."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:04.765798+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.550779+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.153011+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:04.340666+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-08T05:32:01.067033+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:19.584553+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not flooding."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.353148+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is still passable."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:19.146042+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:19.861911+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:25.151951+00:00", "label": "null", "label_explanation": "The image shows a road with a bridge in the background. There is a car driving on the road and a tree has fallen across the road, blocking it. There is a large amount of water on the road, but it is still passable."}]}, {"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": ["water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"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-08T05:32:06.293499+00:00", "objects": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:19.958413+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:25.149629+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.662286+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:19.448079+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:25.440532+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 the headlights of cars. There are trees on either side of the street and buildings in the background. The road is wet from the rain."}]}, {"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-08T05:32:49.465162+00:00", "objects": ["image_description", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:05.401539+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a fallen tree on the road, blocking the entire right lane. There are some puddles on the road, but they are small and do not cover a significant portion of the road. The image is clear and there are no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:04.906629+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:04.408982+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:05.122546+00:00", "label": "clean", "label_explanation": "The image is clear and there are no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:04.639636+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and do not cover a significant portion of the road."}]}, {"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-08T05:32:51.171567+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:10.229328+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:11.588309+00:00", "label": "null", "label_explanation": "The image shows a street intersection at night. There is a yellow taxi driving through the intersection, and a white car is stopped at the intersection, waiting to turn left. There is a tree on the right side of the road, and some buildings on the left side. The road is wet from the rain, but there are no large puddles."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:10.532065+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:10.002787+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and shallow."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:09.803262+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}]}, {"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-08T05:31:55.787628+00:00", "objects": ["road_blockade", "image_description", "water_level", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:32:14.183812+00:00", "label": "partially_blocked", "label_explanation": "There is a white car partially blocking the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:15.132157+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tall building on the left side of the image and a row of trees on the right side. There are cars parked on the side of the road and a bus and a white car are driving on the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:14.659998+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:14.897191+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:14.392390+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are not significant."}]}, {"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-08T05:32:51.141768+00:00", "objects": ["water_in_road", "image_description", "water_level", "road_blockade", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.746552+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.563881+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There is a white car driving on the right side of the road. There are street lights and buildings on either side of the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:06.302436+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.529994+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:05.951823+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}]}, {"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-08T05:32:30.932853+00:00", "objects": ["image_description", "water_level", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:58.624583+00:00", "label": "null", "label_explanation": "The image shows a road at night. There is a large tree that has fallen across the road and is blocking both lanes of traffic. There is a large amount of water on the road and it is unclear if the road is passable. There are no vehicles on the road and the street lights are on."}, {"object": "water_level", "timestamp": "2024-02-08T05:29:39.496966+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not flooding."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:47.416184+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. The water is covering the entire width of the road and is about 6 inches deep. There are no vehicles on the road and it is unclear if the road is passable."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:52.726827+00:00", "label": "clean", "label_explanation": "The image is clear and there is no interference. The image is well-lit and there are no obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:45.708230+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}]}, {"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-08T05:32:55.111224+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.968128+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible obstructions or blockades."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.804391+00:00", "label": "null", "label_explanation": "The image is a night view of a street with no cars or people. The street is lit by streetlights and there are trees on either side of the street. There is a building with a sign that says 'Escola' (school) on the right side of the street."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:06.377301+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:06.173609+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:06.580557+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or 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-08T05:32:25.070904+00:00", "objects": ["image_condition", "image_description", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:37.035440+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:37.515519+00:00", "label": "null", "label_explanation": "The image shows a street corner at night. There is a large pothole in the middle of the road, completely blocking traffic. There is no water on the road and the image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:36.819782+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:37.261227+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:36.619184+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large pothole."}]}, {"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-08T05:32:23.116667+00:00", "objects": ["image_description", "road_blockade", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:50.231133+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a fallen tree on the road, blocking the left lane. The right lane is still passable. There are some puddles on the road, but they are small and do not interfere with traffic. The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:45.759925+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the left lane. The right lane is still passable."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:46.390393+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, less than one-fourth of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:46.166828+00:00", "label": "true", "label_explanation": "There are some puddles on the road, but they are small and do not interfere with traffic."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:47.410007+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-08T05:32:17.765304+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:32:42.836985+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:52.729405+00:00", "label": "null", "label_explanation": "A night-time image of a wide, tree-lined road with a clear night sky. There are no people or cars on the road. The road is in good condition with no visible signs of damage."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:50.543580+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:45.680866+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:47.413773+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}]}, {"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-08T05:32:15.018799+00:00", "objects": ["image_description", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:43.878165+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a crosswalk. There are trees on either side of the street and a few cars parked on the side of the road. There is a street light in the foreground and a building in the background."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:38.445517+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:41.232891+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:37.281767+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:36.651176+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}]}, {"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-08T05:32:40.730986+00:00", "objects": ["image_description", "image_condition", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:58.847746+00:00", "label": "null", "label_explanation": "A dark, poorly lit road with a fallen tree blocking the road. There is a green wall on the left and a building with yellow walls on the right. There is a street light on the right side of the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:58.584509+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:58.032095+00:00", "label": "puddle", "label_explanation": "The water level is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:55.867452+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:55.114378+00:00", "label": "totally_blocked", "label_explanation": "There is a fallen tree completely blocking the road."}]}, {"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-08T05:31:45.554553+00:00", "objects": ["water_level", "image_condition", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:20.661748+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is relatively low, with some puddles but no significant accumulation."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:20.864185+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility, with no blurring or obstructions."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:21.150781+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 road, and a street sign indicating 'Maracana', 'Tijuca', and 'Mangueira'. There is a fallen tree on the right lane, blocking part of the road. There is also a large puddle of water on the road, but it is not very deep."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:20.240302+00:00", "label": "partially_blocked", "label_explanation": "There is a fallen tree on the road, blocking the entire right lane."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:20.456759+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road, but it is not deep and does not cover more than one-fourth of the wheel of a passenger vehicle."}]}, {"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-08T05:32:36.476864+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:05.652440+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:06.153218+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with a single tree in the center median. There are street lights along the road and buildings and foliage on either side. A red car is driving in the right lane."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:05.943288+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or blurriness."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:05.376621+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:05.153257+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles visible."}]}, {"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-08T05:31:56.564550+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:29:32.960436+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not completely blocking the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:18.824362+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the road. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:19.027014+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road. The puddle is about 1/4 of the width of the road and is located in the right lane. There is a car stopped in the puddle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:19.731902+00:00", "label": "null", "label_explanation": "The image is a night view of a street corner. There is a large tree in the foreground that is blocking the road. There is a car stopped in the puddle. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:19.505598+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}]}, {"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-08T05:32:55.533115+00:00", "objects": ["image_condition", "water_level", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:09.754680+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-08T05:30:13.199476+00:00", "label": "puddle", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. The puddle is blocking the entire right lane of the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:09.284359+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, covering more than half of the wheel of a passenger vehicle."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:09.084203+00:00", "label": "totally_blocked", "label_explanation": "There is a large concrete block placed in the middle of the road, completely blocking traffic."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:09.979467+00:00", "label": "null", "label_explanation": "The image shows a night scene of a street intersection in Rio de Janeiro. The street is empty, with no cars or pedestrians visible. There is a large concrete block placed in the middle of the road, completely blocking traffic. There is also a large amount of water on the road, covering more than half of the wheel of a passenger vehicle. The image is clear with no visible obstructions or distortions."}]}, {"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-08T05:32:48.612807+00:00", "objects": ["image_description", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:33:13.183605+00:00", "label": "null", "label_explanation": "The image is a night view of a street corner in Rio de Janeiro. The street is well-lit and there is no traffic. There are a few trees and buildings in the background."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:12.953274+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible signs of water accumulation."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:13.465411+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions. The quality is good and the image is well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:13.678796+00:00", "label": "false", "label_explanation": "There is no presence of water in the road. The road surface is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:13.872144+00:00", "label": "free", "label_explanation": "There is no presence of road blockades, the road is completely clear with no blockages or obstacles."}]}, {"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": ["water_level", "water_in_road", "road_blockade", "image_description", "image_condition"], "identifications": [{"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": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"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-08T05:32:45.490683+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:02.881957+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:02.595673+00:00", "label": "low_indifferent", "label_explanation": "The road is dry, with no visible water accumulation."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:03.080056+00:00", "label": "null", "label_explanation": "A night view of a road intersection. There is a red car driving on the right side of the road. The road is dry and there are no visible obstructions. There is a street sign indicating a detour, but the road is clear with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:02.384243+00:00", "label": "false", "label_explanation": "There are small puddles of water on the road, but they are not significant and do not impede traffic."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:02.183834+00:00", "label": "free", "label_explanation": "There is a road sign indicating a detour, but the road is clear with no visible obstructions."}]}, {"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-08T05:32:22.518676+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:37.499288+00:00", "label": "puddle", "label_explanation": "The water on the road is at a high level, but it is not flooding."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:38.075269+00:00", "label": "null", "label_explanation": "The image shows a road at night. There is a gas station on the right side of the road and a tree on the left side. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:37.779191+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:37.292951+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is still passable."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:37.004879+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it."}]}, {"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-08T05:31:43.203333+00:00", "objects": ["image_condition", "water_level", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:16.999085+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or blurring."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:17.201083+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:16.828719+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:16.544097+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:17.549868+00:00", "label": "null", "label_explanation": "The image is of a street corner at night. There are no cars on the road and the street is lit by streetlights. There are trees on either side of the road and a building in the background."}]}, {"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-08T05:32:16.204773+00:00", "objects": ["water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:36.406540+00:00", "label": "puddle", "label_explanation": "The water on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:36.991721+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 the headlights of a parked car. There are a few trees on the side of the road and some graffiti on the walls of the buildings."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:36.191803+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road, but it is not deep enough to be considered flooding."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:36.728371+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:35.978794+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire width of the road."}]}, {"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-08T05:32:17.389267+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_description", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:27:09.607266+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low and does not pose a risk to drivers."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:36.654719+00:00", "label": "true", "label_explanation": "There is a large amount of water on the road. It is unclear how deep the water is, but it appears to be at least several inches deep. There are no vehicles on the road and it is unclear if the road is passable."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:36.381021+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it. The tree is blocking both lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:37.479922+00:00", "label": "null", "label_explanation": "The image shows a road that is completely blocked by a large tree. There is a large amount of water on the road and it is unclear if the road is passable. There are no vehicles on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:37.202359+00:00", "label": "clean", "label_explanation": "The image is clear and there are no obstructions."}]}, {"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-08T05:32:47.246213+00:00", "objects": ["water_level", "image_condition", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:33:07.855496+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:07.346567+00:00", "label": "poor", "label_explanation": "The image is very blurry and it is difficult to see any details. The image is also very dark and it is difficult to see any colors."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:07.074030+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across the entire road. The tree is blocking all lanes of traffic and there is no way for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:08.073856+00:00", "label": "null", "label_explanation": "The image is very blurry and it is difficult to see any details. The image is also very dark and it is difficult to see any colors. There is a large tree that has fallen across the road and is blocking all lanes of traffic. There is no way for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:07.592840+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-08T05:23:53.526168+00:00", "objects": ["water_level", "image_condition", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:21:48.729103+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:24:14.584190+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:24:12.177770+00:00", "label": "true", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. It is blocking the entire right lane."}, {"object": "image_description", "timestamp": "2024-02-08T05:24:17.295606+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There is a large puddle of water on the road that is more than half the height of a wheel. It is blocking the entire right lane. There are cars parked on either side of the street. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:24:08.869738+00:00", "label": "partially_blocked", "label_explanation": "There is a large puddle of water on the road that is more than half the height of a wheel. It is blocking the entire right lane."}]}, {"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-08T05:21:51.543290+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:16:57.516141+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_description", "timestamp": "2024-02-08T05:16:58.201585+00:00", "label": "null", "label_explanation": "This is a night-time image of a wide, tree-lined road with a brick sidewalk on the left and a bike lane on the right. There is a white car driving in the right lane and a silver car parked on the left side of the road. The street lights are on and there are no people visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:16:57.707479+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-08T05:16:57.924188+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:14:19.694349+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"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-08T05:32:55.450549+00:00", "objects": ["image_condition", "water_in_road", "image_description", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:09.403726+00:00", "label": "clean", "label_explanation": "The image is clear and not blurry with good visibility."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:08.928885+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:09.615666+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with a concrete barrier on the left and buildings and foliage on the right. There is a street lamp on the left side of the road, and the road is lit by the street lights. There is a tree on the right side of the road."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:09.192299+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:08.730707+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockages or obstacles."}]}, {"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-08T05:32:49.986455+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:33:06.918434+00:00", "label": "clean", "label_explanation": "The image is clear with no visible distortions or obstructions."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:06.710759+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry with no visible water."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:07.209124+00:00", "label": "null", "label_explanation": "The image is a night view of a crosswalk and intersection. The road is dry and there are no cars or pedestrians present. There is a green traffic light visible."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:06.428025+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:33:06.297738+00:00", "label": "free", "label_explanation": "The road is completely clear with no visible blockades or obstructions."}]}, {"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-08T05:32:41.524806+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T05:33:02.942302+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large tree that has fallen across it."}, {"object": "image_description", "timestamp": "2024-02-08T05:33:03.855835+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 the buildings are dark. There is a large tree in the foreground that has fallen across the road, blocking traffic. There is no water on the road. The image is clear and there is no interference."}, {"object": "water_level", "timestamp": "2024-02-08T05:33:03.619734+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:33:03.142682+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T05:33:03.365888+00:00", "label": "clean", "label_explanation": "The image is clear with no interference."}]}, {"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-08T05:32:42.615909+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T05:32:59.445442+00:00", "label": "clean", "label_explanation": "The image is clear with no blur or distortion."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:59.176427+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:59.642287+00:00", "label": "null", "label_explanation": "A night-time image of a long, straight road with trees on either side. There is a building to the left of the road and a fence to the right. The road is empty, with no cars or people visible."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:58.855355+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:58.611989+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}]}, {"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-08T05:32:03.774516+00:00", "objects": ["water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "water_level", "timestamp": "2024-02-08T05:32:16.051829+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-08T05:32:16.541401+00:00", "label": "null", "label_explanation": "A photo of a nearly empty street with a fence blocking the sidewalk and a few trees on the side. There is a street lamp on the right side of the image."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:16.254462+00:00", "label": "clean", "label_explanation": "The image is clear with no visible obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:15.779225+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:15.558060+00:00", "label": "totally_blocked", "label_explanation": "There is a metal fence completely blocking the sidewalk."}]}, {"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-08T05:32:40.901654+00:00", "objects": ["image_description", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-08T05:32:59.114003+00:00", "label": "null", "label_explanation": "The image shows a wide, empty road with trees on either side. There are no cars or people on the road. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-08T05:32:58.590781+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-08T05:32:55.982993+00:00", "label": "free", "label_explanation": "The road is completely clear with no blockades or obstacles."}, {"object": "image_condition", "timestamp": "2024-02-08T05:32:58.836844+00:00", "label": "clean", "label_explanation": "The image is clear and has no blurring or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-08T05:32:58.141502+00:00", "label": "false", "label_explanation": "There are no puddles or water on the road surface."}]}, {"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"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": null, "snapshot_timestamp": null, "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, "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": null, "snapshot_timestamp": null, "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, "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": "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-09T06:10:03.661909+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:04:49.201930+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road surface, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:30.642174+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:46.294545+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:30.854514+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low and indifferent."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:48.180816+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 lit by streetlights. There are a few trees on the side of the road. The trees are not blocking the road. There is a building on the corner of the intersection. The building is made of concrete and has glass windows. The building is not blocking the road. There is a car parked on the side of the road. The car is not blocking the road. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:31.117183+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass through."}]}, {"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-09T06:09:30.274600+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:44:23.013426+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:55:33.162058+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:55:32.449914+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:23.327126+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear night sky. There are trees on either side of the road, and street lights are on. There are cars driving on the road, and the traffic is moderate."}, {"object": "water_level", "timestamp": "2024-02-09T05:55:32.656383+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:55:32.858824+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}]}, {"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-09T06:09:43.534455+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.717096+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are a few cars parked on the side of the road, and the street lights are on. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.793861+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.984245+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:32.444773+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.177359+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.575894+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:57.939559+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:04:50.137832+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:49.332441+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:49.840241+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:49.609210+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:48.922855+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-09T06:04:49.141465+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a gas station on the right side. There are several parked cars on the side of the road, and a few cars are driving in the left lane. The road is lit by streetlights, and there are trees and other vegetation on either side of the road."}]}, {"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-09T06:09:58.496211+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T05:59:15.539848+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a red traffic light in the foreground and a green traffic light in the background. The street is lit by streetlights, and there are trees on either side of the street. The road surface is not visible."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:59:16.456663+00:00", "label": "free", "label_explanation": "The road is not blocked, so vehicles can pass freely."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:59:15.749310+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:59:15.294102+00:00", "label": "poor", "label_explanation": "The image is moderately corrupted with uniform color areas and distortions. The left side of the image has a large green patch, and the right side has a large black patch. The image is also slightly blurry."}, {"object": "water_level", "timestamp": "2024-02-09T05:59:16.034845+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:59:16.245531+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:10:10.680612+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_description", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:04:56.003696+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:06.779370+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:56.499899+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:53.644222+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are several cars parked on the side of the road, and the street lights are on. The road is made of asphalt and is in good condition. There are no visible signs of construction or other hazards."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:53.335510+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:56.912316+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:09:32.378620+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:09.810487+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:08.656349+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:09.182846+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:08.887593+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 road, and a few cars are parked on the side of the road. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:09.384461+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:09.591012+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:09:41.534025+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:51.330970+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:50.520159+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:50.311464+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a concrete wall on one side and trees on the other. There are no cars or people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:51.040910+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:50.838266+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:50.022488+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:10:06.265818+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:52.901273+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:57.065017+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:56.841982+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:53.365083+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:53.142772+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a man walking in the foreground, carrying a bag. There are several cars parked on the side of the road, and a few trees. The buildings are tall and brightly colored. The street is made of asphalt and is in good condition. There is a street light in the foreground."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:56.638524+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"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-09T06:10:21.902522+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:02:21.576354+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:22.062099+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:21.359116+00:00", "label": "null", "label_explanation": "The image shows a wide, curved road with a tree-lined median. There are no cars or other vehicles visible on the road. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:22.300133+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:21.839447+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:21.165140+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:10:34.932527+00:00", "objects": ["image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T05:56:35.900881+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central median and a park to the right. The road is lit by streetlights, and there are trees and other vegetation on either side. The image is taken from a slightly elevated angle, and the road is visible for a significant distance. There are no people or vehicles visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:56:36.899811+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and it is clear for traffic to pass."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:56:36.601791+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:56:36.101464+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:56:35.690095+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-09T05:56:36.375799+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"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-09T06:07:38.164803+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "road_blockade", "water_level", "image_condition", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:05:07.549368+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:08.031658+00:00", "label": "easy", "label_explanation": "The road surface is dry and there is no traffic congestion. Vehicles can drive at normal speeds."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:08.251380+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions to traffic flow."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:07.804535+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:07.144046+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": "image_description", "timestamp": "2024-02-09T06:05:07.342139+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central reservation. There are trees on either side of the road. The road is lit by streetlights. There is moderate traffic on the road, with cars driving in both directions. The road surface is dry."}]}, {"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-09T06:10:27.187763+00:00", "objects": ["image_description", "water_in_road", "water_level", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:02:21.991759+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There is a traffic light at the intersection, showing red for one road and green for the other. The street lights are on, and there are several cars visible in the image. The road surface is dry, with no visible signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:22.216225+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:22.499538+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:22.911275+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, and the traffic light is green, indicating that the road is clear for traffic."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:21.798049+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:22.696026+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:09:32.861327+00:00", "objects": ["image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:29.617413+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with two lanes separated by a white line. Street lights are present on both sides of the road. Trees are present on both sides of the road, with their leaves appearing dark green. There is a building on the left side of the road, with a small structure, possibly a food stall, on the right side. The road is not very busy, with only a few cars visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.616557+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:32.804103+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:24.552377+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.412251+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.751426+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}]}, {"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-09T06:07:34.360253+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:59.069174+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:58.094383+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:58.808393+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-09T06:07:59.285110+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:58.306841+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is lit by streetlights, and there are trees and buildings on either side of the street. There is a car parked on the side of the street, and a few people are walking on the sidewalk."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:58.598590+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:09:36.438535+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:30.554970+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:29.177546+00:00", "label": "null", "label_explanation": "A night-time image of a relatively narrow road with a bus driving away from the camera. Street lights illuminate the scene, and there are trees and buildings on either side of the road. The road surface is not clearly visible, but it appears to be dry."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:30.098507+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:29.885778+00:00", "label": "false", "label_explanation": "There is no visible water on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:30.310632+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no visible water, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:26.838543+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."}]}, {"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-09T06:09:37.456386+00:00", "objects": ["image_condition", "water_in_road", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:16.320140+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:16.853750+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:17.103272+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:16.583849+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 dry, and there is no traffic."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:17.522935+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:17.307962+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:09:32.424593+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:04:21.374576+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a church on the left and several buildings on the right. The road is empty, with no cars or pedestrians visible. There are trees on either side of the road, and the street lights are on. The sky is clear, and there are no visible signs of rain."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:22.366951+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:21.161581+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:21.643691+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:21.914923+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-09T06:04:22.156173+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:09:33.715230+00:00", "objects": ["image_condition", "image_description", "water_level", "road_blockade", "water_in_road", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:29.549861+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:29.785418+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. There is a bus lane on the left side of the road and a cycle lane on the right side. The road is in good condition, with no visible signs of damage. There are a few trees on either side of the road, and the weather is clear."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:30.410696+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:30.877059+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:30.049693+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:30.648076+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic."}]}, {"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-09T06:10:24.415363+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-09T06:08:08.499996+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:07.904529+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:08.796204+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the road is clear for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:08.229275+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:07.292841+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. The image quality is good."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:07.502038+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. The roads are made of asphalt and are in good condition. There are no visible potholes or cracks. The street lights are on, and there is a clear view of the intersection. There are no people or cars visible in the image."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:55.382755+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T05:44:47.151945+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-09T05:44:44.079098+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:44:55.899622+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T05:44:43.585350+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."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:43.832002+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. There are no vehicles visible on the road. The road surface is dry and in good condition. The weather is clear and sunny."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:44:55.668417+00:00", "label": "easy", "label_explanation": "The road is dry and clear with no obstructions, making it easy for vehicles to pass."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:43.962340+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:50.040506+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:49.260583+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:49.049807+00:00", "label": "null", "label_explanation": "The image shows a six-lane road with a wide median in the center. The road is lit by streetlights, and there are trees on either side of the road. There is a building on the right side of the road, and a gas station on the left side. There are cars driving in both directions on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:48.835510+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:49.531619+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:49.797739+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:10:08.140639+00:00", "objects": ["water_in_road", "image_condition", "image_description", "water_level", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:01:56.334603+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:01:55.771390+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:56.077092+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. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:56.525077+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-09T06:01:57.082074+00:00", "label": "free", "label_explanation": "Since there is no water on the road and the road is clear, there are no road blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:56.773034+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}]}, {"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-09T06:10:15.731880+00:00", "objects": ["road_blockade", "image_condition", "image_description", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:35.044311+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:33.835271+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:34.056742+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central median. The road is lit by streetlights, and there are trees on either side of the median. There is a building on the left side of the road and a few cars parked on the right side. The road is dry, and there is no traffic."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:34.256296+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:34.592806+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:34.854853+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:07:49.489357+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-09T06:02:12.303261+00:00", "label": "easy", "label_explanation": "The small amount of water on the road surface is not causing any traffic problems."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:11.193393+00:00", "label": "true", "label_explanation": "There is a small amount of water on the road surface, but it is not covering any significant portion of the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:12.563421+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions to traffic."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:11.690374+00:00", "label": "low_indifferent", "label_explanation": "The water on the road surface is shallow and does not pose a significant risk to vehicles."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:10.765413+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:10.988427+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, straight road intersection. There is a traffic light at the intersection, showing green for through traffic and yellow for left-turning vehicles. The road surface is mostly dry, with a few small puddles. There are two garbage trucks in the foreground, both stopped at the intersection. There are no other vehicles visible in the image. The street lights are on, and there are a few trees on either side of the road."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:33.799251+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T05:50:03.427237+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:50:03.120585+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:50:02.631393+00:00", "label": "poor", "label_explanation": "The image is moderately corrupted with some uniform color areas and distortions. There are also some areas of blurring, but overall the image is still usable."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:50:03.924020+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T05:50:02.842834+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a single street light visible. The street is lined with trees and there is a car parked on the side of the road. The street is not visible due to the corruption of the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:50:03.622984+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}]}, {"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-09T06:09:51.391222+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:30.995427+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no major obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:46.746888+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:47.942232+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:47.102786+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:47.471257+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:38.775378+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a white car parked on the right side of the intersection. The road is made of asphalt and is in good condition. There are no visible signs of construction or other hazards."}]}, {"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": ["road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"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."}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"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": "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_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_condition", "timestamp": "2024-02-08T20:01:24.021448+00:00", "label": "clean", "label_explanation": "The image is clear and free of visual interferences."}]}, {"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-09T06:09:55.243393+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:58.822577+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions, so it is free for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:57.666273+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:58.109603+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:57.889563+00:00", "label": "null", "label_explanation": "The image shows a wide, elevated road with a concrete barrier in the center. There are no vehicles or pedestrians visible on the road. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:58.364905+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:58.598808+00:00", "label": "easy", "label_explanation": "The road is completely dry and there are no obstructions, so it is easy for vehicles to pass."}]}, {"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-09T06:09:27.733642+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:07:45.512437+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. The road is dry, and there is no traffic visible. The sky is clear, and the sun is shining."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:09:58.528315+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:45.201498+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:45.834878+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:46.103850+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-09T06:09:53.773889+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no traffic visible, it is easy for vehicles to pass."}]}, {"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-09T06:10:04.085601+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T05:56:43.626241+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:56:43.115909+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:56:44.500420+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T05:56:43.946273+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:56:44.210860+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no visible obstructions. Traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T05:56:43.394394+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, straight road with two lanes separated by a painted median. Street lights are present on both sides of the road, and the surrounding area is moderately lit. There are no visible traffic signals or signs in the image. The road surface appears dry, and there is no visible water on the road. There are a few trees on either side of the road, and the leaves are wet from the rain. There is a green traffic light visible in the distance."}]}, {"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-09T06:09:44.067496+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:04:20.661864+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:20.036950+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:20.251243+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:19.587784+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:20.449879+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:19.834007+00:00", "label": "null", "label_explanation": "This is a night-time image of a four-lane road with a central reservation. There is a slight bend to the right. Street lights are on, and there are trees on either side of the road. The road surface is dry, and there is no visible traffic."}]}, {"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-09T06:10:32.725402+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:09.066850+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:09.292492+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:08.792505+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:08.078877+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": "image_description", "timestamp": "2024-02-09T06:08:08.289169+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a traffic light at the intersection, showing green for cars going straight and a green left arrow. The road is lit by streetlights. There are cars parked on either side of the road. The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:08.569085+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:10:03.102931+00:00", "objects": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:04:46.294941+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:46.504731+00:00", "label": "null", "label_explanation": "The image shows a night scene 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 green traffic light visible in the distance. There are no cars visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:49.523955+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for\u901a\u884c."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:48.744819+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:49.003386+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-09T06:04:49.216582+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:10:29.636122+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:05.032528+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:04.563942+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:59.222323+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a concrete barrier separating the two directions of traffic. The lanes are separated by white lines, and there is a white line on either side of the road. There are trees on either side of the road, and a wall with graffiti on one side. There are street lights along the road, and the light from the headlights of the cars is visible. There are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:05.716681+00:00", "label": "free", "label_explanation": "Since there is no water on the road surface and traffic flow is not impeded, the road is free of blockades."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:04.795573+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:58.993144+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": "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-09T06:10:01.681192+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:05:06.780769+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:10.007840+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions. There are no cars or other vehicles visible on the road, and the road is wide and has multiple lanes. The road is also in good condition, with no visible cracks or potholes."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:56.921484+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:45.947885+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": "image_description", "timestamp": "2024-02-09T06:04:51.495873+00:00", "label": "null", "label_explanation": "The image shows a wide, four-lane road with a central median. The road is in good condition, with no visible cracks or potholes. The median is well-maintained, with green grass and a few trees. There are no cars or other vehicles visible on the road. The sky is clear, and the sun is shining. The image was taken from a slightly elevated angle, which gives a good view of the road and its surroundings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:09.790711+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. The road is also wide and has multiple lanes, which would allow for easy traffic flow."}]}, {"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": ["road_blockade", "image_description", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:48.712579+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:24.238879+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:38.053936+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:22.876135+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:22.561959+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road with a pedestrian crossing. The road is lit by streetlights, and there are trees on either side of the road. There is a building on the left side of the road, and a partial view of another building on the right side. The road is not very busy, with only a few cars visible. The image is clear and well-lit, with good visibility."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:23.109832+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:23.658164+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}]}, {"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-09T06:10:29.590153+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_description", "image_condition", "road_blockade", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:56:36.276486+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:56:35.582380+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T05:56:35.368419+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 is a yellow taxi driving in the middle of the road. There are trees and buildings on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:56:35.138904+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."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:56:36.494904+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T05:56:36.031435+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}]}, {"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": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:47.729029+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:49.651107+00:00", "label": "free", "label_explanation": "The road is not blocked, and traffic is flowing freely. There are no obstructions visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:48.947148+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 causing any significant traffic disruptions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:48.512814+00:00", "label": "poor", "label_explanation": "The image is of poor quality, with significant blurring and a large area of uniform color in the top right corner. There are also some small areas of distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:48.739391+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, and buildings and other structures can be seen in the background. The road is wet, with some small puddles visible. There is a car driving in the right lane."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:49.165526+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 there are no significant puddles. The water is not causing any major traffic disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:49.424069+00:00", "label": "easy", "label_explanation": "The road is still passable for vehicles, although there may be some minor delays due to the wet conditions. Drivers should be aware of the puddles and take care when driving."}]}, {"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-09T06:09:46.219653+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:52:51.623750+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:52:51.148732+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:52:50.757588+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."}, {"object": "image_description", "timestamp": "2024-02-09T05:52:50.975231+00:00", "label": "null", "label_explanation": "The image shows a narrow road with a high curb on the left side and a low curb on the right side. There is a street lamp on the left side of the road, and a tree on the right side. The road is wet, but there is no standing water. There is a car parked on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:52:51.502251+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions. Traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T05:52:51.363296+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"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-09T06:10:13.155491+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:47:35.305410+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:47:34.602109+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:47:33.793324+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T05:47:34.826920+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:47:35.107780+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic. Vehicles can easily pass through."}, {"object": "image_description", "timestamp": "2024-02-09T05:47:34.347410+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 buildings. There is a bus stop on the right side of the road. The road is dry and there is no traffic."}]}, {"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-09T06:09:53.234227+00:00", "objects": ["water_level", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:07:55.239467+00:00", "label": "low_indifferent", "label_explanation": "The road is wet from rain, but there is no standing water. The road is not flooded."}, {"object": "image_condition", "timestamp": "2024-02-09T05:27:37.304445+00:00", "label": "poor", "label_explanation": "The image is moderately distorted, with some areas of uniform color and blurring. The overall quality is poor, but the road and other elements are still recognizable."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:55.815544+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:55.038719+00:00", "label": "false", "label_explanation": "There is no standing water on the road, only a wet surface from rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:55.449817+00:00", "label": "easy", "label_explanation": "The road is wet from rain, but there is no standing water. The road is not flooded and is passable for vehicles."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:54.837612+00:00", "label": "null", "label_explanation": "A night-time view of a road with street lights and traffic. The road is wet from rain, but there is no standing water. There are cars parked on either side of the road, and a bus is driving in the middle of the road."}]}, {"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": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:07:42.124195+00:00", "objects": ["traffic_ease_vehicle", "water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:28.731115+00:00", "label": "easy", "label_explanation": "The road is completely dry and there are no obstructions visible. Traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:28.520872+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:28.297370+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:27.806369+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:05:28.032248+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no cars or pedestrians visible in the image. The street lights are on and there is a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:29.020926+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible. Traffic flow should be unimpeded."}]}, {"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-09T06:09:27.654773+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:04:18.026737+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:18.440469+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:19.224111+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:18.764756+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:18.246441+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry and there is no visible water on the surface. There are trees and buildings on either side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:19.018255+00:00", "label": "easy", "label_explanation": "The road is dry and there are no obstructions, so traffic flow should be easy."}]}, {"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-09T06:10:29.025287+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "image_description", "water_level", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:16.404847+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:17.521278+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:17.305286+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:16.612393+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road at night. The road is well-lit and there is no traffic. There are a few trees on either side of the road and a bike lane on the right side. In the distance, there is a building with a blue wall."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:17.106387+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:16.821998+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:10:29.182977+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:34.731132+00:00", "label": "easy", "label_explanation": "The road is completely dry and there is no traffic, so it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:33.740354+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:34.233922+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:34.524295+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:05:34.018247+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a school crossing sign on the right. There is a row of trees on the left side of the road and a few cars parked on the right side. The road is not very busy and there is no traffic visible."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:34.934760+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}]}, {"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-09T06:10:26.688853+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:08:17.208448+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the traffic light is green for through traffic. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:16.510475+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:16.942325+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:16.031207+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:16.243658+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road is straight and has two lanes in each direction, separated by a raised median. There is a traffic light at the intersection, showing green for through traffic. The street lights are on, and there are a few trees on either side of the road. There are no cars or pedestrians visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:16.735090+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"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-09T06:10:27.093393+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:08:08.399366+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic flow is easy, the road is free of blockades."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:07.589670+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:07.886697+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:24.186638+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:24.414895+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are traffic lights at the intersection, and street lights along the road. There are cars, buses, and motorcycles on the road, and people are walking on the sidewalks. The road is dry, and there is no visible water."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:08.104736+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow should be easy."}]}, {"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-09T06:07:46.753142+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "road_blockade", "image_condition", "water_level", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:14.454399+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:13.945506+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:14.660673+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:13.452178+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:14.232758+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-09T06:02:13.732530+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree in the foreground on the left side. The road is bordered by a fence and there are buildings in the background. The road is not very busy, with only a few cars visible. The image is taken from a slightly elevated angle, which gives a good view of the road and its surroundings."}]}, {"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-09T06:10:21.711622+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:59.658052+00:00", "label": "easy", "label_explanation": "The road is completely dry, so vehicles can travel at normal speeds."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:58.762488+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_level", "timestamp": "2024-02-09T06:07:59.404678+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:58.979395+00:00", "label": "null", "label_explanation": "The image shows a wide road with a slight bend to the right. There are no vehicles on the road, and the street lights are on. The road is lined with trees, and there are buildings and other structures on either side of the road. The sky is clear, and there are no visible signs of rain."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:59.190459+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:59.886751+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}]}, {"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-09T06:10:24.405962+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-09T06:08:10.512310+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:09.928830+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:09.728433+00:00", "label": "null", "label_explanation": "The image shows a four-lane road at night. The road is lit by streetlights, and there are cars driving in both directions. There is a building on the left side of the road and a gas station on the right side. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:10.246671+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:10.711634+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:09.502586+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}]}, {"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-09T06:09:32.378536+00:00", "objects": ["water_level", "water_in_road", "image_condition", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:10:14.455596+00:00", "label": "low_indifferent", "label_explanation": "The water is at a low level and does not cover the entire road."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:14.192265+00:00", "label": "true", "label_explanation": "There is water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:22.852979+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:24.551814+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a green traffic light on the left side of the image. The street is made of asphalt and is lined with trees. There are cars parked on the side of the street. The street is wet from the rain."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:16.118465+00:00", "label": "free", "label_explanation": "The road is not blocked and is passable for vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:15.832321+00:00", "label": "easy", "label_explanation": "The road is easy to navigate for vehicles."}]}, {"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-09T06:09:40.803633+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:22.856888+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:24.005705+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:23.219104+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:23.583156+00:00", "label": "easy", "label_explanation": "The road is completely dry, so there is no hindrance to traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:19.972304+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street lights along the road. There are cars parked on either side of the road, and a few people are walking around."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:35.207462+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": "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-09T06:10:00.588879+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:33.425123+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:34.294462+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:29.993154+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:32.984046+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are several cars parked on the side of the road and a few people walking around. The street lights are on and the traffic lights are green. There is a building with a green awning on the corner."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.799110+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:34.028603+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:10:13.748840+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.142140+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:53:26.341620+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:54.849084+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for\u901a\u884c."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:54.361743+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-09T05:53:26.535667+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a single motorcycle in the foreground. The road is lined with trees and buildings, and there is a traffic light in the distance. The sky is clear and there are no visible signs of rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:54.637365+00:00", "label": "easy", "label_explanation": "With no water on the road, vehicles can move with ease."}]}, {"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-09T06:10:08.436902+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:02:08.033880+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-09T06:02:08.616670+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:08.967207+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-09T06:02:09.545464+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:08.272502+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a yellow taxi driving on the rightmost lane, and a few trees on the left side of the road. The road is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:09.279277+00:00", "label": "easy", "label_explanation": "Since the road is dry, it is easy for vehicles to pass."}]}, {"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": ["image_condition", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "road_blockade"], "identifications": [{"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."}, {"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_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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"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": "road_blockade", "timestamp": "2024-02-08T20:01:13.441835+00:00", "label": "free", "label_explanation": "There are no obstructions on the road."}]}, {"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-09T06:09:46.519501+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:04:19.801261+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:19.307425+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:21.904733+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-09T06:04:19.532669+00:00", "label": "null", "label_explanation": "This is a night-time image of a relatively wide, urban road with two lanes separated by a painted median. Street lights are present along the road, and there are trees on either side. There is a tall building on the left side of the image, and a few cars are parked on the right side. The road surface is wet, but there is no standing water."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:22.133833+00:00", "label": "easy", "label_explanation": "Since the road surface is dry, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:22.402066+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly."}]}, {"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-09T06:09:38.889462+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-09T05:52:55.782082+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:52:56.566496+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:52:56.272171+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic flow."}, {"object": "image_condition", "timestamp": "2024-02-09T05:52:55.296770+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."}, {"object": "water_level", "timestamp": "2024-02-09T05:52:56.060225+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_description", "timestamp": "2024-02-09T05:52:55.577591+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane urban road with a central reservation. The road is lit by streetlights, and there are trees on either side. There is a building with graffiti on the right side of the road, and a bus stop on the left side. There is a white van driving in the right lane, and a red car is driving in the left lane. There are no pedestrians visible in the image."}]}, {"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-09T06:09:35.658666+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.117315+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian bridge in the middle. There are trees and buildings on either side of the road. The road is lit by streetlights. There is a crosswalk on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:35.093680+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-09T06:10:32.386480+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.212157+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:32.677604+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:32.908866+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:09:38.103585+00:00", "objects": ["water_level", "image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:10:33.569746+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:32.439029+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.984949+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.774850+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.987766+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:32.687020+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road surface is dry, with no visible signs of water. There are a few parked cars on the side of the road, and the street lights are on. The buildings along the road are mostly commercial, with a few residential buildings mixed in. The intersection is well-lit, and there are no visible signs of construction or other hazards."}]}, {"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-09T06:09:30.227027+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:10:34.182991+00:00", "label": "clean", "label_explanation": "The image is slightly blurry, but overall, it is clear enough to analyze."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:34.659725+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:29.596780+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:34.426726+00:00", "label": "null", "label_explanation": "This is a night-time image of a four-lane road with a pedestrian crossing. There are two cars in the foreground, both of which are stopped at the pedestrian crossing. There are no other cars visible in the image. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:34.873649+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-09T06:10:35.086516+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}]}, {"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-09T06:09:40.103571+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "water_level", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:04:06.662972+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:06.459885+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tall building on the left side of the image, and a row of parked cars on the right side. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:10.855165+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for traffic."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:06.856816+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-09T06:04:07.569319+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:06.253022+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."}]}, {"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-09T06:10:21.306187+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:08:09.038614+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:08.537544+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:09.747602+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:09.235561+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:08.823911+00:00", "label": "null", "label_explanation": "The image shows a wide road with a painted median and several lanes of traffic. There are trees on either side of the road and buildings in the background. The road is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:09.530385+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}]}, {"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-09T06:09:56.501503+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:04:45.483027+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:44:49.634697+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:45.711510+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-09T05:44:50.006348+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a pedestrian crossing. On the left side of the road, there is a park with a fence and several trees. On the right side of the road, there are a few trees and a street lamp. The road is well-lit and there are no visible signs of construction or other obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:48.705739+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic ease for vehicles is easy, the road is free of blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:45.979061+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic ease for vehicles is easy."}]}, {"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-09T06:09:32.434034+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.278701+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:54.979502+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for\u901a\u884c."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:53.976473+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 the headlights of cars. There are trees on either side of the street and a few cars parked on the side of the road. The street is not very busy and there are no people visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:54.486715+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:53.683589+00:00", "label": "clean", "label_explanation": "The image is clear with no visible signs of corruption or blurring."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:54.728224+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:10:10.945331+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:44:42.898241+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:44:55.692822+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T05:44:55.977935+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:44:56.964117+00:00", "label": "free", "label_explanation": "The road is clear and there are no visible signs of construction or other hazards. The single car visible is able to proceed without difficulty."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:47.150360+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a single white car visible, turning left onto the intersecting road. There are no other cars visible on the road. The road is dry and there are no visible signs of construction or other hazards. The street lights are on and there are trees and buildings visible in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:44:56.216865+00:00", "label": "easy", "label_explanation": "The road is dry and there are no visible signs of construction or other hazards. The single car visible is able to proceed without difficulty."}]}, {"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-09T06:09:48.039826+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:41:31.933315+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:41:35.199923+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T05:41:35.526527+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-09T05:41:39.539931+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:41:36.431941+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T05:41:34.925123+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a tree-lined median. There are street lights along the road, and the parked cars are on the right side of the road. There is a white car driving in the left lane and a silver car in the right lane."}]}, {"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-09T06:10:23.959752+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:10.996955+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:12.698046+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:12.400040+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-09T06:08:12.103378+00:00", "label": "low_indifferent", "label_explanation": "The road is dry, with no visible signs of water."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:11.310079+00:00", "label": "null", "label_explanation": "The image is a night view of a four-way road intersection. There are street lights along the road, and the traffic signals are visible. There are a few trees on either side of the road, and the buildings are lit up. The road is dry, and there is no traffic visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:11.722533+00:00", "label": "false", "label_explanation": "There is no water visible 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-09T06:10:29.783463+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "water_level", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:36:36.016032+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:36:35.512713+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T05:36:35.741953+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T05:36:35.056216+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T05:36:35.239075+00:00", "label": "null", "label_explanation": "The image is a night view of a narrow street with a yellow line in the middle. There is a street light on the right side of the image, and the street is lit by the light. There are buildings on both sides of the street, and some graffiti can be seen on the walls. The street is not very wide, and there is only enough space for one car to pass through. There are no people or cars visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:36:36.226427+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic flow is easy, the road is free of blockades."}]}, {"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-09T06:10:31.749329+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:15.788864+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:15.991982+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:15.557131+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-09T06:08:15.068466+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a painted median and street lights. There are a few trees on either side of the road, and buildings and other structures can be seen in the background. The road is relatively empty, with only a few cars visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:15.283633+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:14.788030+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}]}, {"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-09T06:10:22.838324+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:05:10.340232+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:09.770319+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:11.078220+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-09T06:05:10.048244+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry, and there are no visible signs of water."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:10.544672+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:10.739295+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible signs of water. There are a few cars parked on the side of the road, but they are not obstructing traffic."}]}, {"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-09T06:10:32.378569+00:00", "objects": ["image_condition", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:07.851224+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:08.640424+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:08.087274+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and the roads are marked with crosswalks and yellow grid lines. There are trees and buildings on either side of the intersection, and a few cars are visible driving through the intersection."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:09.128883+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:08.853167+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:08.352488+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:07:10.675590+00:00", "objects": ["road_blockade", "image_condition", "image_description", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:56:35.124408+00:00", "label": "free", "label_explanation": "There are no obstructions on the road and traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-09T05:56:13.156953+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-09T05:56:13.402157+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is in good condition and there is no visible water on the surface. There are trees on either side of the road and the sky is clear."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:56:19.317408+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T05:56:21.943194+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-09T05:56:30.267014+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:10:21.301157+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:10:34.629078+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-09T06:10:32.728941+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:32.988088+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:32.510056+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-09T06:10:34.885036+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. 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 trees can be seen in the background. The road 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-09T06:10:32.211042+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"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-09T06:10:01.077724+00:00", "objects": ["image_description", "water_level", "image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:34.377418+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a slight downward slope. The road is lined with buildings and trees, and there is a street light visible in the foreground. The road surface is dry, with no visible signs of water or debris. There is a yellow traffic sign painted on the road on the right side."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:34.869422+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:34.169275+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:32.292049+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:32.082353+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:34.627287+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"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-09T06:09:58.038708+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:10:29.618759+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.854204+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.585839+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:32.599540+00:00", "label": "null", "label_explanation": "This is a night-time image of a street corner in Rio de Janeiro. The street is lit by streetlights, and there are trees and buildings on either side of the street. There is a car parked on the side of the street, and a few people are walking in the background."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.058820+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.276047+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}]}, {"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-09T06:10:08.576501+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:31:03.861898+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the traffic light is green, indicating that the road is clear and free of blockades."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:31:03.140038+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T05:31:03.334936+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-09T05:31:02.926427+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. The road is lit by streetlights, and there are trees and buildings on either side of the road. There is a green traffic light visible. The road is dry, and there is no visible traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:31:03.631980+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no visible traffic, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T05:31:02.629382+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring. There are no uniform color areas or distortions."}]}, {"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-09T06:10:05.790880+00:00", "objects": ["image_description", "water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.586747+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street lights along the road. There are cars parked on the side of the road, and a few trees. The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.797820+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:29.621550+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."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:34.008184+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road surface, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.417775+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.797277+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:10:16.918119+00:00", "objects": ["road_blockade", "image_description", "water_level", "traffic_ease_vehicle", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:08:10.138997+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:09.169092+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gas station on the left and a church on the right. There are trees on both sides of the road. The road is not very busy, with only a few cars visible."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:09.647638+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-09T06:08:09.927448+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:08.939080+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-09T06:08:09.423168+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:10:29.149150+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:10.233274+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no visible traffic, it is easy for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:09.943107+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:09.245436+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-09T06:08:09.764252+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:09.453762+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are cars parked on both sides of the road, and the street lights are on. The road is dry, and there is no visible traffic."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:10.447096+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}]}, {"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-09T06:10:32.343738+00:00", "objects": ["image_description", "water_level", "water_in_road", "image_condition", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:02:12.223480+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There is a traffic light at the intersection, and the road is lined with trees. There are no cars or pedestrians visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:12.700138+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:12.507360+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:12.002865+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The lighting is adequate, and the road surface is clearly visible."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:13.196796+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions, so traffic flow should be unimpeded."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:12.990904+00:00", "label": "easy", "label_explanation": "The road surface is dry and there are no obstructions, so traffic flow should be easy."}]}, {"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-09T06:10:15.513278+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-09T06:07:55.368948+00:00", "label": "easy", "label_explanation": "With no water on the road surface, vehicles can move with ease."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:55.119301+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-09T06:05:23.038376+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a street light on the left side of the image, and a building on the right side. The street is wet from the rain, and there are a few puddles on the ground. There is a tree in the foreground, and some graffiti on the wall in the background."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.791598+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:55.589179+00:00", "label": "free", "label_explanation": "Since there is no water or other obstructions on the road, the road is completely clear for traffic."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:22.834323+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:10:12.831823+00:00", "objects": ["water_level", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:05:23.108795+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:23.323460+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:22.913707+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:23.614669+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:22.418079+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": "image_description", "timestamp": "2024-02-09T06:05:22.632084+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, urban road intersection. The road is surrounded by trees and buildings, and there is a traffic light at the intersection. There are no cars or pedestrians visible in the image."}]}, {"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-09T06:10:08.678730+00:00", "objects": ["water_level", "traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:07:56.512665+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-09T06:07:56.800159+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:55.988671+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street signs on the left and right sides of the image. There are several cars parked on the side of the road, and a few trees can be seen in the background. The road is not completely visible due to parked cars, but it appears to be in good condition."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:56.281104+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:57.005364+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:55.721952+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": "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-09T06:10:19.319993+00:00", "objects": ["image_description", "water_level", "traffic_ease_vehicle", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.719861+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a bus stop on the right side. There are trees on both sides 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-09T06:10:33.292380+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-09T06:10:33.564720+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.807273+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:32.442228+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-09T06:10:32.987119+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:10:19.483775+00:00", "objects": ["road_blockade", "water_level", "traffic_ease_vehicle", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:02:22.225624+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions to traffic."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:21.714733+00:00", "label": "low_indifferent", "label_explanation": "The water on the road surface is shallow and does not pose a significant risk to vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:21.997648+00:00", "label": "easy", "label_explanation": "The small amount of water on the road surface is not causing any traffic problems."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:21.451052+00:00", "label": "true", "label_explanation": "There is a small amount of water on the road surface, but it is not covering any significant portion of the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:21.126644+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road surface is mostly dry, with a few small puddles. There is a single street lamp in the center of the intersection, and the street lights on either side of the intersection are on. There are a few trees on either side of the road, and the buildings in the background are mostly dark. There is a crosswalk on the near side of the intersection, and there are traffic signals on either side of the intersection."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:20.905376+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."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file From 30aa802051b59ebb33ebe670807eba4e3cbdf172 Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 9 Feb 2024 18:58:16 -0300 Subject: [PATCH 58/64] fix: typo --- app/Home.py | 4 ++-- app/pages/Visualizar Prompt.py | 8 ++++---- app/utils/utils.py | 6 +++--- data/temp/mock_api_data.json | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/Home.py b/app/Home.py index fb2b924..bf7e987 100644 --- a/app/Home.py +++ b/app/Home.py @@ -8,7 +8,7 @@ display_agrid_table, display_camera_details, get_cameras, - get_cameras_cash, + get_cameras_cache, get_filted_cameras_objects, get_icon_color, treat_data, @@ -35,7 +35,7 @@ def fetch_and_update_data(bypass_cash=False): use_mock_data=use_mock_data, update_mock_data=update_mock_data, ) - return get_cameras_cash( + return get_cameras_cache( page_size=page_size, only_active=only_active, use_mock_data=use_mock_data, diff --git a/app/pages/Visualizar Prompt.py b/app/pages/Visualizar Prompt.py index 4f36b0a..3a73e19 100644 --- a/app/pages/Visualizar Prompt.py +++ b/app/pages/Visualizar Prompt.py @@ -5,10 +5,10 @@ import streamlit as st from utils.utils import ( get_objects, - get_objects_cash, + get_objects_cache, get_objetcs_labels_df, get_prompts, - get_prompts_cash, + get_prompts_cache, ) st.set_page_config(layout="wide", initial_sidebar_state="collapsed") @@ -21,13 +21,13 @@ def fetch_and_update_prompts(bypass_cash=False): if bypass_cash: return get_prompts() - return get_prompts_cash() + return get_prompts_cache() def fetch_and_update_objects(bypass_cash=False): if bypass_cash: return get_objects() - return get_objects_cash() + return get_objects_cache() prompt_data = fetch_and_update_prompts() diff --git a/app/utils/utils.py b/app/utils/utils.py index e91f039..1b58bf8 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -111,7 +111,7 @@ def get_prompts( @st.cache_data(ttl=60 * 2, persist=False) -def get_cameras_cash( +def get_cameras_cache( only_active=True, use_mock_data=False, update_mock_data=False, @@ -128,12 +128,12 @@ def get_cameras_cash( @st.cache_data(ttl=60 * 2, persist=False) -def get_objects_cash(page_size=100, timeout=120): +def get_objects_cache(page_size=100, timeout=120): return get_objects(page_size=page_size, timeout=timeout) @st.cache_data(ttl=60 * 2, persist=False) -def get_prompts_cash(page_size=100, timeout=120): +def get_prompts_cache(page_size=100, timeout=120): return get_prompts(page_size=page_size, timeout=timeout) diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index 95aa512..70c33f2 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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-09T06:10:03.661909+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:04:49.201930+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road surface, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:30.642174+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:46.294545+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:30.854514+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low and indifferent."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:48.180816+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 lit by streetlights. There are a few trees on the side of the road. The trees are not blocking the road. There is a building on the corner of the intersection. The building is made of concrete and has glass windows. The building is not blocking the road. There is a car parked on the side of the road. The car is not blocking the road. There are no people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:31.117183+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass through."}]}, {"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-09T06:09:30.274600+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:44:23.013426+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:55:33.162058+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:55:32.449914+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:23.327126+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear night sky. There are trees on either side of the road, and street lights are on. There are cars driving on the road, and the traffic is moderate."}, {"object": "water_level", "timestamp": "2024-02-09T05:55:32.656383+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:55:32.858824+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}]}, {"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-09T06:09:43.534455+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.717096+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are a few cars parked on the side of the road, and the street lights are on. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.793861+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.984245+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:32.444773+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.177359+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.575894+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:57.939559+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:04:50.137832+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:49.332441+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:49.840241+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:49.609210+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:48.922855+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-09T06:04:49.141465+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a gas station on the right side. There are several parked cars on the side of the road, and a few cars are driving in the left lane. The road is lit by streetlights, and there are trees and other vegetation on either side of the road."}]}, {"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-09T06:09:58.496211+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T05:59:15.539848+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a red traffic light in the foreground and a green traffic light in the background. The street is lit by streetlights, and there are trees on either side of the street. The road surface is not visible."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:59:16.456663+00:00", "label": "free", "label_explanation": "The road is not blocked, so vehicles can pass freely."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:59:15.749310+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:59:15.294102+00:00", "label": "poor", "label_explanation": "The image is moderately corrupted with uniform color areas and distortions. The left side of the image has a large green patch, and the right side has a large black patch. The image is also slightly blurry."}, {"object": "water_level", "timestamp": "2024-02-09T05:59:16.034845+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:59:16.245531+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:10:10.680612+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_description", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:04:56.003696+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:06.779370+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:56.499899+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:53.644222+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are several cars parked on the side of the road, and the street lights are on. The road is made of asphalt and is in good condition. There are no visible signs of construction or other hazards."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:53.335510+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:56.912316+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:09:32.378620+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:09.810487+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:08.656349+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:09.182846+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:08.887593+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 road, and a few cars are parked on the side of the road. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:09.384461+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:09.591012+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:09:41.534025+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:51.330970+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:50.520159+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:50.311464+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a concrete wall on one side and trees on the other. There are no cars or people visible in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:51.040910+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:50.838266+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:50.022488+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:10:06.265818+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:52.901273+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:57.065017+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:56.841982+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:53.365083+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:53.142772+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a man walking in the foreground, carrying a bag. There are several cars parked on the side of the road, and a few trees. The buildings are tall and brightly colored. The street is made of asphalt and is in good condition. There is a street light in the foreground."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:56.638524+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"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-09T06:10:21.902522+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:02:21.576354+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:22.062099+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:21.359116+00:00", "label": "null", "label_explanation": "The image shows a wide, curved road with a tree-lined median. There are no cars or other vehicles visible on the road. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:22.300133+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:21.839447+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:21.165140+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:10:34.932527+00:00", "objects": ["image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T05:56:35.900881+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central median and a park to the right. The road is lit by streetlights, and there are trees and other vegetation on either side. The image is taken from a slightly elevated angle, and the road is visible for a significant distance. There are no people or vehicles visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:56:36.899811+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and it is clear for traffic to pass."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:56:36.601791+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:56:36.101464+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:56:35.690095+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-09T05:56:36.375799+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"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-09T06:07:38.164803+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "road_blockade", "water_level", "image_condition", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:05:07.549368+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:08.031658+00:00", "label": "easy", "label_explanation": "The road surface is dry and there is no traffic congestion. Vehicles can drive at normal speeds."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:08.251380+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions to traffic flow."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:07.804535+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:07.144046+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": "image_description", "timestamp": "2024-02-09T06:05:07.342139+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central reservation. There are trees on either side of the road. The road is lit by streetlights. There is moderate traffic on the road, with cars driving in both directions. The road surface is dry."}]}, {"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-09T06:10:27.187763+00:00", "objects": ["image_description", "water_in_road", "water_level", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:02:21.991759+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There is a traffic light at the intersection, showing red for one road and green for the other. The street lights are on, and there are several cars visible in the image. The road surface is dry, with no visible signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:22.216225+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:22.499538+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:22.911275+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, and the traffic light is green, indicating that the road is clear for traffic."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:21.798049+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:22.696026+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:09:32.861327+00:00", "objects": ["image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:29.617413+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with two lanes separated by a white line. Street lights are present on both sides of the road. Trees are present on both sides of the road, with their leaves appearing dark green. There is a building on the left side of the road, with a small structure, possibly a food stall, on the right side. The road is not very busy, with only a few cars visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.616557+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:32.804103+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:24.552377+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.412251+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.751426+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}]}, {"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-09T06:07:34.360253+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "road_blockade", "image_description", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:59.069174+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:58.094383+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:58.808393+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-09T06:07:59.285110+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:58.306841+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. The street is lit by streetlights, and there are trees and buildings on either side of the street. There is a car parked on the side of the street, and a few people are walking on the sidewalk."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:58.598590+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:09:36.438535+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:30.554970+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:29.177546+00:00", "label": "null", "label_explanation": "A night-time image of a relatively narrow road with a bus driving away from the camera. Street lights illuminate the scene, and there are trees and buildings on either side of the road. The road surface is not clearly visible, but it appears to be dry."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:30.098507+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:29.885778+00:00", "label": "false", "label_explanation": "There is no visible water on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:30.310632+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no visible water, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:26.838543+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."}]}, {"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-09T06:09:37.456386+00:00", "objects": ["image_condition", "water_in_road", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:16.320140+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:16.853750+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:17.103272+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:16.583849+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 dry, and there is no traffic."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:17.522935+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:17.307962+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:09:32.424593+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:04:21.374576+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a church on the left and several buildings on the right. The road is empty, with no cars or pedestrians visible. There are trees on either side of the road, and the street lights are on. The sky is clear, and there are no visible signs of rain."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:22.366951+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:21.161581+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:21.643691+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:21.914923+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-09T06:04:22.156173+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:09:33.715230+00:00", "objects": ["image_condition", "image_description", "water_level", "road_blockade", "water_in_road", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:29.549861+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:29.785418+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. There is a bus lane on the left side of the road and a cycle lane on the right side. The road is in good condition, with no visible signs of damage. There are a few trees on either side of the road, and the weather is clear."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:30.410696+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:30.877059+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:30.049693+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:30.648076+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic."}]}, {"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-09T06:10:24.415363+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-09T06:08:08.499996+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:07.904529+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:08.796204+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the road is clear for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:08.229275+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:07.292841+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. The image quality is good."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:07.502038+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. The roads are made of asphalt and are in good condition. There are no visible potholes or cracks. The street lights are on, and there is a clear view of the intersection. There are no people or cars visible in the image."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:55.382755+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T05:44:47.151945+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-09T05:44:44.079098+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:44:55.899622+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T05:44:43.585350+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."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:43.832002+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. There are no vehicles visible on the road. The road surface is dry and in good condition. The weather is clear and sunny."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:44:55.668417+00:00", "label": "easy", "label_explanation": "The road is dry and clear with no obstructions, making it easy for vehicles to pass."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:43.962340+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:50.040506+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:49.260583+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:49.049807+00:00", "label": "null", "label_explanation": "The image shows a six-lane road with a wide median in the center. The road is lit by streetlights, and there are trees on either side of the road. There is a building on the right side of the road, and a gas station on the left side. There are cars driving in both directions on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:48.835510+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:49.531619+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:49.797739+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:10:08.140639+00:00", "objects": ["water_in_road", "image_condition", "image_description", "water_level", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:01:56.334603+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:01:55.771390+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:56.077092+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. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:56.525077+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-09T06:01:57.082074+00:00", "label": "free", "label_explanation": "Since there is no water on the road and the road is clear, there are no road blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:56.773034+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}]}, {"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-09T06:10:15.731880+00:00", "objects": ["road_blockade", "image_condition", "image_description", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:35.044311+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:33.835271+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:34.056742+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central median. The road is lit by streetlights, and there are trees on either side of the median. There is a building on the left side of the road and a few cars parked on the right side. The road is dry, and there is no traffic."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:34.256296+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:34.592806+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:34.854853+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:07:49.489357+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-09T06:02:12.303261+00:00", "label": "easy", "label_explanation": "The small amount of water on the road surface is not causing any traffic problems."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:11.193393+00:00", "label": "true", "label_explanation": "There is a small amount of water on the road surface, but it is not covering any significant portion of the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:12.563421+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions to traffic."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:11.690374+00:00", "label": "low_indifferent", "label_explanation": "The water on the road surface is shallow and does not pose a significant risk to vehicles."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:10.765413+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:10.988427+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, straight road intersection. There is a traffic light at the intersection, showing green for through traffic and yellow for left-turning vehicles. The road surface is mostly dry, with a few small puddles. There are two garbage trucks in the foreground, both stopped at the intersection. There are no other vehicles visible in the image. The street lights are on, and there are a few trees on either side of the road."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:33.799251+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T05:50:03.427237+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:50:03.120585+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:50:02.631393+00:00", "label": "poor", "label_explanation": "The image is moderately corrupted with some uniform color areas and distortions. There are also some areas of blurring, but overall the image is still usable."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:50:03.924020+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T05:50:02.842834+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a single street light visible. The street is lined with trees and there is a car parked on the side of the road. The street is not visible due to the corruption of the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:50:03.622984+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}]}, {"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-09T06:09:51.391222+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:30.995427+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no major obstructions or distortions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:46.746888+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:47.942232+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:47.102786+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:47.471257+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:38.775378+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a white car parked on the right side of the intersection. The road is made of asphalt and is in good condition. There are no visible signs of construction or other hazards."}]}, {"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": ["road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"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."}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"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": "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_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_condition", "timestamp": "2024-02-08T20:01:24.021448+00:00", "label": "clean", "label_explanation": "The image is clear and free of visual interferences."}]}, {"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-09T06:09:55.243393+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:58.822577+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions, so it is free for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:57.666273+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:58.109603+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:57.889563+00:00", "label": "null", "label_explanation": "The image shows a wide, elevated road with a concrete barrier in the center. There are no vehicles or pedestrians visible on the road. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:58.364905+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:58.598808+00:00", "label": "easy", "label_explanation": "The road is completely dry and there are no obstructions, so it is easy for vehicles to pass."}]}, {"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-09T06:09:27.733642+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:07:45.512437+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. The road is dry, and there is no traffic visible. The sky is clear, and the sun is shining."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:09:58.528315+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:45.201498+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:45.834878+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:46.103850+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-09T06:09:53.773889+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no traffic visible, it is easy for vehicles to pass."}]}, {"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-09T06:10:04.085601+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T05:56:43.626241+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:56:43.115909+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:56:44.500420+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T05:56:43.946273+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:56:44.210860+00:00", "label": "easy", "label_explanation": "The road surface is dry and clear, with no visible obstructions. Traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T05:56:43.394394+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, straight road with two lanes separated by a painted median. Street lights are present on both sides of the road, and the surrounding area is moderately lit. There are no visible traffic signals or signs in the image. The road surface appears dry, and there is no visible water on the road. There are a few trees on either side of the road, and the leaves are wet from the rain. There is a green traffic light visible in the distance."}]}, {"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-09T06:09:44.067496+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:04:20.661864+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:20.036950+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:20.251243+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:19.587784+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:20.449879+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:19.834007+00:00", "label": "null", "label_explanation": "This is a night-time image of a four-lane road with a central reservation. There is a slight bend to the right. Street lights are on, and there are trees on either side of the road. The road surface is dry, and there is no visible traffic."}]}, {"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-09T06:10:32.725402+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:09.066850+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:09.292492+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:08.792505+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:08.078877+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": "image_description", "timestamp": "2024-02-09T06:08:08.289169+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a traffic light at the intersection, showing green for cars going straight and a green left arrow. The road is lit by streetlights. There are cars parked on either side of the road. The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:08.569085+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:10:03.102931+00:00", "objects": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:04:46.294941+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:46.504731+00:00", "label": "null", "label_explanation": "The image shows a night scene 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 green traffic light visible in the distance. There are no cars visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:49.523955+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for\u901a\u884c."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:48.744819+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:49.003386+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-09T06:04:49.216582+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:10:29.636122+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:05.032528+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:04.563942+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:59.222323+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a concrete barrier separating the two directions of traffic. The lanes are separated by white lines, and there is a white line on either side of the road. There are trees on either side of the road, and a wall with graffiti on one side. There are street lights along the road, and the light from the headlights of the cars is visible. There are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:05.716681+00:00", "label": "free", "label_explanation": "Since there is no water on the road surface and traffic flow is not impeded, the road is free of blockades."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:04.795573+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:58.993144+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": "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-09T06:10:01.681192+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:05:06.780769+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:10.007840+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions. There are no cars or other vehicles visible on the road, and the road is wide and has multiple lanes. The road is also in good condition, with no visible cracks or potholes."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:56.921484+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:45.947885+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": "image_description", "timestamp": "2024-02-09T06:04:51.495873+00:00", "label": "null", "label_explanation": "The image shows a wide, four-lane road with a central median. The road is in good condition, with no visible cracks or potholes. The median is well-maintained, with green grass and a few trees. There are no cars or other vehicles visible on the road. The sky is clear, and the sun is shining. The image was taken from a slightly elevated angle, which gives a good view of the road and its surroundings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:09.790711+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. The road is also wide and has multiple lanes, which would allow for easy traffic flow."}]}, {"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": ["road_blockade", "image_description", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:48.712579+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:24.238879+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:38.053936+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:22.876135+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:22.561959+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road with a pedestrian crossing. The road is lit by streetlights, and there are trees on either side of the road. There is a building on the left side of the road, and a partial view of another building on the right side. The road is not very busy, with only a few cars visible. The image is clear and well-lit, with good visibility."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:23.109832+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:23.658164+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}]}, {"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-09T06:10:29.590153+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_description", "image_condition", "road_blockade", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:56:36.276486+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:56:35.582380+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T05:56:35.368419+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 is a yellow taxi driving in the middle of the road. There are trees and buildings on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:56:35.138904+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."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:56:36.494904+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T05:56:36.031435+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}]}, {"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": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:09:47.729029+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:49.651107+00:00", "label": "free", "label_explanation": "The road is not blocked, and traffic is flowing freely. There are no obstructions visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:48.947148+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 causing any significant traffic disruptions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:48.512814+00:00", "label": "poor", "label_explanation": "The image is of poor quality, with significant blurring and a large area of uniform color in the top right corner. There are also some small areas of distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:48.739391+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, and buildings and other structures can be seen in the background. The road is wet, with some small puddles visible. There is a car driving in the right lane."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:49.165526+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 there are no significant puddles. The water is not causing any major traffic disruptions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:49.424069+00:00", "label": "easy", "label_explanation": "The road is still passable for vehicles, although there may be some minor delays due to the wet conditions. Drivers should be aware of the puddles and take care when driving."}]}, {"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-09T06:09:46.219653+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:52:51.623750+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:52:51.148732+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:52:50.757588+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."}, {"object": "image_description", "timestamp": "2024-02-09T05:52:50.975231+00:00", "label": "null", "label_explanation": "The image shows a narrow road with a high curb on the left side and a low curb on the right side. There is a street lamp on the left side of the road, and a tree on the right side. The road is wet, but there is no standing water. There is a car parked on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:52:51.502251+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions. Traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T05:52:51.363296+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"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-09T06:10:13.155491+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:47:35.305410+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:47:34.602109+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:47:33.793324+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T05:47:34.826920+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:47:35.107780+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic. Vehicles can easily pass through."}, {"object": "image_description", "timestamp": "2024-02-09T05:47:34.347410+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 buildings. There is a bus stop on the right side of the road. The road is dry and there is no traffic."}]}, {"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-09T06:09:53.234227+00:00", "objects": ["water_level", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:07:55.239467+00:00", "label": "low_indifferent", "label_explanation": "The road is wet from rain, but there is no standing water. The road is not flooded."}, {"object": "image_condition", "timestamp": "2024-02-09T05:27:37.304445+00:00", "label": "poor", "label_explanation": "The image is moderately distorted, with some areas of uniform color and blurring. The overall quality is poor, but the road and other elements are still recognizable."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:55.815544+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:55.038719+00:00", "label": "false", "label_explanation": "There is no standing water on the road, only a wet surface from rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:55.449817+00:00", "label": "easy", "label_explanation": "The road is wet from rain, but there is no standing water. The road is not flooded and is passable for vehicles."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:54.837612+00:00", "label": "null", "label_explanation": "A night-time view of a road with street lights and traffic. The road is wet from rain, but there is no standing water. There are cars parked on either side of the road, and a bus is driving in the middle of the road."}]}, {"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": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:07:42.124195+00:00", "objects": ["traffic_ease_vehicle", "water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:28.731115+00:00", "label": "easy", "label_explanation": "The road is completely dry and there are no obstructions visible. Traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:28.520872+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:28.297370+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:27.806369+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:05:28.032248+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no cars or pedestrians visible in the image. The street lights are on and there is a building in the background."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:29.020926+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible. Traffic flow should be unimpeded."}]}, {"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-09T06:09:27.654773+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:04:18.026737+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:18.440469+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:19.224111+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:18.764756+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:18.246441+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry and there is no visible water on the surface. There are trees and buildings on either side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:19.018255+00:00", "label": "easy", "label_explanation": "The road is dry and there are no obstructions, so traffic flow should be easy."}]}, {"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-09T06:10:29.025287+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "image_description", "water_level", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:16.404847+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:17.521278+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:17.305286+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:16.612393+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road at night. The road is well-lit and there is no traffic. There are a few trees on either side of the road and a bike lane on the right side. In the distance, there is a building with a blue wall."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:17.106387+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:16.821998+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:10:29.182977+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:34.731132+00:00", "label": "easy", "label_explanation": "The road is completely dry and there is no traffic, so it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:33.740354+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:34.233922+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:34.524295+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:05:34.018247+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a school crossing sign on the right. There is a row of trees on the left side of the road and a few cars parked on the right side. The road is not very busy and there is no traffic visible."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:34.934760+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}]}, {"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-09T06:10:26.688853+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:08:17.208448+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the traffic light is green for through traffic. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:16.510475+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:16.942325+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:16.031207+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:16.243658+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road is straight and has two lanes in each direction, separated by a raised median. There is a traffic light at the intersection, showing green for through traffic. The street lights are on, and there are a few trees on either side of the road. There are no cars or pedestrians visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:16.735090+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"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-09T06:10:27.093393+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:08:08.399366+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic flow is easy, the road is free of blockades."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:07.589670+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:07.886697+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:24.186638+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:24.414895+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are traffic lights at the intersection, and street lights along the road. There are cars, buses, and motorcycles on the road, and people are walking on the sidewalks. The road is dry, and there is no visible water."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:08.104736+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow should be easy."}]}, {"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-09T06:07:46.753142+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "road_blockade", "image_condition", "water_level", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:14.454399+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:13.945506+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:14.660673+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:13.452178+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:14.232758+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-09T06:02:13.732530+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree in the foreground on the left side. The road is bordered by a fence and there are buildings in the background. The road is not very busy, with only a few cars visible. The image is taken from a slightly elevated angle, which gives a good view of the road and its surroundings."}]}, {"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-09T06:10:21.711622+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:59.658052+00:00", "label": "easy", "label_explanation": "The road is completely dry, so vehicles can travel at normal speeds."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:58.762488+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_level", "timestamp": "2024-02-09T06:07:59.404678+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:58.979395+00:00", "label": "null", "label_explanation": "The image shows a wide road with a slight bend to the right. There are no vehicles on the road, and the street lights are on. The road is lined with trees, and there are buildings and other structures on either side of the road. The sky is clear, and there are no visible signs of rain."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:59.190459+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:59.886751+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}]}, {"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-09T06:10:24.405962+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-09T06:08:10.512310+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:09.928830+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:09.728433+00:00", "label": "null", "label_explanation": "The image shows a four-lane road at night. The road is lit by streetlights, and there are cars driving in both directions. There is a building on the left side of the road and a gas station on the right side. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:10.246671+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:10.711634+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:09.502586+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}]}, {"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-09T06:09:32.378536+00:00", "objects": ["water_level", "water_in_road", "image_condition", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:10:14.455596+00:00", "label": "low_indifferent", "label_explanation": "The water is at a low level and does not cover the entire road."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:14.192265+00:00", "label": "true", "label_explanation": "There is water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:22.852979+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:24.551814+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a green traffic light on the left side of the image. The street is made of asphalt and is lined with trees. There are cars parked on the side of the street. The street is wet from the rain."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:16.118465+00:00", "label": "free", "label_explanation": "The road is not blocked and is passable for vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:15.832321+00:00", "label": "easy", "label_explanation": "The road is easy to navigate for vehicles."}]}, {"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-09T06:09:40.803633+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:22.856888+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:24.005705+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:23.219104+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:23.583156+00:00", "label": "easy", "label_explanation": "The road is completely dry, so there is no hindrance to traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:19.972304+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street lights along the road. There are cars parked on either side of the road, and a few people are walking around."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:35.207462+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": "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-09T06:10:00.588879+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:33.425123+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:34.294462+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:29.993154+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:32.984046+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are several cars parked on the side of the road and a few people walking around. The street lights are on and the traffic lights are green. There is a building with a green awning on the corner."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.799110+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:34.028603+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:10:13.748840+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.142140+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:53:26.341620+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:54.849084+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for\u901a\u884c."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:54.361743+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-09T05:53:26.535667+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a single motorcycle in the foreground. The road is lined with trees and buildings, and there is a traffic light in the distance. The sky is clear and there are no visible signs of rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:54.637365+00:00", "label": "easy", "label_explanation": "With no water on the road, vehicles can move with ease."}]}, {"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-09T06:10:08.436902+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:02:08.033880+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-09T06:02:08.616670+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:08.967207+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-09T06:02:09.545464+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:08.272502+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a yellow taxi driving on the rightmost lane, and a few trees on the left side of the road. The road is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:09.279277+00:00", "label": "easy", "label_explanation": "Since the road is dry, it is easy for vehicles to pass."}]}, {"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": ["image_condition", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "road_blockade"], "identifications": [{"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."}, {"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_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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"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": "road_blockade", "timestamp": "2024-02-08T20:01:13.441835+00:00", "label": "free", "label_explanation": "There are no obstructions on the road."}]}, {"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-09T06:09:46.519501+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:04:19.801261+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:19.307425+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:21.904733+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-09T06:04:19.532669+00:00", "label": "null", "label_explanation": "This is a night-time image of a relatively wide, urban road with two lanes separated by a painted median. Street lights are present along the road, and there are trees on either side. There is a tall building on the left side of the image, and a few cars are parked on the right side. The road surface is wet, but there is no standing water."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:22.133833+00:00", "label": "easy", "label_explanation": "Since the road surface is dry, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:22.402066+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly."}]}, {"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-09T06:09:38.889462+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-09T05:52:55.782082+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:52:56.566496+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:52:56.272171+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic flow."}, {"object": "image_condition", "timestamp": "2024-02-09T05:52:55.296770+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."}, {"object": "water_level", "timestamp": "2024-02-09T05:52:56.060225+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_description", "timestamp": "2024-02-09T05:52:55.577591+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane urban road with a central reservation. The road is lit by streetlights, and there are trees on either side. There is a building with graffiti on the right side of the road, and a bus stop on the left side. There is a white van driving in the right lane, and a red car is driving in the left lane. There are no pedestrians visible in the image."}]}, {"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-09T06:09:35.658666+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.117315+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian bridge in the middle. There are trees and buildings on either side of the road. The road is lit by streetlights. There is a crosswalk on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:35.093680+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-09T06:10:32.386480+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.212157+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:32.677604+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:32.908866+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:09:38.103585+00:00", "objects": ["water_level", "image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:10:33.569746+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:32.439029+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.984949+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.774850+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.987766+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:32.687020+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road surface is dry, with no visible signs of water. There are a few parked cars on the side of the road, and the street lights are on. The buildings along the road are mostly commercial, with a few residential buildings mixed in. The intersection is well-lit, and there are no visible signs of construction or other hazards."}]}, {"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-09T06:09:30.227027+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:10:34.182991+00:00", "label": "clean", "label_explanation": "The image is slightly blurry, but overall, it is clear enough to analyze."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:34.659725+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:29.596780+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:34.426726+00:00", "label": "null", "label_explanation": "This is a night-time image of a four-lane road with a pedestrian crossing. There are two cars in the foreground, both of which are stopped at the pedestrian crossing. There are no other cars visible in the image. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:34.873649+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-09T06:10:35.086516+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}]}, {"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-09T06:09:40.103571+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "water_level", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:04:06.662972+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:06.459885+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tall building on the left side of the image, and a row of parked cars on the right side. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:10.855165+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for traffic."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:06.856816+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-09T06:04:07.569319+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:06.253022+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."}]}, {"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-09T06:10:21.306187+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:08:09.038614+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:08.537544+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:09.747602+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:09.235561+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:08.823911+00:00", "label": "null", "label_explanation": "The image shows a wide road with a painted median and several lanes of traffic. There are trees on either side of the road and buildings in the background. The road is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:09.530385+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}]}, {"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-09T06:09:56.501503+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:04:45.483027+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:44:49.634697+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:45.711510+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-09T05:44:50.006348+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a pedestrian crossing. On the left side of the road, there is a park with a fence and several trees. On the right side of the road, there are a few trees and a street lamp. The road is well-lit and there are no visible signs of construction or other obstructions."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:48.705739+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic ease for vehicles is easy, the road is free of blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:45.979061+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic ease for vehicles is easy."}]}, {"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-09T06:09:32.434034+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.278701+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:54.979502+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for\u901a\u884c."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:53.976473+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 the headlights of cars. There are trees on either side of the street and a few cars parked on the side of the road. The street is not very busy and there are no people visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:54.486715+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:53.683589+00:00", "label": "clean", "label_explanation": "The image is clear with no visible signs of corruption or blurring."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:54.728224+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:10:10.945331+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:44:42.898241+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:44:55.692822+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T05:44:55.977935+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:44:56.964117+00:00", "label": "free", "label_explanation": "The road is clear and there are no visible signs of construction or other hazards. The single car visible is able to proceed without difficulty."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:47.150360+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a single white car visible, turning left onto the intersecting road. There are no other cars visible on the road. The road is dry and there are no visible signs of construction or other hazards. The street lights are on and there are trees and buildings visible in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:44:56.216865+00:00", "label": "easy", "label_explanation": "The road is dry and there are no visible signs of construction or other hazards. The single car visible is able to proceed without difficulty."}]}, {"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-09T06:09:48.039826+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:41:31.933315+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:41:35.199923+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T05:41:35.526527+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-09T05:41:39.539931+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:41:36.431941+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T05:41:34.925123+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a tree-lined median. There are street lights along the road, and the parked cars are on the right side of the road. There is a white car driving in the left lane and a silver car in the right lane."}]}, {"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-09T06:10:23.959752+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:10.996955+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:12.698046+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:12.400040+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-09T06:08:12.103378+00:00", "label": "low_indifferent", "label_explanation": "The road is dry, with no visible signs of water."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:11.310079+00:00", "label": "null", "label_explanation": "The image is a night view of a four-way road intersection. There are street lights along the road, and the traffic signals are visible. There are a few trees on either side of the road, and the buildings are lit up. The road is dry, and there is no traffic visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:11.722533+00:00", "label": "false", "label_explanation": "There is no water visible 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-09T06:10:29.783463+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "water_level", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:36:36.016032+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:36:35.512713+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T05:36:35.741953+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T05:36:35.056216+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T05:36:35.239075+00:00", "label": "null", "label_explanation": "The image is a night view of a narrow street with a yellow line in the middle. There is a street light on the right side of the image, and the street is lit by the light. There are buildings on both sides of the street, and some graffiti can be seen on the walls. The street is not very wide, and there is only enough space for one car to pass through. There are no people or cars visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:36:36.226427+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic flow is easy, the road is free of blockades."}]}, {"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-09T06:10:31.749329+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:15.788864+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:15.991982+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:15.557131+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-09T06:08:15.068466+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a painted median and street lights. There are a few trees on either side of the road, and buildings and other structures can be seen in the background. The road is relatively empty, with only a few cars visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:15.283633+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:14.788030+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}]}, {"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-09T06:10:22.838324+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:05:10.340232+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:09.770319+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:11.078220+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-09T06:05:10.048244+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry, and there are no visible signs of water."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:10.544672+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:10.739295+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible signs of water. There are a few cars parked on the side of the road, but they are not obstructing traffic."}]}, {"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-09T06:10:32.378569+00:00", "objects": ["image_condition", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:07.851224+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:08.640424+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:08.087274+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and the roads are marked with crosswalks and yellow grid lines. There are trees and buildings on either side of the intersection, and a few cars are visible driving through the intersection."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:09.128883+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:08.853167+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:08.352488+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:07:10.675590+00:00", "objects": ["road_blockade", "image_condition", "image_description", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:56:35.124408+00:00", "label": "free", "label_explanation": "There are no obstructions on the road and traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-09T05:56:13.156953+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-09T05:56:13.402157+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is in good condition and there is no visible water on the surface. There are trees on either side of the road and the sky is clear."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:56:19.317408+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T05:56:21.943194+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-09T05:56:30.267014+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:10:21.301157+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:10:34.629078+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-09T06:10:32.728941+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:32.988088+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:32.510056+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-09T06:10:34.885036+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. 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 trees can be seen in the background. The road 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-09T06:10:32.211042+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"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-09T06:10:01.077724+00:00", "objects": ["image_description", "water_level", "image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:34.377418+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a slight downward slope. The road is lined with buildings and trees, and there is a street light visible in the foreground. The road surface is dry, with no visible signs of water or debris. There is a yellow traffic sign painted on the road on the right side."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:34.869422+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:34.169275+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:32.292049+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:32.082353+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:34.627287+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"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-09T06:09:58.038708+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:10:29.618759+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.854204+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.585839+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:32.599540+00:00", "label": "null", "label_explanation": "This is a night-time image of a street corner in Rio de Janeiro. The street is lit by streetlights, and there are trees and buildings on either side of the street. There is a car parked on the side of the street, and a few people are walking in the background."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.058820+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.276047+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}]}, {"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-09T06:10:08.576501+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:31:03.861898+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the traffic light is green, indicating that the road is clear and free of blockades."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:31:03.140038+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T05:31:03.334936+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-09T05:31:02.926427+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. The road is lit by streetlights, and there are trees and buildings on either side of the road. There is a green traffic light visible. The road is dry, and there is no visible traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:31:03.631980+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no visible traffic, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T05:31:02.629382+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring. There are no uniform color areas or distortions."}]}, {"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-09T06:10:05.790880+00:00", "objects": ["image_description", "water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.586747+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street lights along the road. There are cars parked on the side of the road, and a few trees. The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.797820+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:29.621550+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."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:34.008184+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road surface, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.417775+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.797277+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:10:16.918119+00:00", "objects": ["road_blockade", "image_description", "water_level", "traffic_ease_vehicle", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:08:10.138997+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:09.169092+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gas station on the left and a church on the right. There are trees on both sides of the road. The road is not very busy, with only a few cars visible."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:09.647638+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-09T06:08:09.927448+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:08.939080+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-09T06:08:09.423168+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:10:29.149150+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:10.233274+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no visible traffic, it is easy for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:09.943107+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:09.245436+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-09T06:08:09.764252+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:09.453762+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are cars parked on both sides of the road, and the street lights are on. The road is dry, and there is no visible traffic."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:10.447096+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}]}, {"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-09T06:10:32.343738+00:00", "objects": ["image_description", "water_level", "water_in_road", "image_condition", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:02:12.223480+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection. There is a traffic light at the intersection, and the road is lined with trees. There are no cars or pedestrians visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:12.700138+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:12.507360+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:12.002865+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The lighting is adequate, and the road surface is clearly visible."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:13.196796+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions, so traffic flow should be unimpeded."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:12.990904+00:00", "label": "easy", "label_explanation": "The road surface is dry and there are no obstructions, so traffic flow should be easy."}]}, {"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-09T06:10:15.513278+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-09T06:07:55.368948+00:00", "label": "easy", "label_explanation": "With no water on the road surface, vehicles can move with ease."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:55.119301+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-09T06:05:23.038376+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a street light on the left side of the image, and a building on the right side. The street is wet from the rain, and there are a few puddles on the ground. There is a tree in the foreground, and some graffiti on the wall in the background."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.791598+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:55.589179+00:00", "label": "free", "label_explanation": "Since there is no water or other obstructions on the road, the road is completely clear for traffic."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:22.834323+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:10:12.831823+00:00", "objects": ["water_level", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:05:23.108795+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:23.323460+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:22.913707+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:23.614669+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:22.418079+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": "image_description", "timestamp": "2024-02-09T06:05:22.632084+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, urban road intersection. The road is surrounded by trees and buildings, and there is a traffic light at the intersection. There are no cars or pedestrians visible in the image."}]}, {"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-09T06:10:08.678730+00:00", "objects": ["water_level", "traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:07:56.512665+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-09T06:07:56.800159+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:55.988671+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street signs on the left and right sides of the image. There are several cars parked on the side of the road, and a few trees can be seen in the background. The road is not completely visible due to parked cars, but it appears to be in good condition."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:56.281104+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:57.005364+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:55.721952+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": "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-09T06:10:19.319993+00:00", "objects": ["image_description", "water_level", "traffic_ease_vehicle", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.719861+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a bus stop on the right side. There are trees on both sides 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-09T06:10:33.292380+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-09T06:10:33.564720+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.807273+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:32.442228+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-09T06:10:32.987119+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:10:19.483775+00:00", "objects": ["road_blockade", "water_level", "traffic_ease_vehicle", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:02:22.225624+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions to traffic."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:21.714733+00:00", "label": "low_indifferent", "label_explanation": "The water on the road surface is shallow and does not pose a significant risk to vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:21.997648+00:00", "label": "easy", "label_explanation": "The small amount of water on the road surface is not causing any traffic problems."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:02:21.451052+00:00", "label": "true", "label_explanation": "There is a small amount of water on the road surface, but it is not covering any significant portion of the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:21.126644+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road surface is mostly dry, with a few small puddles. There is a single street lamp in the center of the intersection, and the street lights on either side of the intersection are on. There are a few trees on either side of the road, and the buildings in the background are mostly dark. There is a crosswalk on the near side of the intersection, and there are traffic signals on either side of the intersection."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:20.905376+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."}]}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file +[{"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-09T06:15:59.281927+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:13:53.799557+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:54.930983+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:54.010337+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:53.551018+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are several cars parked on the side of the road and a few trees. The road is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:54.724154+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:53.305434+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:15:21.147054+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:44:23.013426+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:55:33.162058+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:55:32.449914+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:23.327126+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear night sky. There are trees on either side of the road, and street lights are on. There are cars driving on the road, and the traffic is moderate."}, {"object": "water_level", "timestamp": "2024-02-09T05:55:32.656383+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:55:32.858824+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}]}, {"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-09T06:15:21.337763+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.717096+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are a few cars parked on the side of the road, and the street lights are on. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.793861+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.984245+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:32.444773+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.177359+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.575894+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:22.528274+00:00", "objects": ["image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:36.573755+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with two lanes separated by a white line. Street lights are present on both sides of the road. Trees are present on both sides of the road, with their leaves appearing dark green. There is a building on the left side of the road, with a small structure, possibly a food stall, on the right side. The road is not very busy, with only a few cars visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:36.799732+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:36.989089+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:36.355950+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:37.185739+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:37.487122+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}]}, {"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-09T06:15:51.564727+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:04:50.137832+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:49.332441+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:49.840241+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:49.609210+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:48.922855+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-09T06:04:49.141465+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a gas station on the right side. There are several parked cars on the side of the road, and a few cars are driving in the left lane. The road is lit by streetlights, and there are trees and other vegetation on either side of 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-09T06:13:24.549938+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:01.112244+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-09T06:13:58.576594+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:00.900332+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:00.412128+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. 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 are no visible signs of construction or repair."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:00.627287+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:01.302563+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}]}, {"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-09T06:15:34.839993+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:54.892677+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:53.733841+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of blurring or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:54.155734+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:53.964302+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a gas station on the right side of the intersection. A black truck is turning left onto the street. There is a street sign that says 'Maracana', 'Tijuca', and 'Mangueira'."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:54.438341+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:54.646397+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:13:35.500874+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:14:03.284969+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a traffic island in the center. The road is surrounded by trees and buildings. The image is taken from a high angle, and the road is seen from a slight angle. The road is not very wide, and there is a white line down the middle. There is a traffic sign on the right side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:03.985480+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:04.182586+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:03.485461+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:03.062223+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:03.768902+00:00", "label": "low_indifferent", "label_explanation": "The road is 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-09T06:13:10.424960+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:52.901273+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:57.065017+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:56.841982+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:53.365083+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:53.142772+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a man walking in the foreground, carrying a bag. There are several cars parked on the side of the road, and a few trees. The buildings are tall and brightly colored. The street is made of asphalt and is in good condition. There is a street light in the foreground."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:56.638524+00:00", "label": "low_indifferent", "label_explanation": "The road is 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-09T06:15:28.344239+00:00", "objects": ["image_condition", "water_in_road", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:15:51.795201+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:54.924297+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:55.197154+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-09T06:15:54.708540+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 building in the background. The street is not very busy, with only a few cars parked on the side of the road. There is a bike lane on the right side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:15:55.703076+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic flow is easy, the road is free of blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:15:55.436720+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow should be easy."}]}, {"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-09T06:13:24.556928+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:02:21.576354+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:22.062099+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:21.359116+00:00", "label": "null", "label_explanation": "The image shows a wide, curved road with a tree-lined median. There are no cars or other vehicles visible on the road. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:22.300133+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:21.839447+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:21.165140+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:13:30.028523+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-09T06:14:07.869599+00:00", "label": "easy", "label_explanation": "The road surface is dry and there is no traffic visible, so it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:07.378303+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:08.167385+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:07.655359+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:06.867922+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:07.156936+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 in all directions. The road surface is dry, and there is no traffic visible. There are a few trees on the side of the road, and the buildings are mostly dark."}]}, {"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-09T06:15:27.851761+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:16:00.106919+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:59.420027+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:15:57.795526+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a concrete barrier separating the directions. The lanes are separated by white lines. There is a white car driving in the right lane. The road is lit by streetlights. There are trees and buildings on either side of the road. There is a graffiti on the wall."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:15:59.831000+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions. Traffic can flow freely."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.625792+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:15:57.523710+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}]}, {"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-09T06:13:33.910310+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "road_blockade", "water_level", "image_condition", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:05:07.549368+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:08.031658+00:00", "label": "easy", "label_explanation": "The road surface is dry and there is no traffic congestion. Vehicles can drive at normal speeds."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:08.251380+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions to traffic flow."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:07.804535+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:07.144046+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": "image_description", "timestamp": "2024-02-09T06:05:07.342139+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central reservation. There are trees on either side of the road. The road is lit by streetlights. There is moderate traffic on the road, with cars driving in both directions. The road surface is dry."}]}, {"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-09T06:13:30.417888+00:00", "objects": ["image_description", "water_in_road", "water_level", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:02:21.991759+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There is a traffic light at the intersection, showing red for one road and green for the other. The street lights are on, and there are several cars visible in the image. The road surface is dry, with no visible signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:01.132634+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:01.418545+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:11:01.974484+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:21.798049+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:11:01.640835+00:00", "label": "easy", "label_explanation": "With no water on the road surface, vehicles can move with ease."}]}, {"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-09T06:12:59.905239+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:13:52.947484+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with trees on either side. The road is lit by streetlights. There is a green traffic light visible in the distance. The road is not very busy, with only a few cars visible."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:54.329608+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic flow is easy, the road is free of blockades."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:53.191733+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:52.690757+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-09T06:13:53.734846+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-09T06:13:54.001536+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow should be easy."}]}, {"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-09T06:12:26.907431+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:30.554970+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:29.177546+00:00", "label": "null", "label_explanation": "A night-time image of a relatively narrow road with a bus driving away from the camera. Street lights illuminate the scene, and there are trees and buildings on either side of the road. The road surface is not clearly visible, but it appears to be dry."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:30.098507+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:29.885778+00:00", "label": "false", "label_explanation": "There is no visible water on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:30.310632+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no visible water, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:26.838543+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."}]}, {"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-09T06:15:29.685199+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:04:21.374576+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a church on the left and several buildings on the right. The road is empty, with no cars or pedestrians visible. There are trees on either side of the road, and the street lights are on. The sky is clear, and there are no visible signs of rain."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:22.366951+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:21.161581+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:21.643691+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:21.914923+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-09T06:04:22.156173+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:15:32.295342+00:00", "objects": ["image_condition", "image_description", "water_level", "road_blockade", "water_in_road", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:29.549861+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:29.785418+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. There is a bus lane on the left side of the road and a cycle lane on the right side. The road is in good condition, with no visible signs of damage. There are a few trees on either side of the road, and the weather is clear."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:30.410696+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:30.877059+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:30.049693+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:30.648076+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic."}]}, {"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-09T06:15:59.198679+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:48.449312+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road surface, and traffic signals are green. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:47.747788+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:47.352771+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:47.959610+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-09T06:13:47.554808+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no vehicles or pedestrians visible in the image. The road surface is dry, with no visible signs of water or debris. The street lights are on, and the traffic signals are green. There are trees and buildings on either side of the intersection."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:48.245125+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water visible, traffic flow should be easy."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:18.905922+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:22.759398+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:13.680169+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:13.186746+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:13.469154+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is in good condition and there are no visible signs of construction or other hazards. The weather is clear and sunny."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:15.434649+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:17.420104+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:36.961780+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:50.040506+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:49.260583+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:49.049807+00:00", "label": "null", "label_explanation": "The image shows a six-lane road with a wide median in the center. The road is lit by streetlights, and there are trees on either side of the road. There is a building on the right side of the road, and a gas station on the left side. There are cars driving in both directions on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:48.835510+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:49.531619+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:49.797739+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:15:49.474808+00:00", "objects": ["water_in_road", "image_condition", "image_description", "water_level", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:01:56.334603+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:01:55.771390+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:56.077092+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. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:56.525077+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-09T06:01:57.082074+00:00", "label": "free", "label_explanation": "Since there is no water on the road and the road is clear, there are no road blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:56.773034+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}]}, {"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-09T06:13:36.188359+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-09T06:14:02.743345+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:02.251148+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:02.961160+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:02.461116+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:01.836346+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:02.057212+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a traffic light at the intersection, and street signs on the left and right sides of the image. There are several cars parked on the side of the road, and a few trees can be seen in the background. The road is not very wide, and it is not clear if there is a sidewalk."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:18.447305+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T05:50:03.427237+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:50:03.120585+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:50:02.631393+00:00", "label": "poor", "label_explanation": "The image is moderately corrupted with some uniform color areas and distortions. There are also some areas of blurring, but overall the image is still usable."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:50:03.924020+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T05:50:02.842834+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a single street light visible. The street is lined with trees and there is a car parked on the side of the road. The street is not visible due to the corruption of the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:50:03.622984+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}]}, {"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": ["road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"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."}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"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": "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_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_condition", "timestamp": "2024-02-08T20:01:24.021448+00:00", "label": "clean", "label_explanation": "The image is clear and free of visual interferences."}]}, {"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-09T06:13:24.921281+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:14:08.010469+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:07.501410+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:08.731015+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:08.294957+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-09T06:14:08.505876+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:07.709399+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a tree in the center of the intersection, and street lights on either side of the road. The road is empty, with no cars or pedestrians visible."}]}, {"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-09T06:13:07.461196+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:58.822577+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions, so it is free for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:57.666273+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:58.109603+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:57.889563+00:00", "label": "null", "label_explanation": "The image shows a wide, elevated road with a concrete barrier in the center. There are no vehicles or pedestrians visible on the road. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:58.364905+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:58.598808+00:00", "label": "easy", "label_explanation": "The road is completely dry and there are no obstructions, so it is easy for vehicles to pass."}]}, {"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-09T06:13:19.456896+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "image_condition", "road_blockade", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:59.976050+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:58.455780+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, straight road with a slight downward slope. On the left side of the road, there is a sidewalk lined with trees and buildings. On the right side of the road, there are also trees and buildings, but no sidewalk. The road is lit by streetlights. There are no cars or other vehicles visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:58.653544+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:58.249405+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-09T06:11:00.168640+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:58.941607+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"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-09T06:15:48.964481+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:13:50.023844+00:00", "label": "low_indifferent", "label_explanation": "The water level is low and does not pose a risk to traffic."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:49.822131+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:50.513687+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible, so traffic flow is likely to be unimpeded."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:49.325578+00:00", "label": "poor", "label_explanation": "The image is of poor quality, with significant blurring and a large area of uniform color in the top left corner. There are also some small areas of distortion in the image."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:49.537737+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a wide, shallow river to the right. There is a low concrete barrier between the road and the river. On the left side of the road, there is a sidewalk lined with trees. There is a clear blue sky with a few wispy clouds overhead. The road is dry and there is no traffic visible."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:50.233231+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic visible, so traffic flow is likely to be easy."}]}, {"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-09T06:13:16.920514+00:00", "objects": ["road_blockade", "image_condition", "image_description", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:49.229847+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:48.033452+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:48.248181+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central median. The road is lit by streetlights, and there are trees on either side of the median. There is a building on the left side of the road and a few cars parked on the right side. The road is dry, and there is no traffic."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:48.524066+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:48.745428+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:48.945083+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:13:40.162656+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:11:05.761512+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass through."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:11:06.053049+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass through."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:05.554585+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low and indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:08.078877+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": "image_description", "timestamp": "2024-02-09T06:08:08.289169+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a traffic light at the intersection, showing green for cars going straight and a green left arrow. The road is lit by streetlights. There are cars parked on either side of the road. The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:05.331055+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:25.140099+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:06.778734+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the motorcyclist is able to pass without difficulty. Therefore, the road is 'free'."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:06.157606+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:06.375189+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-09T06:13:06.564738+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:05.699331+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:05.946852+00:00", "label": "null", "label_explanation": "A lone motorcyclist is riding on a wide, straight road. The road is bordered by trees and buildings. The sky is dark, and the streetlights are on. There are no other vehicles visible in the image."}]}, {"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-09T06:15:53.984691+00:00", "objects": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:04:46.294941+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:46.504731+00:00", "label": "null", "label_explanation": "The image shows a night scene 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 green traffic light visible in the distance. There are no cars visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:49.523955+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for\u901a\u884c."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:48.744819+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:49.003386+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-09T06:04:49.216582+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:13:27.847562+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:05.032528+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:04.563942+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:59.222323+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a concrete barrier separating the two directions of traffic. The lanes are separated by white lines, and there is a white line on either side of the road. There are trees on either side of the road, and a wall with graffiti on one side. There are street lights along the road, and the light from the headlights of the cars is visible. There are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:05.716681+00:00", "label": "free", "label_explanation": "Since there is no water on the road surface and traffic flow is not impeded, the road is free of blockades."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:04.795573+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:58.993144+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": "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": ["road_blockade", "image_description", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:38.360170+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:15:57.810759+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:59.527474+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:16:00.273544+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.729753+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-09T06:16:00.013196+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T06:15:59.287245+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a white car parked on the side of the road to the right. The road is made of asphalt and is in good condition. There are no visible signs of construction or repair. The street lights are on, and there are a few trees on either side of the road. The sky is clear, and it appears to be nighttime."}]}, {"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-09T06:15:24.222306+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:15:59.381570+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 there are a few cars parked on the side of the road. There is also some graffiti on the walls of the buildings."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:16:00.261798+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "image_condition", "timestamp": "2024-02-09T06:15:58.295267+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:59.594946+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.786662+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-09T06:16:00.053580+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, 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-09T06:15:33.128237+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:16:00.060356+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_condition", "timestamp": "2024-02-09T06:15:58.635293+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:59.373796+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:15:58.852115+00:00", "label": "null", "label_explanation": "This is a night-time image of a four-lane road intersection. The road is lit by streetlights, and there are trees on either side of the road. There are a few cars parked on the side of the road, and there is a bus driving down the road. The traffic lights at the intersection are red, and there are no pedestrians crossing the street. There is a building to the left of the intersection and a large tree to the right."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.649589+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-09T06:15:59.845318+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}]}, {"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": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:46.906988+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:13:45.903522+00:00", "label": "puddle", "label_explanation": "The water is not very deep, as cars can still drive through it. However, the puddles are large and could cause problems for smaller vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:45.688947+00:00", "label": "true", "label_explanation": "There is water on the road, as seen by the large puddles and the wet road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:46.407543+00:00", "label": "free", "label_explanation": "The road is not blocked, and cars can still drive through it. However, the puddles could cause problems for smaller vehicles."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:45.947885+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": "image_description", "timestamp": "2024-02-09T06:04:51.495873+00:00", "label": "null", "label_explanation": "The image shows a wide, four-lane road with a central median. The road is in good condition, with no visible cracks or potholes. The median is well-maintained, with green grass and a few trees. There are no cars or other vehicles visible on the road. The sky is clear, and the sun is shining. The image was taken from a slightly elevated angle, which gives a good view of the road and its surroundings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:46.193210+00:00", "label": "difficult", "label_explanation": "The puddles are large and could cause problems for smaller vehicles. The road is also narrow, making it difficult for cars to pass each other."}]}, {"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-09T06:15:30.574378+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:52:51.623750+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:52:51.148732+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:52:50.757588+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."}, {"object": "image_description", "timestamp": "2024-02-09T05:52:50.975231+00:00", "label": "null", "label_explanation": "The image shows a narrow road with a high curb on the left side and a low curb on the right side. There is a street lamp on the left side of the road, and a tree on the right side. The road is wet, but there is no standing water. There is a car parked on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:52:51.502251+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions. Traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T05:52:51.363296+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"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-09T06:15:56.637161+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:47:35.305410+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:47:34.602109+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:47:33.793324+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T05:47:34.826920+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:47:35.107780+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic. Vehicles can easily pass through."}, {"object": "image_description", "timestamp": "2024-02-09T05:47:34.347410+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 buildings. There is a bus stop on the right side of the road. The road is dry and there is no traffic."}]}, {"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-09T06:15:50.903578+00:00", "objects": ["image_condition", "water_level", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:13:46.343912+00:00", "label": "poor", "label_explanation": "The image is of poor quality, with significant blurring and a large area of uniform color on the left side. The right side of the image is also slightly distorted."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:47.113874+00:00", "label": "puddle", "label_explanation": "The water on the road is not very deep. It is mostly shallow, with some deeper puddles in the center of the road. The deepest puddles are about 2-3 inches deep."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:47.730362+00:00", "label": "free", "label_explanation": "The road is not blocked, and traffic is able to flow freely."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:46.834553+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. The water is mostly in the form of small puddles, with some larger puddles in the center of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:47.521062+00:00", "label": "difficult", "label_explanation": "The road is still passable for vehicles, although it may be difficult to drive in some areas due to the puddles. The bus in the image is able to drive through the water without any problems."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:46.624375+00:00", "label": "null", "label_explanation": "The image is a night view of a road with a bus driving in the foreground. The bus is in the right lane, and there are no other vehicles visible in the image. The road is wet from rain, and there are some puddles on the road. The street lights are on, and there are some buildings and trees visible in the background."}]}, {"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": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:13:38.590965+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:06.947359+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:05.943600+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-09T06:14:06.451696+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:06.657365+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-09T06:14:06.202390+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a school crossing sign on the right side. There is a white line down the middle of the road, dividing it into two lanes. On the left side of the road, there is a parking lot with several empty parking spaces. There are trees and buildings on both sides of the road. The sky is dark, and the street lights are on."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:07.156023+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}]}, {"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-09T06:13:37.446516+00:00", "objects": ["traffic_ease_vehicle", "water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:07.119750+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:06.922355+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:06.686753+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:06.219672+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:06.421893+00:00", "label": "null", "label_explanation": "The image shows a night scene of an urban road intersection. There is a yellow taxi driving through the intersection, and there are no other cars visible. The road is dry, and there are no signs of construction or other obstructions. The street lights are on, and the buildings in the background are illuminated."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:07.400004+00:00", "label": "free", "label_explanation": "Since the road is dry and there is no water, the road is free of blockades."}]}, {"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-09T06:15:17.509740+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:04:18.026737+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:18.440469+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:19.224111+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:18.764756+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:18.246441+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry and there is no visible water on the surface. There are trees and buildings on either side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:19.018255+00:00", "label": "easy", "label_explanation": "The road is dry and there are no obstructions, so traffic flow should be easy."}]}, {"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-09T06:12:49.370341+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:46.480998+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:47.797734+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:46.002053+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:46.266106+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are several cars parked on the side of the road and a few people walking around. The street lights are on and the traffic lights are green. There is a building with a green awning on the corner."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:46.763140+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:46.980159+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:13:30.696282+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "image_description", "water_level", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:16.404847+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:17.521278+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:17.305286+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:16.612393+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road at night. The road is well-lit and there is no traffic. There are a few trees on either side of the road and a bike lane on the right side. In the distance, there is a building with a blue wall."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:17.106387+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:16.821998+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:13:29.675141+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "road_blockade", "image_condition", "water_level", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:59.477413+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:59.012652+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:59.699436+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:58.576471+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:59.273954+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:58.815787+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tree on the left side of the image, and a person is walking on the right side of the image. There is a car parked on the side of the road, and the street is lit by streetlights."}]}, {"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-09T06:13:30.213065+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:08:17.208448+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the traffic light is green for through traffic. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:16.510475+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:16.942325+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:16.031207+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:16.243658+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road is straight and has two lanes in each direction, separated by a raised median. There is a traffic light at the intersection, showing green for through traffic. The street lights are on, and there are a few trees on either side of the road. There are no cars or pedestrians visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:16.735090+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"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-09T06:15:37.368957+00:00", "objects": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:13:04.551472+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:49.939797+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:04.347217+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:04.961766+00:00", "label": "free", "label_explanation": "Since the road is dry and there is no water, the road is not blocked and is free for traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:50.178780+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a green traffic light on the left side of the image. The street is made of asphalt and is lined with trees. There are cars parked on the side of the street. The street is wet from the rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:04.755876+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:13:21.727884+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:59.658052+00:00", "label": "easy", "label_explanation": "The road is completely dry, so vehicles can travel at normal speeds."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:58.762488+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_level", "timestamp": "2024-02-09T06:07:59.404678+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:58.979395+00:00", "label": "null", "label_explanation": "The image shows a wide road with a slight bend to the right. There are no vehicles on the road, and the street lights are on. The road is lined with trees, and there are buildings and other structures on either side of the road. The sky is clear, and there are no visible signs of rain."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:59.190459+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:59.886751+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}]}, {"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-09T06:13:32.793541+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:11:07.584514+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:06.820697+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:07.095725+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:11:06.401570+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:11:06.603191+00:00", "label": "null", "label_explanation": "The image is a night view of a four-way road intersection. There are street lights along the road, and the traffic signals are visible. There are a few cars on the road, and the street is lit by the street lights. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:11:07.310423+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:13:25.291062+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-09T06:08:10.512310+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:09.928830+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:09.728433+00:00", "label": "null", "label_explanation": "The image shows a four-lane road at night. The road is lit by streetlights, and there are cars driving in both directions. There is a building on the left side of the road and a gas station on the right side. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:10.246671+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:10.711634+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:09.502586+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}]}, {"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-09T06:15:35.681875+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:39.311299+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:39.994307+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:39.529957+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:39.806214+00:00", "label": "easy", "label_explanation": "The road is completely dry, so there is no hindrance to traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:39.082483+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street lights along the road. There are cars parked on either side of the road, and a few people are walking around."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:38.816379+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": "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-09T06:15:54.562436+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.142140+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:53:26.341620+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:54.849084+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for\u901a\u884c."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:54.361743+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-09T05:53:26.535667+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a single motorcycle in the foreground. The road is lined with trees and buildings, and there is a traffic light in the distance. The sky is clear and there are no visible signs of rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:54.637365+00:00", "label": "easy", "label_explanation": "With no water on the road, vehicles can move with ease."}]}, {"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-09T06:15:32.204763+00:00", "objects": ["water_level", "image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:10:37.068760+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:36.375809+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:36.776771+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:37.275716+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:37.560162+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:36.575640+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road surface is dry, with no visible signs of water. There are a few parked cars on the side of the road, and the street lights are on. The buildings along the road are mostly commercial, with a few residential buildings mixed in. The intersection is well-lit, and there are no visible signs of construction or other hazards."}]}, {"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-09T06:15:53.608187+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:02:08.033880+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-09T06:02:08.616670+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:08.967207+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-09T06:02:09.545464+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:08.272502+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a yellow taxi driving on the rightmost lane, and a few trees on the left side of the road. The road is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:09.279277+00:00", "label": "easy", "label_explanation": "Since the road is dry, it is easy for vehicles to pass."}]}, {"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-09T06:15:26.989575+00:00", "objects": ["image_condition", "water_in_road", "image_description", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:10:37.173275+00:00", "label": "clean", "label_explanation": "The image is slightly blurry, but overall, it is clear enough to analyze."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:37.657264+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:37.403616+00:00", "label": "null", "label_explanation": "This is a night-time image of a four-lane road with a pedestrian crossing. There are two cars in the foreground, both of which are stopped at the pedestrian crossing. There are no other cars visible in the image. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:38.376387+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:37.873890+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-09T06:10:38.180457+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}]}, {"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": ["image_condition", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "road_blockade"], "identifications": [{"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."}, {"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_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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"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": "road_blockade", "timestamp": "2024-02-08T20:01:13.441835+00:00", "label": "free", "label_explanation": "There are no obstructions on the road."}]}, {"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-09T06:15:21.825393+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-09T05:52:55.782082+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:52:56.566496+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:52:56.272171+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic flow."}, {"object": "image_condition", "timestamp": "2024-02-09T05:52:55.296770+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."}, {"object": "water_level", "timestamp": "2024-02-09T05:52:56.060225+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_description", "timestamp": "2024-02-09T05:52:55.577591+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane urban road with a central reservation. The road is lit by streetlights, and there are trees on either side. There is a building with graffiti on the right side of the road, and a bus stop on the left side. There is a white van driving in the right lane, and a red car is driving in the left lane. There are no pedestrians visible in the image."}]}, {"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-09T06:15:24.386837+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:15:57.314044+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:15:56.831911+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.369972+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-09T06:15:57.034334+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 a tall building on the left side of the image, and a few cars are parked on the side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:15:59.686830+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:15:59.936238+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}]}, {"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-09T06:13:19.978165+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:51.424062+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:50.906833+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-09T06:10:52.125397+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:51.633433+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-09T06:10:51.906218+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:51.175517+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear night sky. There are trees on either side of the road, and street lights are on. There are cars parked on the side of the road, and a few cars are driving on the road. There is a building on the right side of the road."}]}, {"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-09T06:15:26.125726+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "water_level", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:12:55.755083+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:06.459885+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tall building on the left side of the image, and a row of parked cars on the right side. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:12:56.455299+00:00", "label": "free", "label_explanation": "Since there are no obstructions visible on the road, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:12:55.964897+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-09T06:12:56.176086+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:06.253022+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."}]}, {"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-09T06:15:40.949665+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:36.191897+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian bridge in the middle. There are trees and buildings on either side of the road. The road is lit by streetlights. There is a crosswalk on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:35.093680+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-09T06:10:36.424582+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:37.280281+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:36.703550+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:36.984122+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:12:59.420411+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:13:44.398670+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:43.983287+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-09T06:13:44.669577+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-09T06:13:44.177465+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, straight road with a pedestrian crossing. The road is bordered by a sidewalk on the left and a park with a fence on the right. There are trees on both sides of the road. The road is illuminated by streetlights. There are no visible cars or people on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:45.095328+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:44.883974+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:15:40.052130+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.278701+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:54.979502+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for\u901a\u884c."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:53.976473+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 the headlights of cars. There are trees on either side of the street and a few cars parked on the side of the road. The street is not very busy and there are no people visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:54.486715+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:53.683589+00:00", "label": "clean", "label_explanation": "The image is clear with no visible signs of corruption or blurring."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:54.728224+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:13:21.614598+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:13:54.748199+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-09T06:13:56.055531+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:55.791216+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:55.553163+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-09T06:13:55.060008+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a bus driving on the road, and the traffic lights are on. There are trees and buildings on either side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:55.268535+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:12:53.979586+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:44:42.898241+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:44:55.692822+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T05:44:55.977935+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:44:56.964117+00:00", "label": "free", "label_explanation": "The road is clear and there are no visible signs of construction or other hazards. The single car visible is able to proceed without difficulty."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:47.150360+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a single white car visible, turning left onto the intersecting road. There are no other cars visible on the road. The road is dry and there are no visible signs of construction or other hazards. The street lights are on and there are trees and buildings visible in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:44:56.216865+00:00", "label": "easy", "label_explanation": "The road is dry and there are no visible signs of construction or other hazards. The single car visible is able to proceed without difficulty."}]}, {"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-09T06:15:45.439906+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:41:31.933315+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:49.692967+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:50.031055+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:50.572363+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:50.297686+00:00", "label": "easy", "label_explanation": "The road is dry and there are no obstructions, so traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T05:41:34.925123+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a tree-lined median. There are street lights along the road, and the parked cars are on the right side of the road. There is a white car driving in the left lane and a silver car in the right lane."}]}, {"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-09T06:13:32.876527+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "water_level", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:11:05.048250+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:04.646025+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:04.870237+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:11:03.954648+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}, {"object": "image_description", "timestamp": "2024-02-09T06:11:04.451911+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 a person walking in the street."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:11:05.262624+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}]}, {"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-09T06:13:35.935385+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:15.788864+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:15.991982+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:15.557131+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-09T06:08:15.068466+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a painted median and street lights. There are a few trees on either side of the road, and buildings and other structures can be seen in the background. The road is relatively empty, with only a few cars visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:15.283633+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:14.788030+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}]}, {"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-09T06:13:17.351328+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:05:10.340232+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:09.770319+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:11.078220+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-09T06:05:10.048244+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry, and there are no visible signs of water."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:10.544672+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:10.739295+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible signs of water. There are a few cars parked on the side of the road, but they are not obstructing traffic."}]}, {"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-09T06:13:24.344563+00:00", "objects": ["image_condition", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:07.851224+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:08.640424+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:08.087274+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and the roads are marked with crosswalks and yellow grid lines. There are trees and buildings on either side of the intersection, and a few cars are visible driving through the intersection."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:09.128883+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:08.853167+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:08.352488+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:15:48.182567+00:00", "objects": ["road_blockade", "image_condition", "image_description", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:11:08.391334+00:00", "label": "free", "label_explanation": "Since the road is dry and there is no water, the road is free of blockades."}, {"object": "image_condition", "timestamp": "2024-02-09T06:11:07.181887+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:11:07.405116+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry, and there are no visible signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:07.677599+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:07.970293+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-09T06:11:08.182049+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:13:27.416340+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:13:58.135982+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": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:59.051877+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic present, so it is easy for vehicles to pass through."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:59.250225+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions, so it is free for vehicles to pass through."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:58.853716+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:58.355663+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are street lights and buildings on all sides of the intersection. The road is dry and there is no traffic present."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:58.554992+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:15:49.893585+00:00", "objects": ["image_description", "water_level", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:49.791626+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a slight downward slope. The road is lined with buildings and trees, and there is a street light visible in the foreground. The road surface is dry, with no visible signs of water or debris. There is a yellow traffic sign painted on the road on the right side."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:50.287522+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:49.573780+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:50.767088+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:50.062865+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:50.483899+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:15:56.446393+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:13:49.693254+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:50.089268+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:50.784123+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:49.896157+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There are a few trees on either side of the street. The street is lit by streetlights. There is a building on the left side of the intersection and a wall on the right side. There is a car parked on the right side of the street."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:50.306445+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:50.589928+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:13:27.558649+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:14:06.872141+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:06.167638+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:06.406301+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-09T06:14:05.894196+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a bus driving straight through the intersection, and a motorcycle is turning left. The road is well-lit, and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:06.667503+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:05.670202+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The lighting is adequate, and the road surface is clearly visible."}]}, {"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-09T06:15:46.234860+00:00", "objects": ["image_description", "water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:46.484791+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street lights along the road. There are cars parked on the side of the road, and a few trees. The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:46.693060+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:46.268942+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."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:47.493714+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road surface, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:47.039252+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:47.265012+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:13:38.770122+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:06.258981+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:05.979431+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is 'low_indifferent'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:05.291122+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:05.768390+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:05.556474+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road. The road is divided into two lanes, separated by a median. On the left side of the road, there is a sidewalk lined with trees. On the right side of the road, there are some parked cars and a building in the background. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:06.486798+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}]}, {"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-09T06:13:35.501098+00:00", "objects": ["road_blockade", "image_description", "water_level", "traffic_ease_vehicle", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:14:11.898430+00:00", "label": "free", "label_explanation": "The road is clear and there are no visible signs of obstructions. Therefore, the road is free for vehicles to travel on."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:10.973807+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a gas station on the left and a church on the right. The road is well-lit and there are no visible signs of traffic. The image is taken from a slightly elevated angle, which provides a good view of the road and its surroundings."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:11.417349+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:11.688358+00:00", "label": "easy", "label_explanation": "The road is dry and there are no visible signs of traffic congestion. Therefore, it is easy for vehicles to travel on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:10.682833+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:11.194645+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:13:32.417159+00:00", "objects": ["image_description", "water_level", "water_in_road", "image_condition", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:13:57.751062+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection with traffic lights and street lights. There are trees and buildings on either side of the road. The road is dry and there is no visible traffic."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:58.324548+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:58.048042+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:57.526252+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:58.828266+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:58.587555+00:00", "label": "easy", "label_explanation": "The road is dry and there is no visible traffic, so it is easy for vehicles to pass."}]}, {"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-09T06:13:18.166429+00:00", "objects": ["water_level", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:05:23.108795+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:23.323460+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:22.913707+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:23.614669+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:22.418079+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": "image_description", "timestamp": "2024-02-09T06:05:22.632084+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, urban road intersection. The road is surrounded by trees and buildings, and there is a traffic light at the intersection. There are no cars or pedestrians visible in the image."}]}, {"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-09T06:13:15.309690+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-09T06:14:05.861198+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:05.508435+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:05.067108+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 is a tree on the left side of the image, and a building on the right side. The street is made of asphalt, and it is in good condition. There are no visible signs of construction or repair."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:05.306146+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:06.078548+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:04.797175+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}]}, {"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-09T06:13:22.194354+00:00", "objects": ["water_level", "traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:14:07.874646+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:08.089726+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-09T06:14:07.411265+00:00", "label": "null", "label_explanation": "The image is a night view 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 few pedestrians. The road surface is dry, and there is no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:07.608737+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:08.304135+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:07.185659+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}]}, {"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-09T06:13:22.700477+00:00", "objects": ["image_description", "water_level", "traffic_ease_vehicle", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:14:00.653916+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane in the center. There are trees on either side of the road and a few cars parked on the side of the road. The road is wet from the rain, but there is no flooding. There is a street light on the side of the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:01.234852+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:01.437662+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:01.636769+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:00.431939+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:00.929337+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:13:21.697378+00:00", "objects": ["road_blockade", "water_level", "traffic_ease_vehicle", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:58.653218+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:58.118952+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-09T06:13:58.383351+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:57.965970+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:57.680548+00:00", "label": "null", "label_explanation": "This is a night-time image of a relatively wide, urban road with a single yellow taxi driving in the foreground. The road is lit by a single street lamp. There are trees on either side of the road, and buildings in the background. The road is dry, with no visible signs of water."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:57.469559+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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file From 0e8cbe9fdffb929672c453a1f2741f9fd3d48220 Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 9 Feb 2024 22:00:57 -0300 Subject: [PATCH 59/64] feat: add image popup in folium map --- app/Home.py | 1 + app/utils/utils.py | 18 +++++++++++++++++- data/temp/mock_api_data.json | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/app/Home.py b/app/Home.py index bf7e987..e0cb4c2 100644 --- a/app/Home.py +++ b/app/Home.py @@ -109,6 +109,7 @@ def fetch_and_update_data(bypass_cash=False): "timestamp", "snapshot_timestamp", "bairro", + "old_snapshot", ] aggrid_table = cameras_identifications_merged.reset_index() diff --git a/app/utils/utils.py b/app/utils/utils.py index 1b58bf8..7a1d1c8 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -4,6 +4,7 @@ from typing import Union import folium +import numpy as np import pandas as pd import streamlit as st from st_aggrid import ( @@ -148,6 +149,7 @@ def treat_data(response): cameras["snapshot_timestamp"] = pd.to_datetime( cameras["snapshot_timestamp"] ).dt.tz_convert("America/Sao_Paulo") + cameras = cameras.sort_values(by=["snapshot_timestamp"]) cameras = cameras.merge(cameras_aux, on="id", how="left") cameras_attr = cameras[ @@ -236,7 +238,12 @@ def get_filted_cameras_objects( cameras_identifications_merged = cameras_identifications_merged.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, @@ -299,11 +306,18 @@ def create_map(chart_data, location=None): for _, row in chart_data.iterrows(): icon_color = get_icon_color(row["label"]) + htmlcode = f"""
+ + +
ID: {row["id"]}
Label: {row["label"]}
+
+ """ folium.Marker( location=[row["latitude"], row["longitude"]], # Adicionar id_camera ao tooltip tooltip=f"ID: {row['id']}
Label: {row['label']}", # Alterar a cor do ícone de acordo com o status + popup=htmlcode, icon=folium.features.DivIcon( icon_size=(15, 15), icon_anchor=(7, 7), @@ -350,6 +364,7 @@ def display_camera_details(row, cameras_identifications): ].apply( # noqa lambda x: x.strftime("%d/%m/%Y %H:%M") ) + rename_columns = { "timestamp": "Data Identificação", "object": "Identificador", @@ -389,6 +404,7 @@ def display_agrid_table(table): wrapText=True, hide=True, ) + 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 70c33f2..3bfdf62 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"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-09T06:15:59.281927+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:13:53.799557+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:54.930983+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:54.010337+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:53.551018+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are several cars parked on the side of the road and a few trees. The road is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:54.724154+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:53.305434+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:15:21.147054+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:44:23.013426+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:55:33.162058+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:55:32.449914+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:23.327126+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear night sky. There are trees on either side of the road, and street lights are on. There are cars driving on the road, and the traffic is moderate."}, {"object": "water_level", "timestamp": "2024-02-09T05:55:32.656383+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:55:32.858824+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}]}, {"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-09T06:15:21.337763+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:32.717096+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a tree-lined median. There are a few cars parked on the side of the road, and the street lights are on. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:33.793861+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:32.984245+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:32.444773+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:33.177359+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:33.575894+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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": ["water_level", "image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:22.528274+00:00", "objects": ["image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:36.573755+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with two lanes separated by a white line. Street lights are present on both sides of the road. Trees are present on both sides of the road, with their leaves appearing dark green. There is a building on the left side of the road, with a small structure, possibly a food stall, on the right side. The road is not very busy, with only a few cars visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:36.799732+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:36.989089+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:36.355950+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:37.185739+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:37.487122+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}]}, {"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-09T06:15:51.564727+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "water_level", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:04:50.137832+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:49.332441+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:49.840241+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:49.609210+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:48.922855+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-09T06:04:49.141465+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a gas station on the right side. There are several parked cars on the side of the road, and a few cars are driving in the left lane. The road is lit by streetlights, and there are trees and other vegetation on either side of 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-09T06:13:24.549938+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:01.112244+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-09T06:13:58.576594+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:00.900332+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:00.412128+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. 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 are no visible signs of construction or repair."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:00.627287+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:01.302563+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}]}, {"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-09T06:15:34.839993+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:54.892677+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:53.733841+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of blurring or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:54.155734+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:53.964302+00:00", "label": "null", "label_explanation": "The image shows a night view of a street intersection. There is a gas station on the right side of the intersection. A black truck is turning left onto the street. There is a street sign that says 'Maracana', 'Tijuca', and 'Mangueira'."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:54.438341+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:54.646397+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:13:35.500874+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:14:03.284969+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a traffic island in the center. The road is surrounded by trees and buildings. The image is taken from a high angle, and the road is seen from a slight angle. The road is not very wide, and there is a white line down the middle. There is a traffic sign on the right side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:03.985480+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:04.182586+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:03.485461+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:03.062223+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:03.768902+00:00", "label": "low_indifferent", "label_explanation": "The road is 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-09T06:13:10.424960+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:52.901273+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:57.065017+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:56.841982+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:53.365083+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:53.142772+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. There is a man walking in the foreground, carrying a bag. There are several cars parked on the side of the road, and a few trees. The buildings are tall and brightly colored. The street is made of asphalt and is in good condition. There is a street light in the foreground."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:56.638524+00:00", "label": "low_indifferent", "label_explanation": "The road is 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-09T06:15:28.344239+00:00", "objects": ["image_condition", "water_in_road", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:15:51.795201+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:54.924297+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:55.197154+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-09T06:15:54.708540+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 building in the background. The street is not very busy, with only a few cars parked on the side of the road. There is a bike lane on the right side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:15:55.703076+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic flow is easy, the road is free of blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:15:55.436720+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow should be easy."}]}, {"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-09T06:13:24.556928+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:02:21.576354+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:22.062099+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:21.359116+00:00", "label": "null", "label_explanation": "The image shows a wide, curved road with a tree-lined median. There are no cars or other vehicles visible on the road. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:02:22.300133+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:21.839447+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:21.165140+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}]}, {"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-09T06:13:30.028523+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-09T06:14:07.869599+00:00", "label": "easy", "label_explanation": "The road surface is dry and there is no traffic visible, so it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:07.378303+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:08.167385+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:07.655359+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:06.867922+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:07.156936+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 in all directions. The road surface is dry, and there is no traffic visible. There are a few trees on the side of the road, and the buildings are mostly dark."}]}, {"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-09T06:15:27.851761+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:16:00.106919+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:59.420027+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:15:57.795526+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a concrete barrier separating the directions. The lanes are separated by white lines. There is a white car driving in the right lane. The road is lit by streetlights. There are trees and buildings on either side of the road. There is a graffiti on the wall."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:15:59.831000+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions. Traffic can flow freely."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.625792+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:15:57.523710+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}]}, {"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-09T06:13:33.910310+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "road_blockade", "water_level", "image_condition", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:05:07.549368+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:08.031658+00:00", "label": "easy", "label_explanation": "The road surface is dry and there is no traffic congestion. Vehicles can drive at normal speeds."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:08.251380+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions to traffic flow."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:07.804535+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:07.144046+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": "image_description", "timestamp": "2024-02-09T06:05:07.342139+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central reservation. There are trees on either side of the road. The road is lit by streetlights. There is moderate traffic on the road, with cars driving in both directions. The road surface is dry."}]}, {"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-09T06:13:30.417888+00:00", "objects": ["image_description", "water_in_road", "water_level", "road_blockade", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:02:21.991759+00:00", "label": "null", "label_explanation": "The image shows a night scene of a four-way road intersection. There is a traffic light at the intersection, showing red for one road and green for the other. The street lights are on, and there are several cars visible in the image. The road surface is dry, with no visible signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:01.132634+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:01.418545+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:11:01.974484+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-09T06:02:21.798049+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."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:11:01.640835+00:00", "label": "easy", "label_explanation": "With no water on the road surface, vehicles can move with ease."}]}, {"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-09T06:12:59.905239+00:00", "objects": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:13:52.947484+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with trees on either side. The road is lit by streetlights. There is a green traffic light visible in the distance. The road is not very busy, with only a few cars visible."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:54.329608+00:00", "label": "free", "label_explanation": "Since there is no water on the road and traffic flow is easy, the road is free of blockades."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:53.191733+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:52.690757+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-09T06:13:53.734846+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-09T06:13:54.001536+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow should be easy."}]}, {"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-09T06:12:26.907431+00:00", "objects": ["road_blockade", "image_description", "water_level", "water_in_road", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:30.554970+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:29.177546+00:00", "label": "null", "label_explanation": "A night-time image of a relatively narrow road with a bus driving away from the camera. Street lights illuminate the scene, and there are trees and buildings on either side of the road. The road surface is not clearly visible, but it appears to be dry."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:30.098507+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:29.885778+00:00", "label": "false", "label_explanation": "There is no visible water on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:30.310632+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no visible water, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:26.838543+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."}]}, {"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-09T06:15:29.685199+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:04:21.374576+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a church on the left and several buildings on the right. The road is empty, with no cars or pedestrians visible. There are trees on either side of the road, and the street lights are on. The sky is clear, and there are no visible signs of rain."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:22.366951+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:21.161581+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:21.643691+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:21.914923+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-09T06:04:22.156173+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:15:32.295342+00:00", "objects": ["image_condition", "image_description", "water_level", "road_blockade", "water_in_road", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:01:29.549861+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:29.785418+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. There is a bus lane on the left side of the road and a cycle lane on the right side. The road is in good condition, with no visible signs of damage. There are a few trees on either side of the road, and the weather is clear."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:30.410696+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:01:30.877059+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:01:30.049693+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:30.648076+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic."}]}, {"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-09T06:15:59.198679+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:48.449312+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road surface, and traffic signals are green. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:47.747788+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:47.352771+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:47.959610+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-09T06:13:47.554808+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are no vehicles or pedestrians visible in the image. The road surface is dry, with no visible signs of water or debris. The street lights are on, and the traffic signals are green. There are trees and buildings on either side of the intersection."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:48.245125+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water visible, traffic flow should be easy."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:18.905922+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:22.759398+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:13.680169+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:13.186746+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:13.469154+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is in good condition and there are no visible signs of construction or other hazards. The weather is clear and sunny."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:15.434649+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:17.420104+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:36.961780+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:50.040506+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:49.260583+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:49.049807+00:00", "label": "null", "label_explanation": "The image shows a six-lane road with a wide median in the center. The road is lit by streetlights, and there are trees on either side of the road. There is a building on the right side of the road, and a gas station on the left side. There are cars driving in both directions on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:48.835510+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major obstructions or distortions."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:49.531619+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:49.797739+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:15:49.474808+00:00", "objects": ["water_in_road", "image_condition", "image_description", "water_level", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:01:56.334603+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:01:55.771390+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "image_description", "timestamp": "2024-02-09T06:01:56.077092+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. The street is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:01:56.525077+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-09T06:01:57.082074+00:00", "label": "free", "label_explanation": "Since there is no water on the road and the road is clear, there are no road blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:01:56.773034+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}]}, {"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-09T06:13:36.188359+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-09T06:14:02.743345+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:02.251148+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:02.961160+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:02.461116+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:01.836346+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:02.057212+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a traffic light at the intersection, and street signs on the left and right sides of the image. There are several cars parked on the side of the road, and a few trees can be seen in the background. The road is not very wide, and it is not clear if there is a sidewalk."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:18.447305+00:00", "objects": ["water_level", "water_in_road", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T05:50:03.427237+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:50:03.120585+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:50:02.631393+00:00", "label": "poor", "label_explanation": "The image is moderately corrupted with some uniform color areas and distortions. There are also some areas of blurring, but overall the image is still usable."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:50:03.924020+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "image_description", "timestamp": "2024-02-09T05:50:02.842834+00:00", "label": "null", "label_explanation": "The image is a night view of a street with a single street light visible. The street is lined with trees and there is a car parked on the side of the road. The street is not visible due to the corruption of the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:50:03.622984+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}]}, {"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": ["road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level", "image_condition"], "identifications": [{"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."}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"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": "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_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_condition", "timestamp": "2024-02-08T20:01:24.021448+00:00", "label": "clean", "label_explanation": "The image is clear and free of visual interferences."}]}, {"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-09T06:13:24.921281+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:14:08.010469+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:07.501410+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:08.731015+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:08.294957+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-09T06:14:08.505876+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:07.709399+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a tree in the center of the intersection, and street lights on either side of the road. The road is empty, with no cars or pedestrians visible."}]}, {"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-09T06:13:07.461196+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:07:58.822577+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions, so it is free for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:57.666273+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:58.109603+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:57.889563+00:00", "label": "null", "label_explanation": "The image shows a wide, elevated road with a concrete barrier in the center. There are no vehicles or pedestrians visible on the road. The road is lit by streetlights."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:58.364905+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:58.598808+00:00", "label": "easy", "label_explanation": "The road is completely dry and there are no obstructions, so it is easy for vehicles to pass."}]}, {"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-09T06:13:19.456896+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "image_condition", "road_blockade", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:59.976050+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:58.455780+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, straight road with a slight downward slope. On the left side of the road, there is a sidewalk lined with trees and buildings. On the right side of the road, there are also trees and buildings, but no sidewalk. The road is lit by streetlights. There are no cars or other vehicles visible in the image."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:58.653544+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:58.249405+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-09T06:11:00.168640+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:58.941607+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"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-09T06:15:48.964481+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:13:50.023844+00:00", "label": "low_indifferent", "label_explanation": "The water level is low and does not pose a risk to traffic."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:49.822131+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:50.513687+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible, so traffic flow is likely to be unimpeded."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:49.325578+00:00", "label": "poor", "label_explanation": "The image is of poor quality, with significant blurring and a large area of uniform color in the top left corner. There are also some small areas of distortion in the image."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:49.537737+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a wide, shallow river to the right. There is a low concrete barrier between the road and the river. On the left side of the road, there is a sidewalk lined with trees. There is a clear blue sky with a few wispy clouds overhead. The road is dry and there is no traffic visible."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:50.233231+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic visible, so traffic flow is likely to be easy."}]}, {"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-09T06:13:16.920514+00:00", "objects": ["road_blockade", "image_condition", "image_description", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:10:49.229847+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:48.033452+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:48.248181+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central median. The road is lit by streetlights, and there are trees on either side of the median. There is a building on the left side of the road and a few cars parked on the right side. The road is dry, and there is no traffic."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:48.524066+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:48.745428+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:48.945083+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:13:40.162656+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_condition", "image_description", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:11:05.761512+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass through."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:11:06.053049+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass through."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:05.554585+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low and indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:08.078877+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": "image_description", "timestamp": "2024-02-09T06:08:08.289169+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a traffic light at the intersection, showing green for cars going straight and a green left arrow. The road is lit by streetlights. There are cars parked on either side of the road. The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:05.331055+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"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": ["image_description", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:25.140099+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:06.778734+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the motorcyclist is able to pass without difficulty. Therefore, the road is 'free'."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:06.157606+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:06.375189+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-09T06:13:06.564738+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:05.699331+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."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:05.946852+00:00", "label": "null", "label_explanation": "A lone motorcyclist is riding on a wide, straight road. The road is bordered by trees and buildings. The sky is dark, and the streetlights are on. There are no other vehicles visible in the image."}]}, {"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-09T06:15:53.984691+00:00", "objects": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:04:46.294941+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:46.504731+00:00", "label": "null", "label_explanation": "The image shows a night scene 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 green traffic light visible in the distance. There are no cars visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:49.523955+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for\u901a\u884c."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:48.744819+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:49.003386+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-09T06:04:49.216582+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:13:27.847562+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:05.032528+00:00", "label": "easy", "label_explanation": "Since the water level is low_indifferent, traffic flow for vehicles is easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:04.563942+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:59.222323+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a concrete barrier separating the two directions of traffic. The lanes are separated by white lines, and there is a white line on either side of the road. There are trees on either side of the road, and a wall with graffiti on one side. There are street lights along the road, and the light from the headlights of the cars is visible. There are no people visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:05.716681+00:00", "label": "free", "label_explanation": "Since there is no water on the road surface and traffic flow is not impeded, the road is free of blockades."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:04.795573+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:58.993144+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": "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": ["road_blockade", "image_description", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:38.360170+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:15:57.810759+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:59.527474+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:16:00.273544+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.729753+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-09T06:16:00.013196+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T06:15:59.287245+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection. There is a white car parked on the side of the road to the right. The road is made of asphalt and is in good condition. There are no visible signs of construction or repair. The street lights are on, and there are a few trees on either side of the road. The sky is clear, and it appears to be nighttime."}]}, {"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-09T06:15:24.222306+00:00", "objects": ["image_description", "road_blockade", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:15:59.381570+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 there are a few cars parked on the side of the road. There is also some graffiti on the walls of the buildings."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:16:00.261798+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "image_condition", "timestamp": "2024-02-09T06:15:58.295267+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:59.594946+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.786662+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-09T06:16:00.053580+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, 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-09T06:15:33.128237+00:00", "objects": ["road_blockade", "image_condition", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:16:00.060356+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "image_condition", "timestamp": "2024-02-09T06:15:58.635293+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:15:59.373796+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:15:58.852115+00:00", "label": "null", "label_explanation": "This is a night-time image of a four-lane road intersection. The road is lit by streetlights, and there are trees on either side of the road. There are a few cars parked on the side of the road, and there is a bus driving down the road. The traffic lights at the intersection are red, and there are no pedestrians crossing the street. There is a building to the left of the intersection and a large tree to the right."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.649589+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-09T06:15:59.845318+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow for vehicles is easy."}]}, {"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": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:15:46.906988+00:00", "objects": ["water_level", "water_in_road", "road_blockade", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:13:45.903522+00:00", "label": "puddle", "label_explanation": "The water is not very deep, as cars can still drive through it. However, the puddles are large and could cause problems for smaller vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:45.688947+00:00", "label": "true", "label_explanation": "There is water on the road, as seen by the large puddles and the wet road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:46.407543+00:00", "label": "free", "label_explanation": "The road is not blocked, and cars can still drive through it. However, the puddles could cause problems for smaller vehicles."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:45.947885+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": "image_description", "timestamp": "2024-02-09T06:04:51.495873+00:00", "label": "null", "label_explanation": "The image shows a wide, four-lane road with a central median. The road is in good condition, with no visible cracks or potholes. The median is well-maintained, with green grass and a few trees. There are no cars or other vehicles visible on the road. The sky is clear, and the sun is shining. The image was taken from a slightly elevated angle, which gives a good view of the road and its surroundings."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:46.193210+00:00", "label": "difficult", "label_explanation": "The puddles are large and could cause problems for smaller vehicles. The road is also narrow, making it difficult for cars to pass each other."}]}, {"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-09T06:15:30.574378+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "image_description", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:52:51.623750+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:52:51.148732+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:52:50.757588+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."}, {"object": "image_description", "timestamp": "2024-02-09T05:52:50.975231+00:00", "label": "null", "label_explanation": "The image shows a narrow road with a high curb on the left side and a low curb on the right side. There is a street lamp on the left side of the road, and a tree on the right side. The road is wet, but there is no standing water. There is a car parked on the left side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:52:51.502251+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions. Traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T05:52:51.363296+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"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-09T06:15:56.637161+00:00", "objects": ["road_blockade", "water_in_road", "image_condition", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T05:47:35.305410+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:47:34.602109+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T05:47:33.793324+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T05:47:34.826920+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:47:35.107780+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic. Vehicles can easily pass through."}, {"object": "image_description", "timestamp": "2024-02-09T05:47:34.347410+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 buildings. There is a bus stop on the right side of the road. The road is dry and there is no traffic."}]}, {"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-09T06:15:50.903578+00:00", "objects": ["image_condition", "water_level", "road_blockade", "water_in_road", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:13:46.343912+00:00", "label": "poor", "label_explanation": "The image is of poor quality, with significant blurring and a large area of uniform color on the left side. The right side of the image is also slightly distorted."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:47.113874+00:00", "label": "puddle", "label_explanation": "The water on the road is not very deep. It is mostly shallow, with some deeper puddles in the center of the road. The deepest puddles are about 2-3 inches deep."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:47.730362+00:00", "label": "free", "label_explanation": "The road is not blocked, and traffic is able to flow freely."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:46.834553+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. The water is mostly in the form of small puddles, with some larger puddles in the center of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:47.521062+00:00", "label": "difficult", "label_explanation": "The road is still passable for vehicles, although it may be difficult to drive in some areas due to the puddles. The bus in the image is able to drive through the water without any problems."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:46.624375+00:00", "label": "null", "label_explanation": "The image is a night view of a road with a bus driving in the foreground. The bus is in the right lane, and there are no other vehicles visible in the image. The road is wet from rain, and there are some puddles on the road. The street lights are on, and there are some buildings and trees visible in the background."}]}, {"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": ["image_condition", "image_description", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"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}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}]}, {"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-09T06:13:38.590965+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:06.947359+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:05.943600+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-09T06:14:06.451696+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:06.657365+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-09T06:14:06.202390+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a school crossing sign on the right side. There is a white line down the middle of the road, dividing it into two lanes. On the left side of the road, there is a parking lot with several empty parking spaces. There are trees and buildings on both sides of the road. The sky is dark, and the street lights are on."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:07.156023+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}]}, {"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-09T06:13:37.446516+00:00", "objects": ["traffic_ease_vehicle", "water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:07.119750+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:06.922355+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:06.686753+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:06.219672+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:06.421893+00:00", "label": "null", "label_explanation": "The image shows a night scene of an urban road intersection. There is a yellow taxi driving through the intersection, and there are no other cars visible. The road is dry, and there are no signs of construction or other obstructions. The street lights are on, and the buildings in the background are illuminated."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:07.400004+00:00", "label": "free", "label_explanation": "Since the road is dry and there is no water, the road is free of blockades."}]}, {"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-09T06:15:17.509740+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:04:18.026737+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:04:18.440469+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:04:19.224111+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:04:18.764756+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:18.246441+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry and there is no visible water on the surface. There are trees and buildings on either side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:04:19.018255+00:00", "label": "easy", "label_explanation": "The road is dry and there are no obstructions, so traffic flow should be easy."}]}, {"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-09T06:12:49.370341+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:46.480998+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:47.797734+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:46.002053+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:46.266106+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are several cars parked on the side of the road and a few people walking around. The street lights are on and the traffic lights are green. There is a building with a green awning on the corner."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:46.763140+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:46.980159+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:13:30.696282+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "image_description", "water_level", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:16.404847+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:17.521278+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:17.305286+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:16.612393+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road at night. The road is well-lit and there is no traffic. There are a few trees on either side of the road and a bike lane on the right side. In the distance, there is a building with a blue wall."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:17.106387+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:16.821998+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:13:29.675141+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "road_blockade", "image_condition", "water_level", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:59.477413+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:59.012652+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:59.699436+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:58.576471+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:59.273954+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:58.815787+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tree on the left side of the image, and a person is walking on the right side of the image. There is a car parked on the side of the road, and the street is lit by streetlights."}]}, {"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-09T06:13:30.213065+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:08:17.208448+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the traffic light is green for through traffic. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:16.510475+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:16.942325+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:16.031207+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:16.243658+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road is straight and has two lanes in each direction, separated by a raised median. There is a traffic light at the intersection, showing green for through traffic. The street lights are on, and there are a few trees on either side of the road. There are no cars or pedestrians visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:16.735090+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"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-09T06:15:37.368957+00:00", "objects": ["water_level", "image_condition", "water_in_road", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:13:04.551472+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:49.939797+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:04.347217+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:04.961766+00:00", "label": "free", "label_explanation": "Since the road is dry and there is no water, the road is not blocked and is free for traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:50.178780+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a green traffic light on the left side of the image. The street is made of asphalt and is lined with trees. There are cars parked on the side of the street. The street is wet from the rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:04.755876+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:13:21.727884+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "image_description", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:59.658052+00:00", "label": "easy", "label_explanation": "The road is completely dry, so vehicles can travel at normal speeds."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:58.762488+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_level", "timestamp": "2024-02-09T06:07:59.404678+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:58.979395+00:00", "label": "null", "label_explanation": "The image shows a wide road with a slight bend to the right. There are no vehicles on the road, and the street lights are on. The road is lined with trees, and there are buildings and other structures on either side of the road. The sky is clear, and there are no visible signs of rain."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:07:59.190459+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:59.886751+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}]}, {"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-09T06:13:32.793541+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:11:07.584514+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:06.820697+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:07.095725+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:11:06.401570+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:11:06.603191+00:00", "label": "null", "label_explanation": "The image is a night view of a four-way road intersection. There are street lights along the road, and the traffic signals are visible. There are a few cars on the road, and the street is lit by the street lights. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:11:07.310423+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:13:25.291062+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-09T06:08:10.512310+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:09.928830+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:09.728433+00:00", "label": "null", "label_explanation": "The image shows a four-lane road at night. The road is lit by streetlights, and there are cars driving in both directions. There is a building on the left side of the road and a gas station on the right side. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:10.246671+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:10.711634+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:09.502586+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}]}, {"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-09T06:15:35.681875+00:00", "objects": ["water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:39.311299+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:39.994307+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:39.529957+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:39.806214+00:00", "label": "easy", "label_explanation": "The road is completely dry, so there is no hindrance to traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:39.082483+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street lights along the road. There are cars parked on either side of the road, and a few people are walking around."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:38.816379+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": "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-09T06:15:54.562436+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.142140+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T05:53:26.341620+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:54.849084+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for\u901a\u884c."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:54.361743+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-09T05:53:26.535667+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a single motorcycle in the foreground. The road is lined with trees and buildings, and there is a traffic light in the distance. The sky is clear and there are no visible signs of rain."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:54.637365+00:00", "label": "easy", "label_explanation": "With no water on the road, vehicles can move with ease."}]}, {"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-09T06:15:32.204763+00:00", "objects": ["water_level", "image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:10:37.068760+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:36.375809+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:36.776771+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:37.275716+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:37.560162+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:36.575640+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, urban road intersection. The road surface is dry, with no visible signs of water. There are a few parked cars on the side of the road, and the street lights are on. The buildings along the road are mostly commercial, with a few residential buildings mixed in. The intersection is well-lit, and there are no visible signs of construction or other hazards."}]}, {"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-09T06:15:53.608187+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:02:08.033880+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-09T06:02:08.616670+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:02:08.967207+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-09T06:02:09.545464+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic."}, {"object": "image_description", "timestamp": "2024-02-09T06:02:08.272502+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a pedestrian crossing. There is a yellow taxi driving on the rightmost lane, and a few trees on the left side of the road. The road is lit by streetlights."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:02:09.279277+00:00", "label": "easy", "label_explanation": "Since the road is dry, it is easy for vehicles to pass."}]}, {"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-09T06:15:26.989575+00:00", "objects": ["image_condition", "water_in_road", "image_description", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:10:37.173275+00:00", "label": "clean", "label_explanation": "The image is slightly blurry, but overall, it is clear enough to analyze."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:37.657264+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:37.403616+00:00", "label": "null", "label_explanation": "This is a night-time image of a four-lane road with a pedestrian crossing. There are two cars in the foreground, both of which are stopped at the pedestrian crossing. There are no other cars visible in the image. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:38.376387+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:37.873890+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-09T06:10:38.180457+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}]}, {"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": ["image_condition", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "road_blockade"], "identifications": [{"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."}, {"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_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": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"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": "road_blockade", "timestamp": "2024-02-08T20:01:13.441835+00:00", "label": "free", "label_explanation": "There are no obstructions on the road."}]}, {"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-09T06:15:21.825393+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-09T05:52:55.782082+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:52:56.566496+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:52:56.272171+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic flow."}, {"object": "image_condition", "timestamp": "2024-02-09T05:52:55.296770+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."}, {"object": "water_level", "timestamp": "2024-02-09T05:52:56.060225+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_description", "timestamp": "2024-02-09T05:52:55.577591+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane urban road with a central reservation. The road is lit by streetlights, and there are trees on either side. There is a building with graffiti on the right side of the road, and a bus stop on the left side. There is a white van driving in the right lane, and a red car is driving in the left lane. There are no pedestrians visible in the image."}]}, {"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-09T06:15:24.386837+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:15:57.314044+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:15:56.831911+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."}, {"object": "water_level", "timestamp": "2024-02-09T06:15:59.369972+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-09T06:15:57.034334+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 a tall building on the left side of the image, and a few cars are parked on the side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:15:59.686830+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:15:59.936238+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}]}, {"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-09T06:13:19.978165+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:10:51.424062+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:50.906833+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-09T06:10:52.125397+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:51.633433+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-09T06:10:51.906218+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T06:10:51.175517+00:00", "label": "null", "label_explanation": "The image shows a wide road with a clear night sky. There are trees on either side of the road, and street lights are on. There are cars parked on the side of the road, and a few cars are driving on the road. There is a building on the right side of the road."}]}, {"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-09T06:15:26.125726+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "water_level", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:12:55.755083+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:04:06.459885+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a tall building on the left side of the image, and a row of parked cars on the right side. The street is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:12:56.455299+00:00", "label": "free", "label_explanation": "Since there are no obstructions visible on the road, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:12:55.964897+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-09T06:12:56.176086+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:04:06.253022+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."}]}, {"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-09T06:15:40.949665+00:00", "objects": ["image_description", "image_condition", "water_in_road", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:36.191897+00:00", "label": "null", "label_explanation": "The image shows a wide road with a pedestrian bridge in the middle. There are trees and buildings on either side of the road. The road is lit by streetlights. There is a crosswalk on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:35.093680+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-09T06:10:36.424582+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:37.280281+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:36.703550+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:36.984122+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}]}, {"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-09T06:12:59.420411+00:00", "objects": ["water_in_road", "image_condition", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:13:44.398670+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:43.983287+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-09T06:13:44.669577+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-09T06:13:44.177465+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, straight road with a pedestrian crossing. The road is bordered by a sidewalk on the left and a park with a fence on the right. There are trees on both sides of the road. The road is illuminated by streetlights. There are no visible cars or people on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:45.095328+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:44.883974+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:15:40.052130+00:00", "objects": ["water_in_road", "road_blockade", "image_description", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:07:54.278701+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:07:54.979502+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for\u901a\u884c."}, {"object": "image_description", "timestamp": "2024-02-09T06:07:53.976473+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 the headlights of cars. There are trees on either side of the street and a few cars parked on the side of the road. The street is not very busy and there are no people visible in the image."}, {"object": "water_level", "timestamp": "2024-02-09T06:07:54.486715+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:07:53.683589+00:00", "label": "clean", "label_explanation": "The image is clear with no visible signs of corruption or blurring."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:07:54.728224+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}]}, {"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-09T06:13:21.614598+00:00", "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:13:54.748199+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-09T06:13:56.055531+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:55.791216+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:55.553163+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-09T06:13:55.060008+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a bus driving on the road, and the traffic lights are on. There are trees and buildings on either side of the road."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:55.268535+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:12:53.979586+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:44:42.898241+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T05:44:55.692822+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T05:44:55.977935+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T05:44:56.964117+00:00", "label": "free", "label_explanation": "The road is clear and there are no visible signs of construction or other hazards. The single car visible is able to proceed without difficulty."}, {"object": "image_description", "timestamp": "2024-02-09T05:44:47.150360+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a single white car visible, turning left onto the intersecting road. There are no other cars visible on the road. The road is dry and there are no visible signs of construction or other hazards. The street lights are on and there are trees and buildings visible in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T05:44:56.216865+00:00", "label": "easy", "label_explanation": "The road is dry and there are no visible signs of construction or other hazards. The single car visible is able to proceed without difficulty."}]}, {"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-09T06:15:45.439906+00:00", "objects": ["image_condition", "water_in_road", "water_level", "road_blockade", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T05:41:31.933315+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:49.692967+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:50.031055+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:50.572363+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:50.297686+00:00", "label": "easy", "label_explanation": "The road is dry and there are no obstructions, so traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-09T05:41:34.925123+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a tree-lined median. There are street lights along the road, and the parked cars are on the right side of the road. There is a white car driving in the left lane and a silver car in the right lane."}]}, {"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-09T06:13:32.876527+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "water_level", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:11:05.048250+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:04.646025+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:04.870237+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:11:03.954648+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}, {"object": "image_description", "timestamp": "2024-02-09T06:11:04.451911+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 a person walking in the street."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:11:05.262624+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free."}]}, {"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-09T06:13:35.935385+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:15.788864+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, it is easy for vehicles to pass."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:15.991982+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so it is free for traffic to pass."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:15.557131+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-09T06:08:15.068466+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a painted median and street lights. There are a few trees on either side of the road, and buildings and other structures can be seen in the background. The road is relatively empty, with only a few cars visible."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:15.283633+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:08:14.788030+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}]}, {"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-09T06:13:17.351328+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-09T06:05:10.340232+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:09.770319+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:11.078220+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-09T06:05:10.048244+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry, and there are no visible signs of water."}, {"object": "water_level", "timestamp": "2024-02-09T06:05:10.544672+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:10.739295+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible signs of water. There are a few cars parked on the side of the road, but they are not obstructing traffic."}]}, {"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-09T06:13:24.344563+00:00", "objects": ["image_condition", "water_level", "image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:08:07.851224+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of distortion or blurring."}, {"object": "water_level", "timestamp": "2024-02-09T06:08:08.640424+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:08:08.087274+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and the roads are marked with crosswalks and yellow grid lines. There are trees and buildings on either side of the intersection, and a few cars are visible driving through the intersection."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:08:09.128883+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:08:08.853167+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:08:08.352488+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}]}, {"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-09T06:15:48.182567+00:00", "objects": ["road_blockade", "image_condition", "image_description", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:11:08.391334+00:00", "label": "free", "label_explanation": "Since the road is dry and there is no water, the road is free of blockades."}, {"object": "image_condition", "timestamp": "2024-02-09T06:11:07.181887+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}, {"object": "image_description", "timestamp": "2024-02-09T06:11:07.405116+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is dry, and there are no visible signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:11:07.677599+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:11:07.970293+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-09T06:11:08.182049+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:13:27.416340+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:13:58.135982+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": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:59.051877+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic present, so it is easy for vehicles to pass through."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:59.250225+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions, so it is free for vehicles to pass through."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:58.853716+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:58.355663+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There are street lights and buildings on all sides of the intersection. The road is dry and there is no traffic present."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:58.554992+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:15:49.893585+00:00", "objects": ["image_description", "water_level", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:49.791626+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road with a slight downward slope. The road is lined with buildings and trees, and there is a street light visible in the foreground. The road surface is dry, with no visible signs of water or debris. There is a yellow traffic sign painted on the road on the right side."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:50.287522+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:49.573780+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of distortion or blurring. There are no uniform color patches or other indications of image corruption."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:50.767088+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:50.062865+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:50.483899+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:15:56.446393+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "image_description", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-09T06:13:49.693254+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:50.089268+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:50.784123+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:49.896157+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There are a few trees on either side of the street. The street is lit by streetlights. There is a building on the left side of the intersection and a wall on the right side. There is a car parked on the right side of the street."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:50.306445+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:50.589928+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to pass."}]}, {"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-09T06:13:27.558649+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:14:06.872141+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:06.167638+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:06.406301+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-09T06:14:05.894196+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There is a bus driving straight through the intersection, and a motorcycle is turning left. The road is well-lit, and there are no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:06.667503+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:05.670202+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible distortions or areas of uniform color. The lighting is adequate, and the road surface is clearly visible."}]}, {"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-09T06:15:46.234860+00:00", "objects": ["image_description", "water_in_road", "image_condition", "road_blockade", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:10:46.484791+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, and street lights along the road. There are cars parked on the side of the road, and a few trees. The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:10:46.693060+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-09T06:10:46.268942+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."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:10:47.493714+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road surface, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:10:47.039252+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:10:47.265012+00:00", "label": "easy", "label_explanation": "Since the road surface is dry and there is no water, traffic flow should be easy."}]}, {"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-09T06:13:38.770122+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:06.258981+00:00", "label": "easy", "label_explanation": "Since there is no water on the road, traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:05.979431+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is 'low_indifferent'."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:05.291122+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."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:05.768390+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:05.556474+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively wide, straight road. The road is divided into two lanes, separated by a median. On the left side of the road, there is a sidewalk lined with trees. On the right side of the road, there are some parked cars and a building in the background. The road is lit by streetlights."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:06.486798+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is 'free'."}]}, {"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-09T06:13:35.501098+00:00", "objects": ["road_blockade", "image_description", "water_level", "traffic_ease_vehicle", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:14:11.898430+00:00", "label": "free", "label_explanation": "The road is clear and there are no visible signs of obstructions. Therefore, the road is free for vehicles to travel on."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:10.973807+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a gas station on the left and a church on the right. The road is well-lit and there are no visible signs of traffic. The image is taken from a slightly elevated angle, which provides a good view of the road and its surroundings."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:11.417349+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:11.688358+00:00", "label": "easy", "label_explanation": "The road is dry and there are no visible signs of traffic congestion. Therefore, it is easy for vehicles to travel on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:10.682833+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of damage or distortion."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:11.194645+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:13:32.417159+00:00", "objects": ["image_description", "water_level", "water_in_road", "image_condition", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:13:57.751062+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection with traffic lights and street lights. There are trees and buildings on either side of the road. The road is dry and there is no visible traffic."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:58.324548+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:58.048042+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:57.526252+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:13:58.828266+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:13:58.587555+00:00", "label": "easy", "label_explanation": "The road is dry and there is no visible traffic, so it is easy for vehicles to pass."}]}, {"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-09T06:13:18.166429+00:00", "objects": ["water_level", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_condition", "image_description"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:05:23.108795+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is low_indifferent."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:05:23.323460+00:00", "label": "easy", "label_explanation": "Since there is no water on the road surface, it is easy for vehicles to pass."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:05:22.913707+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:05:23.614669+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, so the road is free for traffic to pass."}, {"object": "image_condition", "timestamp": "2024-02-09T06:05:22.418079+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": "image_description", "timestamp": "2024-02-09T06:05:22.632084+00:00", "label": "null", "label_explanation": "The image shows a night scene of a relatively wide, urban road intersection. The road is surrounded by trees and buildings, and there is a traffic light at the intersection. There are no cars or pedestrians visible in the image."}]}, {"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-09T06:13:15.309690+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-09T06:14:05.861198+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:05.508435+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-09T06:14:05.067108+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 is a tree on the left side of the image, and a building on the right side. The street is made of asphalt, and it is in good condition. There are no visible signs of construction or repair."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:05.306146+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:06.078548+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:04.797175+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or blurring."}]}, {"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-09T06:13:22.194354+00:00", "objects": ["water_level", "traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-09T06:14:07.874646+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:08.089726+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-09T06:14:07.411265+00:00", "label": "null", "label_explanation": "The image is a night view 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 few pedestrians. The road surface is dry, and there is no visible water."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:07.608737+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:08.304135+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:07.185659+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring."}]}, {"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-09T06:13:22.700477+00:00", "objects": ["image_description", "water_level", "traffic_ease_vehicle", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-09T06:14:00.653916+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus lane in the center. There are trees on either side of the road and a few cars parked on the side of the road. The road is wet from the rain, but there is no flooding. There is a street light on the side of the road."}, {"object": "water_level", "timestamp": "2024-02-09T06:14:01.234852+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-09T06:14:01.437662+00:00", "label": "easy", "label_explanation": "The road is dry and clear, so it is easy for vehicles to drive on."}, {"object": "road_blockade", "timestamp": "2024-02-09T06:14:01.636769+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_condition", "timestamp": "2024-02-09T06:14:00.431939+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major distortions or areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:14:00.929337+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"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-09T06:13:21.697378+00:00", "objects": ["road_blockade", "water_level", "traffic_ease_vehicle", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-09T06:13:58.653218+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly. Therefore, the road is free."}, {"object": "water_level", "timestamp": "2024-02-09T06:13:58.118952+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-09T06:13:58.383351+00:00", "label": "easy", "label_explanation": "Since the road is dry and there is no water, traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-09T06:13:57.965970+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-09T06:13:57.680548+00:00", "label": "null", "label_explanation": "This is a night-time image of a relatively wide, urban road with a single yellow taxi driving in the foreground. The road is lit by a single street lamp. There are trees on either side of the road, and buildings in the background. The road is dry, with no visible signs of water."}, {"object": "image_condition", "timestamp": "2024-02-09T06:13:57.469559+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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": null, "snapshot_timestamp": null, "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, "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}, {"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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": []}] \ No newline at end of file +[{"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 From 57e94424ea2de15a7368399747bc0dab7759d9d1 Mon Sep 17 00:00:00 2001 From: d116626 Date: Fri, 9 Feb 2024 22:01:50 -0300 Subject: [PATCH 60/64] feat: add image popup in folium map --- app/Home.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Home.py b/app/Home.py index e0cb4c2..304a4d5 100644 --- a/app/Home.py +++ b/app/Home.py @@ -26,7 +26,7 @@ def fetch_and_update_data(bypass_cash=False): page_size = 3000 only_active = False use_mock_data = False - update_mock_data = True + update_mock_data = False if bypass_cash: return get_cameras( From 26b1b2f29b2f8deebf3231dbbfd5853668b912ff Mon Sep 17 00:00:00 2001 From: d116626 Date: Sat, 10 Feb 2024 15:56:56 -0300 Subject: [PATCH 61/64] feat: asmall fix for new objects and labels --- .gitignore | 2 ++ app/pages/Classificador de Labels.py | 46 +++++++++++++++------------- app/utils/utils.py | 31 +++++++++++-------- pyproject.toml | 4 +-- 4 files changed, 48 insertions(+), 35 deletions(-) diff --git a/.gitignore b/.gitignore index 0aae18e..76c22be 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ # Data files ignore rules are on data/.gitignore +**/**/test.py +test.py # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/app/pages/Classificador de Labels.py b/app/pages/Classificador de Labels.py index e61b2cf..76f8213 100644 --- a/app/pages/Classificador de Labels.py +++ b/app/pages/Classificador de Labels.py @@ -3,18 +3,18 @@ import pandas as pd import streamlit as st -from utils.utils import explode_df, get_objects, get_objetcs_labels_df +from utils.utils import explode_df, get_objects_cache, get_objetcs_labels_df st.set_page_config(layout="wide", initial_sidebar_state="collapsed") # st.image("./data/logo/logo.png", width=300) st.markdown("# Classificador de labels | Vision AI") -objects = pd.DataFrame(get_objects()) +objects = pd.DataFrame(get_objects_cache()) labels = get_objetcs_labels_df(objects) -labels.index = labels["name"] -labels = labels.drop(columns=["name"]) +# labels.index = labels["name"] +# labels = labels.drop(columns=["name"]) # https://docs.google.com/document/d/1PRCjbIJw4_g3-p4gLjYoN0qTaenephyZyOsiOfVGWzM/edit @@ -23,17 +23,17 @@ def get_translation(label): markdown_translation = [ { - "object": "image_condition", - "title": "A imagem está nítida?", - "condition": "Se a resposta for 'Não', pule para a próxima imagem.", # noqa + "object": "image_corrupted", + "title": "A imagem está corrompida?", + "condition": "Se a resposta for 'Sim', pule para a próxima imagem.", # noqa "explanation": "Confira se os detalhes na imagem estão claros e definidos. Uma imagem considerada nítida permite a identificação dos objetos e do cenário.", # noqa "labels": { - "clean": "Sim", - "poor": "Não", + "true": "Sim", + "false": "Não", }, }, { - "object": "water_in_road", + "object": "rain", "title": "Há indício de chuva?", "condition": "Se a resposta for 'Não', associe o rótulo ‘Baixa ou Indiferente’ à opção 3 e pule para 4.", # noqa "explanation": " Inspeção visual para presença de água na pista, que pode variar desde uma leve umidade até condições de alagamento evidente.", # noqa @@ -48,9 +48,9 @@ def get_translation(label): "condition": "Se a resposta for 'Não', pule para a próxima imagem.", # noqa "explanation": "Estime o volume de água presente na pista, categorizando-o como um muito baixa (menos que ¼ da roda de um veículo de passeio), bolsão (entre ¼ e ½ da roda), ou alagamento (mais que ½ da roda).", # noqa "labels": { - "low_indifferent": "Baixa ou Indiferente", - "puddle": "Bolsão d'água", - "flodding": "Alagamento", + "low": "Baixa ou Indiferente", + "medium": "Bolsão d'água", + "high": "Alagamento", }, }, { @@ -60,8 +60,8 @@ def get_translation(label): "explanation": "Avalie se há algum obstáculo na via que impeça a circulação de veículos. O obstáculo pode ser um acúmulo de água, árvore caída, carro enguiçado, entre outros.", # noqa "labels": { "free": "Sem obstáculos", - "partially_blocked": "Via parcialmente bloqueada", - "totally_blocked": "Via bloqueada", + "partially": "Via parcialmente bloqueada", + "totally": "Via bloqueada", }, }, ] @@ -73,11 +73,11 @@ def get_translation(label): snapshots_identifications = [ { - "object": "image_condition", + "object": "image_corrupted", "label": "none", }, { - "object": "water_in_road", + "object": "rain", "label": "none", }, { @@ -110,16 +110,19 @@ def get_translation(label): snapshots_objects["object"].unique().tolist() ) # noqa } -snapshots_objects["question_number"] = snapshots_objects["object"].map(objects_number) +snapshots_objects["question_number"] = snapshots_objects["object"].map( + objects_number +) # noqa def put_selected_label(label, snapshots_options): snapshots_to_put = snapshots_options.to_dict() snapshots_to_put["label"] = label # # TODO: make a put for selected object/label - if (snapshots_to_put.get("object") == "image_condition") and ( - label == "poor" + if (snapshots_to_put.get("object") == "image_corrupted") and ( + label == "true" ): # noqa + print("HEREEE") st.session_state.row_index += 3 print(json.dumps(snapshots_to_put, indent=4), "\n") @@ -175,10 +178,11 @@ def buttom( translate_dict = get_translation(name) snapshot_url = row["snapshot_url"] question_number = row["question_number"] + labels_options = labels[labels["name"] == name] - labels_options = labels.loc[name] choices = labels_options["value"].tolist() choices.sort() + if "true" in choices: choices = ["true", "false"] diff --git a/app/utils/utils.py b/app/utils/utils.py index 7a1d1c8..a7d8bb6 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -7,12 +7,9 @@ import numpy as np import pandas as pd import streamlit as st -from st_aggrid import ( - AgGrid, - ColumnsAutoSizeMode, - GridOptionsBuilder, - GridUpdateMode, -) +from st_aggrid import GridOptionsBuilder # noqa +from st_aggrid import GridUpdateMode # noqa +from st_aggrid import AgGrid, ColumnsAutoSizeMode # noqa from utils.api import APIVisionAI @@ -53,11 +50,11 @@ def callback_data(): return vision_api -vision_api = get_vision_ai_api() -# vision_api = APIVisionAI( -# username=os.environ.get("VISION_API_USERNAME"), -# password=os.environ.get("VISION_API_PASSWORD"), -# ) +# vision_api = get_vision_ai_api() +vision_api = APIVisionAI( + username=os.environ.get("VISION_API_USERNAME"), + password=os.environ.get("VISION_API_PASSWORD"), +) def get_cameras( @@ -260,12 +257,21 @@ def get_icon_color(label: Union[bool, None], type=None): "poor", "true", "flodding", + "high", + "totally", ]: # noqa if type == "emoji": return "🔴" return "red" - elif label in ["minor", "partially_blocked", "difficult", "puddle"]: + elif label in [ + "minor", + "partially_blocked", + "difficult", + "puddle", + "medium", + "partially", + ]: if type == "emoji": return "🟠" return "orange" @@ -277,6 +283,7 @@ def get_icon_color(label: Union[bool, None], type=None): "clean", "false", "low_indifferent", + "low", ]: if type == "emoji": return "🟢" diff --git a/pyproject.toml b/pyproject.toml index 400dadd..939c21e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,12 +23,12 @@ build-backend = "poetry.core.masonry.api" [tool.flake8] -max-line-length = 80 +max-line-length = 100 exclude = [".git", "__pycache__", "dist"] max-complexity = 10 [tool.isort] atomic = true profile = "black" -line_length = 80 +line_length = 100 skip_gitignore = true \ No newline at end of file From d2316e0db8da24571f8442e6e817df396b2a2799 Mon Sep 17 00:00:00 2001 From: d116626 Date: Sat, 10 Feb 2024 16:04:43 -0300 Subject: [PATCH 62/64] feat: small fix for new objects and labels --- app/utils/utils.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/utils/utils.py b/app/utils/utils.py index a7d8bb6..ad22b81 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -50,11 +50,11 @@ def callback_data(): return vision_api -# vision_api = get_vision_ai_api() -vision_api = APIVisionAI( - username=os.environ.get("VISION_API_USERNAME"), - password=os.environ.get("VISION_API_PASSWORD"), -) +vision_api = get_vision_ai_api() +# vision_api = APIVisionAI( +# username=os.environ.get("VISION_API_USERNAME"), +# password=os.environ.get("VISION_API_PASSWORD"), +# ) def get_cameras( From 7277411bf88d8bc3d39329821c6610beb6588fa0 Mon Sep 17 00:00:00 2001 From: d116626 Date: Thu, 15 Feb 2024 19:22:00 -0300 Subject: [PATCH 63/64] chore: refactor for new api endpoints --- app/Home.py | 178 +++++++++++++++++------------------ app/utils/utils.py | 98 ++++++++++--------- data/temp/mock_api_data.json | 2 +- 3 files changed, 137 insertions(+), 141 deletions(-) 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 From c04b4dce6868489d55e80e04caddd9854881b7a1 Mon Sep 17 00:00:00 2001 From: d116626 Date: Thu, 15 Feb 2024 20:10:33 -0300 Subject: [PATCH 64/64] chore: refactor for new api endpoints --- app/utils/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/utils/utils.py b/app/utils/utils.py index 1896fd3..f92fa77 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -224,6 +224,9 @@ def get_objetcs_labels_df(objects, keep_null=False): labels = labels[~labels["value"].isin(["null"])] labels = labels.rename(columns={"label_id": "label"}) labels = labels.reset_index(drop=True) + + mask = (labels["value"] == "null") & (labels["name"] != "image_description") # noqa + labels = labels[~mask] return labels